/* Smisao besmisla — Vintage Diary card */
.card--smisao{
  --card-parchment:#FAF4E8;--card-ocher:#C4933A;--card-rust:#A0522D;--card-cream:#F5EDE0;--card-dark:#2C2418;--card-muddy:#6B7B54;
  background:var(--card-parchment);overflow:hidden;position:relative;
  font-family:'Newsreader',Georgia,serif;color:var(--card-dark);
  border:1px solid rgba(196,147,58,.12);
}
/* Aged top edge */
.card--smisao::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;z-index:2;
  background:linear-gradient(90deg,var(--card-ocher),var(--card-rust),var(--card-ocher));
}

/* Image */
.card--smisao .card__img-wrap{
  position:relative;overflow:hidden;aspect-ratio:4/3;z-index:1;
}
.card--smisao .card__img{
  width:100%;height:100%;object-fit:cover;
  filter:sepia(.15) saturate(.85) brightness(.98);
  transition:transform 1s cubic-bezier(.16,1,.3,1),filter .7s ease;
}
.card--smisao:is(:hover,.pulse) .card__img{
  transform:scale(1.05);filter:sepia(0) saturate(1) brightness(1.02);
}
.card--smisao .card__img-wrap::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(44,36,24,.35) 100%);
  pointer-events:none;
}

/* Badge */
.card--smisao .card__badge{
  position:absolute;bottom:12px;right:12px;z-index:2;
  font-family:'Syne',sans-serif;font-weight:600;
  font-size:10px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--card-dark);
  background:var(--card-ocher);
  padding:4px 12px;border-radius:2px;
}

/* Body */
.card--smisao .card__body{
  position:relative;z-index:1;
  padding:1.2rem 1.4rem 1.6rem;
}
.card--smisao .card__body::before{
  content:'';position:absolute;top:0;left:1.4rem;
  width:24px;height:2px;
  background:var(--card-rust);
  transition:width .5s cubic-bezier(.16,1,.3,1);
}
.card--smisao:is(:hover,.pulse) .card__body::before{width:50px}

.card--smisao .card__year{
  font-family:'Syne',sans-serif;font-weight:600;
  font-size:10px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--card-muddy);display:block;margin-bottom:5px;
}
.card--smisao .card__title{
  font-family:'Newsreader',serif;
  font-size:clamp(16px,1.4vw,21px);line-height:1.25;margin-bottom:8px;
  color:var(--card-dark);font-weight:500;
  transition:color .3s ease;
}
.card--smisao:is(:hover,.pulse) .card__title{color:var(--card-rust)}
.card--smisao .card__desc,
.card--smisao .card__excerpt{
  font-size:clamp(12px,.9vw,13px);line-height:1.65;
  color:rgba(44,36,24,.5);font-weight:300;
}
.card--smisao .card__meta{
  font-size:10px;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(44,36,24,.3);margin-top:10px;
}
