/* ============================================================
   SOULA · v4 additions
   Layered ON TOP of ../homepage-v3.css — only NEW components live
   here. Everything else (nav, hero, sections, faq, footer, blog
   cards, founder, stat-band) is reused from v3.
   ============================================================ */

/* ---------- v4 hero: longer SEO headline needs a calmer size,
   and the CTA must land inside the first viewport ---------- */
.hero{ padding: 36px 0 88px; }
.hero-headline{
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
}
.hero-sub{ max-width: 560px; }

/* ---------- Soula Stories: horizontal video carousel ---------- */
.video-grid.stories-carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 24vw, 340px);
  grid-template-columns: none;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.stories-carousel .video-card{
  scroll-snap-align: start;
  min-height: 360px;
}
.stories-carousel .v-initial{
  font-size: 30px;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  padding-left: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  color: #fff;
}

/* ---------- mobile nav: v3 hides links (single-page era); v4 is
   multi-page, so a burger toggles them as a dropdown panel ---------- */
.nav-burger{ display: none; }
@media (max-width: 760px){
  .nav-inner{ flex-wrap: wrap; }
  .nav-burger{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    margin: -6px -10px -6px -4px; /* keeps the header row at its one-row height */
    padding: 0 10px;
    background: none; border: 0; cursor: pointer;
  }
  .nav-burger span{
    display: block; height: 2px; width: 100%;
    background: var(--ink-1, #0f0f0f);
    border-radius: 2px;
    transition: transform .2s var(--ease);
  }
  .nav.menu-open .nav-burger span:nth-child(1){ transform: translateY(3.5px) rotate(45deg); }
  .nav.menu-open .nav-burger span:nth-child(2){ transform: translateY(-3.5px) rotate(-45deg); }
  .nav .nav-links{
    display: none;
    order: 6;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 10px 0 6px;
  }
  .nav.menu-open .nav-links{ display: flex; }
  .nav .nav-links a{ padding: 12px 14px; font-size: 16px; }
  .nav.menu-open{
    background: rgba(239, 237, 233, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--hair);
  }
}

/* ---------- sticky CTA: keep it a single compact pill on phones ---------- */
.sticky-cta{ white-space: nowrap; }
@media (max-width: 520px){
  .sticky-cta > span:nth-child(2){ display: none; }
}

/* ---------- generic sub-page hero ---------- */
.page-hero{
  padding: 150px 0 64px;
  text-align: center;
}
.page-hero .eyebrow{ justify-content: center; }
.page-hero h1{
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 400; /* matches the DS display style — never bold displays */
  margin: 18px auto 0;
  max-width: 880px;
}
.page-hero h1 em{ color: var(--pink-1, #FF2E6E); font-style: normal; }
.page-hero .lead{ margin: 22px auto 0; max-width: 640px; }
.page-hero .hero-cta-row{ justify-content: center; margin-top: 32px; }

/* ---------- .all-link works outside the blog teaser head too ---------- */
.all-link{
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink-1, #1C171C); color: #fff;
  font-size: 13px; font-weight: 500;
  text-decoration: none;
}

/* ---------- balanced line breaks on big display headings ---------- */
.h-display, .page-hero h1, .hero-headline{ text-wrap: balance; }

/* ---------- pills cloud (Soula Stories — real requests) ---------- */
.pills-cloud{
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  max-width: 880px; margin: 0 auto 48px;
}
.pill-link{
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  border: 1px solid rgba(28,23,28,.16);
  border-radius: 999px;
  font-size: 14.5px; font-weight: 520;
  color: var(--ink-1, #1C171C);
  text-decoration: none;
  background: #fff;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}
a.pill-link:hover{
  border-color: var(--pink-1, #FF2E6E);
  color: var(--pink-1, #FF2E6E);
  background: rgba(255,46,110,.05);
  transform: translateY(-1px);
}
/* static chips (span) — same shape, visibly not a link */
span.pill-link{
  background: rgba(28,23,28,.04);
  border-color: transparent;
  color: rgba(28,23,28,.7);
}

/* ---------- adaptive archetypes (dark section) ---------- */
.arch-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 56px;
}
@media (max-width: 1080px){ .arch-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .arch-grid{ grid-template-columns: 1fr; } }
.arch-card{
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.arch-num{
  font-size: 12px; letter-spacing: .14em; font-weight: 600;
  color: rgba(255,255,255,.45);
}
.arch-card h4{
  font-size: 21px; font-weight: 620; letter-spacing: -.02em;
  color: #fff; margin: 0;
}
.arch-card h4 em{ color: var(--pink-1, #FF2E6E); font-style: normal; }
.arch-sub{
  font-size: 13px; font-weight: 540;
  color: rgba(255,255,255,.55);
}
.arch-for{
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,.72);
}
.arch-quote{
  font-size: 14.5px; line-height: 1.5; font-weight: 500;
  color: #fff;
  border-left: 2px solid var(--pink-1, #FF2E6E);
  padding-left: 14px;
}
.arch-traits{
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto;
}
.arch-traits span{
  font-size: 12px; font-weight: 560; letter-spacing: .02em;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
}

/* ---------- "Not built for you. Soula does." contrast list ---------- */
.does-list{
  max-width: 820px; margin: 48px auto 0;
  display: flex; flex-direction: column;
}
.does-cols{
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 32px;
  padding: 0 4px 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(28,23,28,.4);
  border-bottom: 1px solid rgba(28,23,28,.12);
}
.does-cols .pink{ color: var(--pink-1, #FF2E6E); }
.does-item{
  display: grid; grid-template-columns: 1.15fr 1fr;
  align-items: start; gap: 32px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(28,23,28,.08);
}
.does-item:last-child{ border-bottom: none; }
.does-they{
  font-size: clamp(16px, 2vw, 19px); line-height: 1.45;
  color: rgba(28,23,28,.52); font-weight: 500;
}
.does-so{
  font-size: clamp(16px, 2vw, 19px); line-height: 1.45; font-weight: 650;
  color: var(--pink-1, #FF2E6E);
}
@media (max-width: 620px){
  .does-cols{ display: none; }
  .does-item{ display: block; }
  .does-so{ margin-top: 8px; }
}
.does-final{
  text-align: center; margin-top: 48px;
}
.does-final .big{
  font-size: clamp(26px, 3.6vw, 40px); font-weight: 640;
  letter-spacing: -.03em; line-height: 1.15;
}
.does-final .big em{ color: var(--pink-1, #FF2E6E); font-style: normal; }

/* ---------- With Soula You Can — three modes ---------- */
.modes-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 56px;
}
@media (max-width: 980px){ .modes-grid{ grid-template-columns: 1fr; } }
.mode-card{
  border-radius: 28px; padding: 34px 30px;
  background: #fff; border: 1px solid rgba(28,23,28,.08);
  display: flex; flex-direction: column; gap: 16px;
}
.mode-card.tinted{ background: var(--pink-0, #FFF0F4); border-color: rgba(255,46,110,.18); }
.mode-name{
  font-size: 13px; font-weight: 680; letter-spacing: .16em;
  color: var(--pink-1, #FF2E6E);
}
.mode-card h3{
  font-size: 26px; font-weight: 630; letter-spacing: -.025em;
  line-height: 1.15; margin: 0;
}
.mode-when{ font-size: 15px; color: rgba(28,23,28,.6); line-height: 1.5; }
.mode-bullets{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.mode-bullets li{
  font-size: 14.5px; line-height: 1.45; padding-left: 20px; position: relative;
  color: var(--ink-1, #1C171C);
}
.mode-bullets li::before{
  content: ""; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink-1, #FF2E6E);
}
.mode-phrases{
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 6px;
}
.mode-phrases span{
  font-size: 12.5px; font-weight: 540;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(28,23,28,.05); color: rgba(28,23,28,.7);
}

/* ---------- stat / number cards (B2B cost of inaction, impact) ---------- */
.cost-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 56px;
}
@media (max-width: 980px){ .cost-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px){ .cost-grid{ grid-template-columns: 1fr; } }
.cost-card{
  border-radius: 24px; padding: 30px 26px;
  background: #fff; border: 1px solid rgba(28,23,28,.08);
}
.section-ink .cost-card{
  background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.09);
}
.cost-num{
  font-size: clamp(36px, 4.5vw, 52px); font-weight: 650; letter-spacing: -.04em;
  color: var(--pink-1, #FF2E6E); line-height: 1;
}
.cost-lbl{ font-size: 15px; line-height: 1.45; margin-top: 12px; }
.section-ink .cost-lbl{ color: rgba(255,255,255,.8); }
.cost-src{
  font-size: 12px; letter-spacing: .04em; margin-top: 12px;
  color: rgba(28,23,28,.42); font-weight: 540;
}
.section-ink .cost-src{ color: rgba(255,255,255,.4); }

/* 4-up variant (badges, metric strips) — collapses on smaller screens */
.cost-grid.cols-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ .cost-grid.cols-4{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px){ .cost-grid.cols-4{ grid-template-columns: 1fr; } }

/* ---------- numbered steps (B2B: live in a week) ---------- */
.steps-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 56px;
}
@media (max-width: 980px){ .steps-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px){ .steps-grid{ grid-template-columns: 1fr; } }
.step-card{
  border-radius: 24px; padding: 28px 24px;
  background: #fff; border: 1px solid rgba(28,23,28,.08);
  color: var(--ink-1, #1C171C); /* white card may sit on a dark section — force dark text */
}
.step-card h4{ color: var(--ink-1, #1C171C); }
.step-num{
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-1, #FF2E6E); color: #fff;
  font-size: 16px; font-weight: 650; margin-bottom: 18px;
}
.step-card h4{ font-size: 18px; font-weight: 620; letter-spacing: -.015em; margin: 0 0 8px; }
.step-card p{ font-size: 14.5px; line-height: 1.5; color: rgba(28,23,28,.62); margin: 0; }

/* ---------- case / quote panel (B2B client results) ---------- */
.case-panel{
  border-radius: 32px; padding: 56px 52px;
  background: var(--ink-1, #1C171C); color: #fff;
  display: grid; grid-template-columns: 1.4fr .8fr; gap: 48px;
  margin-top: 56px; align-items: center;
}
@media (max-width: 880px){ .case-panel{ grid-template-columns: 1fr; padding: 40px 30px; } }
.case-quote{
  font-size: clamp(21px, 2.6vw, 28px); line-height: 1.35;
  font-weight: 540; letter-spacing: -.02em;
}
.case-quote em{ color: var(--pink-1, #FF2E6E); font-style: normal; }
.case-attr{ margin-top: 24px; font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.5; }
.case-attr strong{ color: #fff; font-weight: 600; display: block; }
.case-metric{ text-align: center; }
.case-metric .num{
  font-size: clamp(56px, 7vw, 84px); font-weight: 660; letter-spacing: -.05em;
  color: var(--pink-1, #FF2E6E); line-height: 1;
}
.case-metric .lbl{ font-size: 15px; color: rgba(255,255,255,.7); margin-top: 12px; line-height: 1.45; }

/* ---------- impact ripple (woman → family → society) ---------- */
.ripple-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 56px;
}
@media (max-width: 980px){ .ripple-grid{ grid-template-columns: 1fr; } }
.ripple-card{
  border-radius: 28px; padding: 34px 30px;
  background: #fff; border: 1px solid rgba(28,23,28,.08);
  display: flex; flex-direction: column; gap: 14px;
}
.ripple-step{
  font-size: 12px; font-weight: 650; letter-spacing: .14em;
  color: rgba(28,23,28,.4);
}
.ripple-card h3{ font-size: 23px; font-weight: 630; letter-spacing: -.02em; margin: 0; line-height: 1.2; }
.ripple-card h3 em{ color: var(--pink-1, #FF2E6E); font-style: normal; }
.ripple-card p{ font-size: 15px; line-height: 1.55; color: rgba(28,23,28,.62); margin: 0; }
.ripple-metric{
  margin-top: auto; padding-top: 10px;
  font-size: 14px; font-weight: 620; color: var(--pink-1, #FF2E6E);
}

/* ---------- founder timeline (our story) ---------- */
.timeline{
  max-width: 720px; margin: 56px auto 0;
  border-left: 2px solid rgba(255,46,110,.25);
  padding-left: 36px;
  display: flex; flex-direction: column; gap: 36px;
  position: relative;
}
.tl-row{ position: relative; }
.tl-row::before{
  content: ""; position: absolute; left: -43px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--pink-1, #FF2E6E);
  box-shadow: 0 0 0 5px rgba(255,46,110,.14);
}
.tl-year{
  font-size: 13px; font-weight: 680; letter-spacing: .12em;
  color: var(--pink-1, #FF2E6E); margin-bottom: 6px;
}
.tl-text{ font-size: 17px; line-height: 1.5; }
.tl-text strong{ font-weight: 640; }

/* ---------- library category cards ---------- */
.libcat-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 56px;
}
@media (max-width: 980px){ .libcat-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px){ .libcat-grid{ grid-template-columns: 1fr; } }
.libcat-card{
  border-radius: 28px; padding: 32px 28px;
  background: #fff; border: 1px solid rgba(28,23,28,.08);
  text-decoration: none; color: var(--ink-1, #1C171C);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.libcat-card:hover{
  border-color: var(--pink-1, #FF2E6E);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(255,46,110,.35);
}
.libcat-eyebrow{ font-size: 12px; font-weight: 650; letter-spacing: .14em; color: var(--pink-1, #FF2E6E); }
.libcat-card h3{ font-size: 23px; font-weight: 630; letter-spacing: -.02em; line-height: 1.15; margin: 0; }
.libcat-card p{ font-size: 14.5px; line-height: 1.5; color: rgba(28,23,28,.6); margin: 0; }
.libcat-topics{ display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 8px; }
.libcat-topics span{
  font-size: 12px; font-weight: 540; padding: 5px 11px; border-radius: 999px;
  background: rgba(28,23,28,.05); color: rgba(28,23,28,.65);
}

/* ---------- AEO answer block (article / category pages) ---------- */
.answer-first{
  max-width: 720px; margin: 0 auto 56px;
  border-radius: 24px; padding: 28px 30px;
  background: var(--pink-0, #FFF0F4);
  border: 1px solid rgba(255,46,110,.16);
  font-size: 17px; line-height: 1.6;
}
.answer-first strong{ font-weight: 650; }

/* ---------- roadmap pills (B2B HR roadmap) ---------- */
.roadmap-row{
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 48px;
}
.roadmap-pill{
  border-radius: 18px; padding: 18px 24px;
  background: #fff; border: 1px solid rgba(28,23,28,.1);
  font-size: 15px;
}
.roadmap-pill strong{ display: block; font-weight: 640; margin-bottom: 3px; }
.roadmap-pill span{ font-size: 13.5px; color: rgba(28,23,28,.55); }

/* ---------- privacy band (Flo-style: privacy as a feature) ---------- */
.privacy-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 48px;
}
@media (max-width: 900px){ .privacy-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .privacy-grid{ grid-template-columns: 1fr; } }
.privacy-card{
  border-radius: 24px; padding: 28px 24px;
  background: #fff; border: 1px solid rgba(28,23,28,.08);
  display: flex; flex-direction: column; gap: 12px;
}
.privacy-ico{
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,46,110,.08); color: var(--pink-1, #FF2E6E);
}
.privacy-card h4{ font-size: 17px; font-weight: 620; letter-spacing: -.015em; margin: 0; }
.privacy-card p{ font-size: 14px; line-height: 1.5; color: rgba(28,23,28,.6); margin: 0; }
.privacy-badges{
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 36px;
}
.privacy-badge{
  font-size: 12.5px; font-weight: 620; letter-spacing: .06em;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(28,23,28,.05); color: rgba(28,23,28,.7);
}

/* ---------- science page: advisors + studies ---------- */
.advisor-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 56px;
}
@media (max-width: 900px){ .advisor-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .advisor-grid{ grid-template-columns: 1fr; } }
.advisor-card{
  border-radius: 24px; padding: 28px 24px;
  background: #fff; border: 1px solid rgba(28,23,28,.08);
  display: flex; flex-direction: column; gap: 6px;
  color: var(--ink-1, #1C171C); /* white card lives on a dark section — force dark text */
}
.advisor-photo{
  width: 56px; height: 56px; border-radius: 50%; margin-bottom: 10px;
  background: linear-gradient(150deg, #FFE6EC 0%, #FFC2D4 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 600; color: var(--pink-1, #FF2E6E);
}
.advisor-name{ font-size: 17px; font-weight: 640; letter-spacing: -.015em; color: var(--ink-1, #1C171C); }
.advisor-role{ font-size: 13.5px; color: var(--pink-1, #FF2E6E); font-weight: 540; }
.advisor-bio{ font-size: 13.5px; line-height: 1.5; color: rgba(28,23,28,.6); margin-top: 4px; }

.study-list{ max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 14px; }
.study-row{
  border-radius: 18px; padding: 22px 24px;
  background: #fff; border: 1px solid rgba(28,23,28,.08);
}
.study-row .study-tag{
  font-size: 11.5px; font-weight: 650; letter-spacing: .12em;
  color: var(--pink-1, #FF2E6E);
}
.study-row h4{ font-size: 17px; font-weight: 600; letter-spacing: -.015em; margin: 6px 0 0; line-height: 1.35; }
.study-row p{ font-size: 13.5px; color: rgba(28,23,28,.55); margin: 6px 0 0; }

/* ---------- crisis protocol (visible safety steps) ---------- */
.protocol{
  max-width: 720px; margin: 48px auto 0;
  counter-reset: protostep;
  display: flex; flex-direction: column; gap: 14px;
}
.protocol-step{
  display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start;
  border-radius: 20px; padding: 22px 24px;
  background: #fff; border: 1px solid rgba(28,23,28,.08);
}
.protocol-step::before{
  counter-increment: protostep; content: counter(protostep);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-1, #FF2E6E); color: #fff;
  font-size: 17px; font-weight: 650;
}
.protocol-step h4{ font-size: 17px; font-weight: 620; letter-spacing: -.015em; margin: 8px 0 6px; }
.protocol-step p{ font-size: 14.5px; line-height: 1.5; color: rgba(28,23,28,.62); margin: 0; }

/* ---------- generic two-col CTA strip ---------- */
.cta-strip{
  border-radius: 32px; margin-top: 72px;
  background: var(--pink-0, #FFF0F4); border: 1px solid rgba(255,46,110,.16);
  padding: 48px 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
@media (max-width: 780px){ .cta-strip{ flex-direction: column; text-align: center; padding: 36px 28px; } }
.cta-strip h3{ font-size: clamp(22px, 3vw, 30px); font-weight: 630; letter-spacing: -.025em; margin: 0 0 6px; }
.cta-strip h3 em{ color: var(--pink-1, #FF2E6E); font-style: normal; }
.cta-strip p{ font-size: 15px; color: rgba(28,23,28,.6); margin: 0; }

/* --- UX-аудит 2026-07: общие фиксы --- */
/* якоря не прячутся под фиксированной шапкой (нужно и там, где нет home.css) */
section[id]{ scroll-margin-top: 88px; }
/* видимый фокус для навигации с клавиатуры */
a:focus-visible, button:focus-visible{ outline: 2px solid var(--pink-1, #FF2E6E); outline-offset: 3px; }
/* реальное фото в блоке founder-photo */
.founder-photo img{ width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
/* нижняя строка футера: ссылки Terms/Privacy/Crisis (класс вместо инлайн-стиля) */
.foot-links{ display: flex; gap: 24px; }

/* карточки статей, которые ещё не написаны */
.blog-card--soon{ cursor: default; }
.blog-card--soon:hover{ transform: none; box-shadow: none; }
.blog-card--soon .blog-cover{ position: relative; }
.soon-badge{ position: absolute; top: 12px; left: 12px; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: rgba(255,255,255,.9); color: var(--ink-2, #2A2A2A); border-radius: 999px; padding: 4px 10px; }
