/* Card — Doba nežnosti i borbe */
.card--doba-neznosti {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: #F5F0EA;
}

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

.card--doba-neznosti .card__img {
  display: block;
  width: 100%;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), filter .8s ease;
  filter: saturate(.8) brightness(1.02);
}

.card--doba-neznosti:hover .card__img {
  transform: scale(1.03);
  filter: saturate(.9) brightness(1);
}

.card--doba-neznosti .card__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: 'Martian Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(154, 143, 159, .75);
  color: #fff;
  padding: 5px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.card--doba-neznosti .card__body {
  padding: 18px 16px 22px;
  position: relative;
}

.card--doba-neznosti .card__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  width: 24px;
  height: 2px;
  background: #9A8F9F;
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
}

.card--doba-neznosti:hover .card__body::before {
  width: 45px;
}

.card--doba-neznosti .card__year {
  display: block;
  font-family: 'Martian Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  color: #B5AFA8;
  margin-bottom: 6px;
  margin-top: 4px;
}

.card--doba-neznosti .card__title {
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 1.3;
  color: #3A3430;
  margin-bottom: 8px;
}

.card--doba-neznosti .card__desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: #52504B;
}
