/* Card — Zimsko moderno venčanje */
.card--zimsko-moderno {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #1A1612;
}

.card--zimsko-moderno .card__img-wrap {
  position: relative;
  overflow: hidden; aspect-ratio:4/3;
}

.card--zimsko-moderno .card__img {
  display: block;
  width: 100%;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .7s ease;
  filter: brightness(.9) contrast(1.05);
}

.card--zimsko-moderno:hover .card__img {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.1);
}

.card--zimsko-moderno .card__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: 'Chivo Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255, 60, 160, .8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 12px rgba(255, 60, 160, .3);
}

.card--zimsko-moderno .card__body {
  padding: 18px 16px 22px;
  position: relative;
}

.card--zimsko-moderno .card__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #FF3CA0, #7CFF5C);
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 0 8px rgba(255, 60, 160, .3);
}

.card--zimsko-moderno:hover .card__body::before {
  width: 55px;
  box-shadow: 0 0 14px rgba(124, 255, 92, .4);
}

.card--zimsko-moderno .card__year {
  display: block;
  font-family: 'Chivo Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: #7CFF5C;
  margin-bottom: 6px;
  margin-top: 4px;
}

.card--zimsko-moderno .card__title {
  font-family: 'Bangers', cursive;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.3;
  color: #F5F0E8;
  letter-spacing: .03em;
  margin-bottom: 8px;
}

.card--zimsko-moderno .card__desc {
  font-family: 'Public Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(245, 240, 232, .65);
}
