/* ============================================================
   wildio / wildioin.com — ROSE_NEWSROOM × QUIET_MODERN × RULED
   ============================================================ */

:root {
  /* Surface */
  --paper:        #fbf6ee;     /* warm ivory base */
  --paper-edge:   #f4ece0;     /* margin tint */
  --paper-deep:   #f1e7d6;     /* band tint */
  --rule:         #d8cdb5;     /* hairline rule */
  --rule-soft:    #ecdfc7;     /* weaker rule */

  /* Ink */
  --ink:          #1c1a17;     /* near-black ink */
  --ink-2:        #3a342c;     /* secondary ink */
  --ink-3:        #6b6353;     /* tertiary ink / byline */
  --ink-4:        #968c7a;     /* meta */

  /* Accent — single muted rose */
  --rose:         #a8324b;     /* primary accent */
  --rose-deep:    #7c2438;     /* hover */
  --rose-soft:    #e6c8d0;     /* fill */

  /* Misc */
  --link:         #7c2438;
  --link-hover:   #1c1a17;

  /* Type */
  --serif: 'Spectral', 'Georgia', 'Times New Roman', serif;
  --sans:  'Inter Tight', 'Inter', system-ui, sans-serif;

  /* Grid */
  --container:    1240px;
  --gutter:       32px;
  --column-gap:   28px;

  /* Time */
  --t:            140ms ease;
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule-soft); transition: color var(--t), border-color var(--t); }
a:hover { color: var(--rose); border-bottom-color: var(--rose); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { padding-left: 1.2em; margin: 0 0 1em 0; }
li { margin: 0.2em 0; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 28px 0; }

/* ----- Typography ----- */
.serif       { font-family: var(--serif); }
.eyebrow     { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.byline      { font-family: var(--sans); font-size: 13px; color: var(--ink-3); letter-spacing: 0.04em; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--ink); line-height: 1.15; letter-spacing: -0.005em; margin: 0 0 0.5em 0; }
h1 { font-size: clamp(34px, 5.4vw, 64px); line-height: 1.06; letter-spacing: -0.018em; }
h2 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.14; }
h3 { font-size: clamp(20px, 2.1vw, 24px); }
h4 { font-size: 18px; }
p  { margin: 0 0 1.1em 0; }
p + h2, p + h3 { margin-top: 1.6em; }
strong, b { color: var(--ink); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 8px; padding: 8px 14px; background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-size: 13px; border-radius: 4px; z-index: 1000;
}
.skip-link:focus { left: 12px; outline: 2px solid var(--rose); }

/* ============================================================
   HEADER & MEGA-MENU
   ============================================================ */

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding-top: 18px;
}
.masthead {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.brand {
  display: flex; align-items: baseline; gap: 10px; border-bottom: 0;
}
.brand:visited { color: inherit; }
.brand-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-tag {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.masthead-date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
  border-left: 1px solid var(--rule);
  padding-left: 24px;
  text-align: center;
}
.masthead-right {
  display: flex; align-items: center; gap: 16px;
}
.search-trigger, .hamburger {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em;
  color: var(--ink-2); padding: 8px 4px; border-bottom: 1px solid transparent;
}
.search-trigger:hover { color: var(--rose); }
.hamburger {
  border: 0;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2);
  display: none; /* shown on mobile */
  padding: 8px 0;
}
.hamburger:hover { color: var(--rose); }

/* The rule — dropdown panel */
.main-nav {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.main-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
}
.nav-item {
  position: relative;
  border-right: 1px solid var(--rule-soft);
  padding: 0;
}
.nav-item:last-child { border-right: 0; }
.nav-link {
  display: block;
  padding: 14px 8px;
  font-family: var(--sans);
  font-size: clamp(11.5px, 0.9vw + 7px, 14px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  border: 0;
  text-align: left;
  white-space: nowrap;
}
@media (min-width: 1180px) {
  .nav-link { padding: 14px 12px; font-size: 14px; letter-spacing: 0.02em; }
}
.nav-link[aria-current="page"] { color: var(--rose); }
.nav-link:hover, .nav-link:focus-visible {
  background: var(--paper-edge);
  color: var(--rose);
}
.nav-item.is-active .nav-link { color: var(--rose); }

/* Mega dropdown */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  border-top: 0;
  padding: 22px 28px 28px;
  display: none;
  z-index: 5;
  min-width: 540px;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega { display: block; }
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 200px;
  gap: 26px;
}
.mega h4 {
  font-family: var(--sans); font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--ink-3); margin: 0 0 8px;
}
.mega ul { list-style: none; padding: 0; margin: 0 0 14px; }
.mega li { margin: 0; padding: 0; }
.mega a {
  display: block;
  padding: 4px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-2);
  border: 0;
}
.mega a:hover { color: var(--rose); }
.mega-feature {
  border-left: 1px solid var(--rule-soft);
  padding-left: 18px;
  font-family: var(--serif);
  font-size: 16px; line-height: 1.5;
  color: var(--ink-2);
}
.mega-feature b { color: var(--ink); }
.mega-feature a { color: var(--rose); border-bottom: 1px solid var(--rose-soft); }

/* ----- Drawer (mobile) ----- */
.mobile-drawer {
  position: fixed; top: 0; left: 0; right: 0; height: 100dvh;
  background: var(--paper);
  border: 0;
  z-index: 250;
  padding: 84px 0 24px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 240ms ease;
  visibility: hidden;
  display: block;
}
.mobile-drawer[data-open="true"] {
  transform: translateY(0);
  visibility: visible;
}
.drawer-close {
  position: absolute; top: 22px; right: 22px;
  width: 40px; height: 40px;
  font-family: var(--sans); font-size: 22px; color: var(--ink); border: 1px solid var(--rule);
  border-radius: 0; background: var(--paper);
}
.mobile-drawer nav { padding: 0 24px; }
.drawer-cluster {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.drawer-cluster h5 {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3); margin: 0 0 8px;
}
.drawer-cluster ul { list-style: none; padding: 0; margin: 0; }
.drawer-cluster li { margin: 0; padding: 6px 0; }
.drawer-cluster a {
  display: block; padding: 6px 0;
  font-family: var(--serif); font-size: 18px; color: var(--ink); border: 0;
}
.drawer-cta {
  margin: 24px 24px 0; padding: 14px 18px;
  background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  text-align: center; letter-spacing: 0.04em; text-transform: uppercase;
}
.drawer-cta a { color: var(--paper); border: 0; }
body[data-drawer="open"] { overflow: hidden; }

/* ============================================================
   PAGE CONTAINER / SHELL
   ============================================================ */
.page {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Ruled horizontal divider between hero/quick actions */
.rule-thin  { border-top: 1px solid var(--rule); }
.rule-thick { border-top: 3px solid var(--ink); }

/* ============================================================
   HOMEPAGE — sidebar-led cover (Section 1)
   ============================================================ */
.cover {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  padding: 56px 24px 36px;
  border-bottom: 1px solid var(--rule);
}
.cover-index {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-3);
  border-top: 3px solid var(--ink);
  padding-top: 14px;
}
.cover-index h2 {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3);
  margin: 0 0 14px;
}
.cover-index ol {
  list-style: none; padding: 0; margin: 0; counter-reset: coveri;
}
.cover-index li {
  counter-increment: coveri;
  position: relative; padding: 8px 0 8px 32px;
  font-family: var(--serif); font-size: 16px;
  border-bottom: 1px dashed var(--rule);
}
.cover-index li::before {
  content: counter(coveri, decimal-leading-zero);
  position: absolute; left: 0; top: 8px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.04em;
  color: var(--ink-3); font-weight: 700;
}
.cover-index li:last-child { border-bottom: 0; }

.cover-main { min-width: 0; }
.cover-meta {
  display: flex; gap: 14px; align-items: baseline;
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.cover-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose); display: inline-block; }
.cover-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 16px 0 18px;
  max-width: 18ch;
}
.cover-lede {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 24px;
}
.cover-byline {
  display: flex; gap: 22px; align-items: center;
  font-family: var(--sans); font-size: 13px;
  color: var(--ink-3); letter-spacing: 0.04em;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.cover-byline b { color: var(--ink); font-weight: 600; }
.cover-byline .pages { margin-left: auto; font-family: var(--serif); font-style: italic; }

/* ============================================================
   QUICK ACTIONS strip (Section 2)
   ============================================================ */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--rule);
}
.quick-action {
  padding: 22px 22px 24px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.quick-action:last-child { border-right: 0; }
.quick-action .num {
  font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--rose);
}
.quick-action .lbl {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
}
.quick-action .tt {
  font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--rose-soft); padding-bottom: 8px;
}
.quick-action .tt:visited { color: var(--ink); }
.quick-action .tt:hover { color: var(--rose); border-bottom-color: var(--rose); }
.quick-action p {
  font-family: var(--sans); font-size: 14px; color: var(--ink-2); margin: 0;
  line-height: 1.5;
}

/* ============================================================
   DEEP-DIVE CHAPTER (Section 3)
   ============================================================ */
.chapter {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 240px;
  gap: 36px;
  padding: 64px 24px;
  border-bottom: 1px solid var(--rule);
}
.chapter-aside {
  font-family: var(--sans); font-size: 13px; color: var(--ink-3);
  border-top: 3px solid var(--ink); padding-top: 12px;
}
.chapter-aside h3 {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 12px;
}
.chapter-aside ul { list-style: none; padding: 0; margin: 0 0 18px; }
.chapter-aside li { margin: 0; padding: 6px 0; border-bottom: 1px dashed var(--rule); font-family: var(--serif); font-size: 14px; color: var(--ink-2); }
.chapter-aside li:last-child { border-bottom: 0; }
.chapter-aside .rule-line { border-top: 1px solid var(--rule); padding-top: 14px; }

.chapter-body { min-width: 0; max-width: 70ch; }
.chapter-body h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-top: 0;
}
.chapter-body p { font-family: var(--serif); font-size: 18px; line-height: 1.6; color: var(--ink-2); margin: 0 0 1.1em 0; }
.chapter-body p.drop-cap::first-letter {
  font-family: var(--serif); font-size: 64px; float: left; line-height: 0.9;
  padding: 8px 10px 0 0; color: var(--rose); font-weight: 700;
}
.chapter-body blockquote {
  border-left: 3px solid var(--rose);
  margin: 24px 0;
  padding: 8px 0 8px 18px;
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--ink);
}

.chapter-rail {
  border-left: 1px solid var(--rule);
  padding-left: 22px;
  font-family: var(--sans); font-size: 14px; color: var(--ink-2);
}
.chapter-rail h4 {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
  margin: 0 0 10px;
}
.chapter-rail dl { margin: 0 0 18px; }
.chapter-rail dt { font-weight: 600; color: var(--ink); margin-top: 12px; font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em; }
.chapter-rail dt:first-child { margin-top: 0; }
.chapter-rail dd { margin: 4px 0 0 0; font-family: var(--serif); font-size: 15px; color: var(--ink-2); line-height: 1.5; }

/* ============================================================
   ANNOTATED LEDGER (Section 4)
   ============================================================ */
.ledger {
  padding: 0 24px 64px;
  border-bottom: 1px solid var(--rule);
}
.ledger-head { padding: 36px 0 18px; }
.ledger-head h2 { margin: 0; max-width: 24ch; }
.ledger-head p { font-family: var(--serif); font-size: 18px; color: var(--ink-2); max-width: 60ch; margin: 8px 0 0; }

.ledger-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 24px 0;
}
.ledger-photo {
  position: relative;
  border: 1px solid var(--ink);
}
.ledger-photo img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 16/10; object-fit: cover;
}
.ledger-photo .pin {
  position: absolute; font-family: var(--sans); font-size: 12px; color: var(--paper);
  background: var(--rose); width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--paper);
  font-weight: 700;
}
.ledger-photo .pin-1 { top: 18%; left: 26%; }
.ledger-photo .pin-2 { top: 38%; left: 60%; }
.ledger-photo .pin-3 { top: 62%; left: 44%; }
.ledger-photo .pin-4 { top: 76%; left: 22%; }
.ledger-photo figcaption {
  font-family: var(--sans); font-size: 13px; color: var(--ink-3); letter-spacing: 0.04em;
  padding: 12px 14px; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
}

.ledger-notes {
  border-top: 3px solid var(--ink);
  padding-top: 14px;
}
.ledger-notes h3 {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
  margin: 0 0 12px;
}
.ledger-notes ol { list-style: none; counter-reset: ln; padding: 0; margin: 0; }
.ledger-notes li {
  counter-increment: ln;
  position: relative; padding: 14px 0 14px 38px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif); font-size: 15px; line-height: 1.55; color: var(--ink-2);
}
.ledger-notes li:last-child { border-bottom: 0; }
.ledger-notes li::before {
  content: counter(ln, decimal-leading-zero);
  position: absolute; left: 0; top: 14px;
  font-family: var(--sans); font-size: 12px; color: var(--rose); font-weight: 700; letter-spacing: 0.04em;
}
.ledger-notes li b { color: var(--ink); }

/* ============================================================
   DATA POSTER (Section 5)
   ============================================================ */
.poster {
  padding: 56px 24px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-edge);
}
.poster-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ink);
}
.poster-head h2 { margin: 0; max-width: 22ch; }
.poster-head p { font-family: var(--serif); font-size: 18px; color: var(--ink-2); margin: 0; max-width: 50ch; }
.poster-table {
  width: 100%; border-collapse: collapse; margin-top: 0;
  background: var(--paper);
  font-family: var(--sans);
  table-layout: fixed;
}
.poster-table th, .poster-table td {
  padding: 14px 12px; text-align: left;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  vertical-align: top;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.poster-table thead th {
  background: var(--paper);
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
  border-bottom: 3px double var(--ink);
}
.poster-table tbody td:first-child {
  font-family: var(--serif); font-weight: 600; color: var(--ink);
  width: 32%;
}
.poster-table tbody td.num {
  font-family: var(--serif); font-feature-settings: "tnum"; text-align: right;
  color: var(--ink-2);
}
.poster-table tbody td.rose { color: var(--rose); font-weight: 700; }
.poster-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px;
  font-family: var(--sans); font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em;
}
.poster-foot .src { font-style: italic; }

/* ============================================================
   COMMUNITY QUESTIONS (Section 6)
   ============================================================ */
.questions {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 36px;
  padding: 56px 24px;
  border-bottom: 1px solid var(--rule);
}
.questions-aside {
  font-family: var(--sans); font-size: 13px; color: var(--ink-3);
  border-top: 3px solid var(--ink); padding-top: 14px;
}
.questions-aside h3 {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
  margin: 0 0 12px;
}
.questions-aside p { font-family: var(--serif); font-size: 16px; line-height: 1.55; color: var(--ink-2); }
.questions-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.question {
  padding: 28px 28px 32px;
  border-right: 1px solid var(--rule);
}
.question:last-child { border-right: 0; }
.question .q-num {
  font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--rose);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--rose-soft); padding-bottom: 8px; margin-bottom: 14px;
  display: block;
}
.question h3 {
  font-family: var(--serif); font-size: 20px; line-height: 1.25; margin: 0 0 12px;
}
.question .answer {
  font-family: var(--serif); font-size: 16px; line-height: 1.55; color: var(--ink-2);
  margin: 0 0 14px;
}
.question .asker {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--sans); font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em;
  border-top: 1px solid var(--rule); padding-top: 10px;
}
.question .asker .init {
  display: inline-block; width: 24px; height: 24px;
  border: 1px solid var(--rule); border-radius: 50%;
  font-family: var(--serif); font-size: 12px; line-height: 22px;
  text-align: center; color: var(--ink-2);
}

/* ============================================================
   RELATED PATHWAYS (Section 7)
   ============================================================ */
.pathways {
  padding: 56px 24px 24px;
}
.pathways-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  border-bottom: 1px solid var(--ink); padding-bottom: 18px; margin-bottom: 0;
}
.pathways-head h2 { margin: 0; }
.pathways-head p { font-family: var(--serif); font-size: 18px; color: var(--ink-2); margin: 0; max-width: 50ch; }
.pathway-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--rule);
}
.pathway {
  padding: 26px 22px 30px;
  border-right: 1px solid var(--rule);
}
.pathway:last-child { border-right: 0; }
.pathway .num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--rose); }
.pathway h3 { font-family: var(--serif); font-size: 22px; margin: 6px 0 8px; line-height: 1.18; }
.pathway p { font-family: var(--sans); font-size: 14px; color: var(--ink-2); margin: 0 0 16px; line-height: 1.5; }
.pathway ul { list-style: none; padding: 0; margin: 0; }
.pathway li { margin: 0; padding: 4px 0; font-family: var(--sans); font-size: 14px; }
.pathway li a { border-bottom: 0; }
.pathway li a:hover { color: var(--rose); }
.pathway .more {
  display: inline-block; margin-top: 14px;
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rose); border-bottom: 1px solid var(--rose);
}

/* ============================================================
   RESPONSIBLE-USE CLOSE (Section 8)
   ============================================================ */
.responsible {
  padding: 36px 24px 64px;
  border-top: 1px solid var(--rule);
  background: var(--paper-deep);
}
.responsible-inner {
  max-width: 760px; margin: 0 auto;
  text-align: center;
}
.responsible h2 {
  font-family: var(--serif); font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 12px;
}
.responsible p {
  font-family: var(--serif); font-size: 17px; line-height: 1.6; color: var(--ink-2);
  margin: 0 0 18px;
}
.responsible .seal {
  display: inline-block;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 8px 0; margin-top: 12px;
}

/* ============================================================
   CONTENT PAGES — common
   ============================================================ */
.content-head {
  padding: 56px 24px 28px;
  border-bottom: 1px solid var(--rule);
}
.content-head .crumbs {
  font-family: var(--sans); font-size: 13px; color: var(--ink-3); letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.content-head .crumbs a { color: var(--ink-3); border: 0; }
.content-head .crumbs a:hover { color: var(--rose); }
.content-head h1 {
  font-family: var(--serif); font-size: clamp(34px, 5.2vw, 58px);
  margin: 0 0 16px; max-width: 22ch;
  letter-spacing: -0.022em; line-height: 1.05;
}
.content-head .lede {
  font-family: var(--serif); font-size: 21px; line-height: 1.45; color: var(--ink-2);
  max-width: 64ch; margin: 0 0 22px;
}
.content-head .meta {
  display: flex; gap: 18px; align-items: center;
  font-family: var(--sans); font-size: 13px; color: var(--ink-3); letter-spacing: 0.04em;
  border-top: 1px solid var(--rule); padding-top: 14px;
}
.content-head .meta .pages { margin-left: auto; font-family: var(--serif); font-style: italic; }

.content-hero {
  margin: 0 24px;
  border: 1px solid var(--ink);
}
.content-hero img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; }
.content-hero figcaption {
  padding: 8px 14px; border-top: 1px solid var(--rule);
  font-family: var(--sans); font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em;
  display: flex; justify-content: space-between;
}

.article {
  padding: 48px 24px 72px;
}
.article-body {
  max-width: 70ch; margin: 0 auto;
}
.related {
  padding: 24px 24px 72px;
  border-top: 1px solid var(--rule);
  background: var(--paper-edge);
}
.related-inner {
  max-width: 70ch; margin: 0 auto;
}
.related h2, .related h3 {
  font-family: var(--serif); font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.012em; margin: 0 0 14px;
  color: var(--ink);
}
.related ul {
  font-family: var(--serif); font-size: 17px; line-height: 1.55;
  margin: 0; padding: 0; list-style: none;
}
.related ul li {
  margin: 0; padding: 8px 0;
  border-bottom: 1px dashed var(--rule);
}
.related ul li:last-child { border-bottom: 0; }
.related a { color: var(--ink); border-bottom: 1px solid var(--rose-soft); }
.related a:hover { color: var(--rose); border-bottom-color: var(--rose); }
.article-body p {
  font-family: var(--serif); font-size: 18px; line-height: 1.66;
  color: var(--ink); margin: 0 0 1.1em 0;
}
.article-body p.drop-cap::first-letter {
  font-family: var(--serif); font-size: 64px; float: left; line-height: 0.9;
  padding: 8px 10px 0 0; color: var(--rose); font-weight: 700;
}
.article-body h2 {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.014em; margin: 1.6em 0 0.6em;
}
.article-body h3 {
  font-family: var(--serif); font-size: 22px; margin: 1.4em 0 0.5em;
}
.article-body ul, .article-body ol {
  font-family: var(--serif); font-size: 17px; line-height: 1.55;
  margin: 0 0 1.2em 0;
}
.article-body ul li, .article-body ol li { margin: 0.4em 0; }
.article-body blockquote {
  border-left: 3px solid var(--rose);
  margin: 28px 0; padding: 6px 0 6px 20px;
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink);
}
.article-body figure {
  margin: 28px 0;
}
.article-body figure img {
  width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover;
  border: 1px solid var(--ink);
}
.article-body figcaption {
  font-family: var(--sans); font-size: 13px; color: var(--ink-3); letter-spacing: 0.04em;
  padding-top: 8px;
  display: flex; justify-content: space-between;
}

/* Pull quote sidebar */
.aside-card {
  border: 1px solid var(--ink);
  padding: 22px 22px 24px;
  background: var(--paper-edge);
  font-family: var(--serif);
  font-size: 16px; line-height: 1.5; color: var(--ink-2);
  margin: 24px 0;
}
.aside-card h4 {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3);
  margin: 0 0 10px;
  border-bottom: 1px solid var(--rule); padding-bottom: 8px;
}

/* In-body comparison table */
.compare {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  font-family: var(--sans);
  table-layout: fixed;
}
.compare th, .compare td {
  padding: 12px 10px; text-align: left;
  border-bottom: 1px solid var(--rule);
  font-size: 14px; vertical-align: top;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.compare thead th {
  background: var(--paper);
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
  border-bottom: 3px double var(--ink);
}
.compare tbody td:first-child {
  font-family: var(--serif); font-weight: 600; color: var(--ink);
}
.compare tbody td.rose { color: var(--rose); font-weight: 700; }

/* Steps list */
.steps { list-style: none; padding: 0; margin: 24px 0; counter-reset: stp; }
.steps > li {
  counter-increment: stp;
  position: relative; padding: 12px 0 14px 60px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif); font-size: 17px; line-height: 1.55;
}
.steps > li:last-child { border-bottom: 0; }
.steps > li::before {
  content: counter(stp);
  position: absolute; left: 0; top: 12px;
  width: 42px; height: 42px;
  border: 1px solid var(--ink); border-radius: 50%;
  font-family: var(--serif); font-size: 18px; line-height: 40px; text-align: center;
  color: var(--ink);
}
.steps > li b { color: var(--ink); }

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin: 32px 0;
}
.cards.cards-narrow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.cards.cards-medium {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 980px) {
  .cards.cards-narrow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards.cards-narrow .card:nth-child(2n) { border-right: 0; }
  .cards.cards-narrow .card:nth-child(5) { border-bottom: 0; }
  .cards.cards-medium { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards.cards-medium .card:nth-child(2n) { border-right: 0; }
  .cards.cards-medium .card:nth-child(3) { border-bottom: 1px solid var(--rule); }
  .cards.cards-medium .card:last-child { border-bottom: 0; }
}
.card {
  padding: 22px 22px 24px;
  border-right: 1px solid var(--rule);
  background: var(--paper);
}
.card:last-child { border-right: 0; }
.card .icn {
  display: inline-block; width: 32px; height: 32px;
  border: 1px solid var(--rule); border-radius: 50%;
  font-family: var(--serif); font-size: 16px; line-height: 30px; text-align: center;
  color: var(--rose); margin-bottom: 12px;
}
.card h3 { font-family: var(--serif); font-size: 19px; margin: 0 0 6px; }
.card p { font-family: var(--serif); font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0 0 10px; }
.card a { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); border-bottom: 1px solid var(--rose-soft); }
.card a:hover { border-bottom-color: var(--rose); }

/* Stats tile */
.stat-row {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 3px double var(--ink); border-bottom: 1px solid var(--rule);
  margin: 32px 0;
}
.stat {
  padding: 22px 18px 24px;
  border-right: 1px solid var(--rule);
  background: var(--paper-edge);
}
.stat:last-child { border-right: 0; }
.stat .n {
  font-family: var(--serif); font-size: 38px; line-height: 1; font-weight: 700;
  color: var(--ink); font-feature-settings: "tnum";
}
.stat .lbl { font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-top: 6px; }

/* Inline image card */
.inline-image {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  align-items: center; margin: 32px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.inline-image figure { margin: 0; }
.inline-image figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--ink); }
.inline-image figure figcaption { font-family: var(--sans); font-size: 12px; color: var(--ink-3); padding-top: 8px; letter-spacing: 0.04em; }
.inline-image .text h4 { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 10px; }
.inline-image .text h3 { font-family: var(--serif); font-size: 24px; margin: 0 0 10px; }
.inline-image .text p { font-family: var(--serif); font-size: 17px; line-height: 1.6; color: var(--ink-2); margin: 0; }

/* FAQ list */
.faq { margin: 32px 0; }
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 18px 0 22px;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item h3 {
  font-family: var(--serif); font-size: 22px; margin: 0 0 10px;
}
.faq-item h3::before {
  content: "Q"; display: inline-block;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  color: var(--rose); border: 1px solid var(--rose); padding: 4px 8px; margin-right: 10px;
  letter-spacing: 0.04em; vertical-align: middle;
}
.faq-item p {
  font-family: var(--serif); font-size: 17px; line-height: 1.6; color: var(--ink-2);
  margin: 0 0 10px;
}
.faq-item p.ans::before {
  content: "A"; display: inline-block;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  color: var(--paper); background: var(--ink); padding: 4px 8px; margin-right: 10px;
  letter-spacing: 0.04em; vertical-align: middle;
}

/* Callout / context CTA */
.contextual {
  margin: 32px 0;
  border: 1px solid var(--ink);
  padding: 22px 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
  background: var(--paper-edge);
}
.contextual h4 {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 6px;
}
.contextual h3 { font-family: var(--serif); font-size: 22px; margin: 0 0 6px; }
.contextual p { font-family: var(--serif); font-size: 16px; color: var(--ink-2); margin: 0; max-width: 60ch; }
.contextual .btn {
  display: inline-block; padding: 12px 20px;
  background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border: 0;
  text-align: center; white-space: nowrap;
}
.contextual .btn:hover { background: var(--rose); }
.contextual .btn:visited { color: var(--paper); }

/* Editorial credit / closing strip */
.credit {
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 16px 0; margin: 28px 0;
  display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--sans); font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 3px solid var(--ink);
  padding: 48px 0 24px;
  background: var(--paper);
  font-family: var(--sans); font-size: 14px; color: var(--ink-2);
}
.foot-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 36px;
}
.foot-brand .brand-mark { font-size: 22px; }
.foot-brand p { font-family: var(--serif); font-size: 15px; color: var(--ink-2); margin: 12px 0 0; line-height: 1.55; max-width: 36ch; }
.foot-brand .reach {
  margin-top: 18px;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
}
.foot-col h5 {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3);
  margin: 4px 0 12px;
  border-bottom: 1px solid var(--rule); padding-bottom: 8px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin: 0; padding: 4px 0; font-family: var(--sans); font-size: 14px; }
.foot-col a { border: 0; color: var(--ink-2); }
.foot-col a:hover { color: var(--rose); }

.foot-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px 0;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 16px;
  font-family: var(--sans); font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em;
}
.foot-bottom .center { text-align: center; font-family: var(--serif); font-style: italic; color: var(--ink-2); }
.foot-bottom .right { text-align: right; }
.foot-bottom a { color: var(--ink-3); border: 0; }
.foot-bottom a:hover { color: var(--rose); }

/* ============================================================
   MOBILE STICKY AFFILIATE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 220;
  display: none;
  background: var(--paper);
  border-top: 3px solid var(--ink);
  padding: 12px 14px 14px;
}
.sticky-cta[data-show="true"] { display: block; }
.sticky-cta-inner {
  display: flex; gap: 12px; align-items: center;
}
.sticky-cta-copy {
  flex: 1 1 auto; min-width: 0;
  font-family: var(--sans); font-size: 13px; color: var(--ink-2); line-height: 1.35;
  border-left: 1px solid var(--rule); padding-left: 12px;
}
.sticky-cta-copy b { color: var(--ink); display: block; font-size: 13px; letter-spacing: 0.04em; }
.sticky-cta-btn {
  flex: 1 1 auto;
  display: block;
  padding: 14px 16px;
  background: var(--rose); color: var(--paper);
  font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  text-align: center;
  border: 0;
  border-radius: 0;
  white-space: nowrap;
  text-decoration: none;
}
.sticky-cta-btn:visited { color: var(--paper); }
.sticky-cta-btn:hover { background: var(--rose-deep); }

/* Add breathing space at bottom of body when sticky shown */
body[data-sticky="true"] { padding-bottom: 80px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .chapter { grid-template-columns: 1fr; gap: 24px; padding: 48px 24px; }
  .chapter-rail { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 16px; }
  .ledger-frame { grid-template-columns: 1fr; gap: 22px; }
  .pathway-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pathway { border-bottom: 1px solid var(--rule); }
  .pathway:nth-child(2n) { border-right: 0; }
  .pathway:nth-last-child(-n+2) { border-bottom: 0; }
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
  .poster-head { grid-template-columns: 1fr; gap: 18px; }
  .questions { grid-template-columns: 1fr; gap: 18px; padding: 40px 24px; }
  .questions-grid { grid-template-columns: 1fr; }
  .question { border-right: 0; border-bottom: 1px solid var(--rule); }
  .question:last-child { border-bottom: 0; }
  .inline-image { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 880px) {
  .masthead-date { display: none; }
  .masthead { grid-template-columns: 1fr auto; gap: 12px; padding: 12px 18px; }
  .masthead-right .search-trigger { display: none; }
  .hamburger { display: inline-flex; }
  .main-nav { display: none; }
  .cover { grid-template-columns: 1fr; gap: 18px; padding: 36px 18px 24px; }
  .cover-index ol { columns: 2; }
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
  .quick-action { border-bottom: 1px solid var(--rule); padding: 16px; }
  .quick-action:nth-child(2n) { border-right: 0; }
  .quick-action:nth-last-child(-n+2) { border-bottom: 0; }
  .chapter, .ledger, .poster, .questions, .pathways, .responsible, .article, .content-head { padding-left: 18px; padding-right: 18px; }
  .content-hero { margin: 0 18px; }
  .foot-grid { grid-template-columns: 1fr; gap: 22px; }
  .foot-bottom { grid-template-columns: 1fr; text-align: center; }
  .foot-bottom .right { text-align: center; }
  .cards { grid-template-columns: 1fr; }
  .card { border-right: 0; border-bottom: 1px solid var(--rule); }
  .card:last-child { border-bottom: 0; }
  .pathways-head { grid-template-columns: 1fr; }
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway { border-right: 0; border-bottom: 1px solid var(--rule); }
  .pathway:last-child { border-bottom: 0; }
  .poster-table th, .poster-table td { padding: 10px 8px; font-size: 14px; }
  .compare th, .compare td { padding: 10px 8px; font-size: 13px; }
  .contextual { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .nav-brand-mark { font-size: 24px; }
  .cover-title { font-size: 38px; }
  .cover-lede { font-size: 18px; }
  .credit { flex-direction: column; gap: 6px; }
  .step-num { display: none; }
  .stat-row { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: 0; }
  .sticky-cta-btn { padding: 12px 12px; font-size: 13px; }
}

/* Cover photo on homepage */
.cover-photo {
  margin: 28px 0 0;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.cover-photo img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}
.cover-photo figcaption {
  padding: 8px 14px; border-top: 1px solid var(--rule);
  font-family: var(--sans); font-size: 12px; color: var(--ink-3);
  letter-spacing: 0.04em; display: flex; justify-content: space-between;
}
@media (max-width: 880px) {
  .cover-photo { margin-top: 18px; }
}

/* Poster photo on homepage */
.poster-photo {
  margin: 0 24px 0; padding-top: 24px;
  border: 1px solid var(--ink);
  background: var(--paper);
  display: inline-block;
  max-width: 280px;
  float: right;
  margin-right: 24px;
  margin-left: 24px;
}
.poster-photo img {
  width: 100%; height: auto; display: block;
}
.poster-photo figcaption {
  padding: 8px 14px; border-top: 1px solid var(--rule);
  font-family: var(--sans); font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.04em; display: flex; justify-content: space-between;
}
@media (max-width: 880px) {
  .poster-photo { float: none; max-width: 100%; margin: 0 18px 18px; }
}

/* Chapter photo in rail */
.chapter-photo {
  margin: 14px 0 18px;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.chapter-photo img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4/3; object-fit: cover;
}
.chapter-photo figcaption {
  padding: 6px 10px; border-top: 1px solid var(--rule);
  font-family: var(--sans); font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.04em; display: flex; justify-content: space-between;
}

/* ----- a11y ----- */
:focus-visible { outline: 2px solid var(--rose); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0ms !important; transition-duration: 0ms !important; }
}

/* Make the sticky affiliate CTA visible on mobile from page load
   (the affiliate contract placement is mobile_sticky_contextual). */
@media (max-width: 880px) {
  .sticky-cta { display: block !important; }
  body { padding-bottom: 80px; }
}

/* Accessible structural labels: non-section navigation labels are not document headings. */
.heading-label { font-family: var(--sans); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: var(--ink-3); margin: 0 0 8px; }

/* ============================================================
   LATEST NEWS SECTION — homepage-only data-news-freshness surface
   ============================================================ */
.latest-news {
  padding: 36px 24px 48px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.latest-news-head { max-width: 70ch; margin: 0 auto 18px; }
.latest-news-head h2 {
  font-family: var(--serif); font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -0.014em; margin: 6px 0 8px;
}
.latest-news-head p {
  font-family: var(--serif); font-size: 17px; line-height: 1.55; color: var(--ink-2);
  margin: 0; max-width: 60ch;
}
.news-card {
  max-width: 70ch; margin: 0 auto;
  border: 1px solid var(--ink); background: var(--paper-edge);
}
.news-card-link {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 0;
  color: inherit; border: 0;
}
.news-card-link:hover h3 { color: var(--rose); }
.news-card-photo { margin: 0; min-width: 0; }
.news-card-photo img {
  width: 100%; height: 100%; min-height: 220px; display: block;
  aspect-ratio: 16/10; object-fit: cover;
  border-right: 1px solid var(--ink);
}
.news-card-body {
  padding: 18px 22px 20px; min-width: 0;
  display: flex; flex-direction: column; justify-content: space-between;
}
.news-card-date {
  font-family: var(--sans); font-size: 12px; color: var(--ink-3);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.news-card-body h3 {
  font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px);
  margin: 8px 0 8px; letter-spacing: -0.012em; line-height: 1.2;
}
.news-card-body p {
  font-family: var(--serif); font-size: 15px; line-height: 1.55;
  color: var(--ink-2); margin: 0 0 14px;
}
.news-card-more {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rose); border-bottom: 1px solid var(--rose-soft);
  align-self: flex-start;
}
@media (max-width: 720px) {
  .news-card-link { grid-template-columns: minmax(0, 1fr); }
  .news-card-photo img { border-right: 0; border-bottom: 1px solid var(--ink); min-height: 180px; }
  .news-card-body { padding: 16px 18px 18px; }
}
