/* =================================================================
   TE 2026 — Editorial design system
   -----------------------------------------------------------------
   1. Tokens (colors, type, space, motion)
   2. Reset + base
   3. Typography (long-form reading is the product)
   4. Layout primitives (wrap, grid, rule, eyebrow, button)
   5. Site chrome (header, footer, nav, search overlay)
   6. Home — editorial cover
   7. Single interview — reading experience
   8. Archive + discovery
   9. Quote gallery
  10. Newsletter, related, prev/next
  11. Utilities, accessibility, print
   ================================================================= */

/* 1. TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Paper */
  --paper:        #FAF7F2;
  --paper-rule:   #E6DFD2;
  --paper-tint:   #F1ECDF;

  /* Ink — mute is darkened from #6E6862 → #5C564F so it passes WCAG AA against paper */
  --ink:          #1A1816;
  --ink-soft:     #3C3833;
  --ink-mute:     #5C564F;
  --ink-quiet:    #8A857F;

  /* Editorial accents */
  --accent:       #0E4F4A;       /* inkbottle teal */
  --accent-soft:  #B89F73;       /* paper gold for hairlines */
  --accent-hot:   #B43A1F;       /* used very sparingly for "new" labels */

  /* Backgrounds */
  --bg:           var(--paper);
  --fg:           var(--ink);
  --rule:         var(--paper-rule);
  --tint:         var(--paper-tint);

  /* Type
     Literata is engineered specifically for long-form digital reading.
     Fraunces is the display serif. Inter is the UI sans. */
  --font-display: 'Fraunces', 'Literata', Georgia, 'Times New Roman', serif;
  --font-serif:   'Literata', Georgia, 'Times New Roman', serif;
  --font-ui:      'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Type scale — major third (1.250) */
  --fs-xs:   0.78rem;
  --fs-sm:   0.88rem;
  --fs-base: 1.05rem;       /* root reading size */
  --fs-md:   1.20rem;
  --fs-lg:   1.50rem;
  --fs-xl:   1.95rem;
  --fs-2xl:  2.45rem;
  --fs-3xl:  3.20rem;
  --fs-4xl:  4.15rem;
  --fs-5xl:  5.40rem;

  /* Long-form measure — DELIBERATELY stays narrow even on wide screens.
     A 65-character measure is the foundation of editorial typography;
     widening this would make interviews harder to read, not easier. */
  --measure: 38rem;         /* ~65ch with this body type */
  --measure-wide: 56rem;

  /* Spacing — fluid */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.5rem;
  --space-6:  2rem;
  --space-7:  3rem;
  --space-8:  4rem;
  --space-9:  6rem;
  --space-10: 9rem;

  /* Containers — opened up for big Mac displays.
     wrap-ultra is for cover/hero sections that should feel grand on a 27" screen. */
  --wrap:        min(78rem, 90vw);
  --wrap-narrow: min(48rem, 92vw);
  --wrap-wide:   min(96rem, 92vw);
  --wrap-ultra:  min(120rem, 94vw);   /* 1920px max — stretches further on 27" iMacs */

  /* Lines */
  --hair: 1px solid var(--rule);
  --hair-strong: 1px solid var(--ink);

  /* Motion */
  --t-fast: 120ms ease;
  --t:      200ms cubic-bezier(.4,.0,.2,1);
}

/* Dark mode — automatic + manual override via [data-theme="dark"] */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:        #14110D;
    --fg:        #ECE6DA;
    --rule:      #2A2520;
    --tint:      #1D1A15;
    --paper-rule:#2A2520;
    --ink:       #ECE6DA;
    --ink-soft:  #C9C2B4;
    --ink-mute:  #A8A196;       /* lifted to pass WCAG AA on dark */
    --ink-quiet: #6E6862;
    --accent:    #6DBCB4;
    --accent-soft:#C5A975;
  }
}
:root[data-theme="dark"] {
  --bg:        #14110D;
  --fg:        #ECE6DA;
  --rule:      #2A2520;
  --tint:      #1D1A15;
  --paper-rule:#2A2520;
  --ink:       #ECE6DA;
  --ink-soft:  #C9C2B4;
  --ink-mute:  #A8A196;       /* lifted from #948D80 to pass WCAG AA on dark */
  --ink-quiet: #6E6862;
  --accent:    #6DBCB4;
  --accent-soft:#C5A975;
}

/* 2. RESET / BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
html, body { max-width: 100vw; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation-duration: 0ms !important; transition-duration: 0ms !important; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-serif);
  font-size: var(--fs-base);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "onum";
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent); }
hr { border: 0; border-top: var(--hair); margin: var(--space-6) 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--paper); }

/* 3. TYPOGRAPHY ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0 0 var(--space-4);
  font-variation-settings: "opsz" 84;
}
h1 { font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl)); font-weight: 900; }
h2 { font-size: clamp(var(--fs-xl), 3.4vw, var(--fs-2xl)); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }
h5 { font-size: var(--fs-base); letter-spacing: 0.02em; }
h6 { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.14em; font-family: var(--font-ui); font-weight: 600; color: var(--ink-mute); }

p { margin: 0 0 var(--space-4); }
strong, b { font-weight: 600; }
em, i { font-style: italic; }
blockquote { margin: var(--space-6) 0; padding: 0 0 0 var(--space-5); border-left: 3px solid var(--accent-soft); font-style: italic; font-size: var(--fs-md); line-height: 1.5; color: var(--ink-soft); }
blockquote cite { display: block; margin-top: var(--space-3); font-style: normal; font-family: var(--font-ui); font-size: var(--fs-sm); color: var(--ink-mute); letter-spacing: 0.04em; }
small, .text-sm { font-size: var(--fs-sm); }
.text-xs { font-size: var(--fs-xs); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-3);
}
.dek {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: var(--measure);
}

/* 4. LAYOUT PRIMITIVES ──────────────────────────────────────────── */
.wrap        { max-width: var(--wrap);        margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.wrap-narrow { max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 1.5rem); }
.wrap-wide   { max-width: var(--wrap-wide);   margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.wrap-ultra  { max-width: var(--wrap-ultra);  margin-inline: auto; padding-inline: clamp(1rem, 4vw, 3rem); }

.stack > * + * { margin-top: var(--space-5); }
.stack-lg > * + * { margin-top: var(--space-7); }
.row { display: flex; gap: var(--space-4); align-items: center; flex-wrap: wrap; }

.rule { height: 1px; background: var(--rule); margin: var(--space-6) 0; border: 0; }
.rule-strong { height: 1px; background: var(--ink); opacity: .35; margin: var(--space-6) 0; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85em 1.4em;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transition: transform var(--t-fast), background var(--t-fast);
}
.btn:hover { background: var(--accent); color: var(--paper); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

/* 5. SITE CHROME ────────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 0; padding: var(--space-3) var(--space-5);
  background: var(--ink); color: var(--paper); z-index: 9999;
}
.skip-link:focus { left: var(--space-3); top: var(--space-3); }

/* ── HEADER (two rows: top bar + sections bar) ───────────────────── */
.site-header {
  border-bottom: var(--hair);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  position: sticky; top: 0; z-index: 80;
  width: 100%;
  max-width: 100vw;
  /* Horizontal clip only — vertical overflow MUST be visible so the
     mobile nav panel (absolutely positioned below the header) can render. */
  overflow-x: clip;
  overflow-y: visible;
  -webkit-backdrop-filter: saturate(180%) blur(10px);
          backdrop-filter: saturate(180%) blur(10px);
  transition: box-shadow var(--t);
}
.site-header.is-scrolled { box-shadow: 0 1px 14px rgba(0,0,0,0.05); }

/* Top bar: primary nav | brand+tagline | tools.
   Centered brand using 1fr 'auto' 1fr column trick keeps brand visually centred. */
.site-header__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(var(--space-3), 2vw, var(--space-5));
  padding: clamp(var(--space-3), 1.5vw, var(--space-4)) clamp(1rem, 3vw, 2.5rem);
  max-width: var(--wrap-ultra);
  margin-inline: auto;
}

/* Brand */
.brand {
  display: inline-flex; flex-direction: column; align-items: center;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.brand__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  letter-spacing: -0.018em;
  text-transform: uppercase;
}
.brand__tagline {
  font-family: var(--font-ui);
  font-size: clamp(0.58rem, 0.7vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* Primary nav (top row, left side) */
.site-nav--primary { justify-self: start; }
.site-nav--primary ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: clamp(var(--space-3), 1.3vw, var(--space-5));
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  font-weight: 500;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.3em 0;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current-menu-parent > a {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

/* Dropdown menu (About → sub-items) — desktop only */
.site-nav--primary .menu-item-has-children { position: relative; }
.site-nav--primary .sub-menu-chevron {
  display: inline-block;
  margin-left: 0.3em;
  font-size: 0.7em;
  color: var(--ink-mute);
  transition: transform var(--t-fast);
}
.site-nav--primary .menu-item-has-children:hover .sub-menu-chevron { transform: rotate(180deg); }

@media (min-width: 1001px) {
  .site-nav--primary .sub-menu {
    position: absolute;
    top: 100%;
    left: -0.5rem;
    margin: 0;
    padding: var(--space-3) 0;
    list-style: none;
    background: var(--bg);
    border: var(--hair);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    min-width: 14rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity var(--t-fast), visibility var(--t-fast), transform var(--t-fast);
    z-index: 90;
  }
  .site-nav--primary .menu-item-has-children:hover > .sub-menu,
  .site-nav--primary .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-nav--primary .sub-menu li { margin: 0; }
  .site-nav--primary .sub-menu a {
    display: block;
    padding: 0.5em 1.2em;
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    border-bottom: 0;
    white-space: nowrap;
  }
  .site-nav--primary .sub-menu a:hover {
    background: var(--tint);
    color: var(--accent);
    border-bottom: 0;
  }
}

/* Mobile: flatten the sub-menu — show all sub-items inline beneath the parent */
@media (max-width: 1000px) {
  .site-nav--primary .sub-menu-chevron { display: none; }
  .site-nav--primary .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 var(--space-4);
    border-left: 1px solid var(--rule);
  }
  .site-nav--primary .sub-menu a {
    font-size: var(--fs-base);
    color: var(--ink-soft);
    padding: 0.55em 0 !important;
  }
}

/* Sections nav (second row — categories) */
.site-nav--sections {
  border-top: var(--hair);
  background: var(--tint);
}
.site-nav--sections ul {
  list-style: none; margin: 0 auto; padding: 0;
  display: flex; justify-content: center;
  gap: clamp(var(--space-3), 1.5vw, var(--space-5));
  flex-wrap: wrap;
  max-width: var(--wrap-ultra);
  padding: 0.7rem clamp(1rem, 3vw, 2.5rem);
  font-family: var(--font-ui);
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.site-nav--sections a {
  color: var(--ink-mute);
  padding: 0.2em 0;
  white-space: nowrap;
}
.site-nav--sections a:hover,
.site-nav--sections .current-menu-item > a {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

/* Tools (right side of top row) */
.site-tools {
  display: flex; gap: clamp(var(--space-2), 0.8vw, var(--space-3));
  align-items: center;
  justify-self: end;
}
/* Shared sizing token for header CTAs — both the native Book button AND the
   Brevo-injected Sign up button must inherit the SAME box dimensions.
   Height matches the .icon-btn (44px) so CTAs, theme toggle and search icon
   all share the same vertical line in the header. */
.site-tools .btn--sm,
.te-brevo-header-link {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 44px !important;
  padding: 0 1.25em !important;
  font-family: var(--font-ui) !important;
  font-size: clamp(0.8rem, 0.92vw, 0.9rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast) !important;
}
.site-tools__book {
  background: var(--accent) !important;
  color: var(--paper) !important;
  border: 1px solid var(--accent) !important;
}
.site-tools__book:hover { background: var(--ink) !important; border-color: var(--ink) !important; color: var(--paper) !important; }

/* Native Sign-up CTA — the single header conversion button.
   Filled teal pill to read as the primary action. */
.site-tools__signup {
  background: var(--accent) !important;
  color: var(--paper) !important;
  border: 1px solid var(--accent) !important;
}
.site-tools__signup:hover { background: var(--ink) !important; border-color: var(--ink) !important; color: var(--paper) !important; }

/* Brevo's injected button — same box, ghost style.
   The plugin wraps Sign up + Purchase the Book in a <span class="te-brevo-header-wrap">.
   Using display:contents makes that wrapper transparent to layout, so the two buttons
   become direct flex children of .site-tools and share the SAME baseline as the icon
   buttons rather than being inside a nested flex container. This is the cleanest way
   to defeat the staggered-baseline drift. */
.te-brevo-header-wrap {
  display: contents !important;
  float: none !important;
}
.te-brevo-header-link {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink) !important;
  align-self: center !important;
}
.te-brevo-header-link:hover,
.te-brevo-header-link:focus {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

/* Every direct child of .site-tools is now flex-centred and the same height (44px).
   Belt-and-braces in case anything else slips in. */
.site-tools { align-items: center !important; gap: clamp(var(--space-2), 0.8vw, var(--space-3)) !important; }
.site-tools > *,
.site-tools .te-brevo-header-link,
.site-tools .icon-btn {
  align-self: center !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Triple-lock the height on every header tool so border-width or font-metrics
   can't shift the box by even a pixel. */
.site-tools .btn--sm,
.site-tools .te-brevo-header-link {
  min-height: 44px !important;
  max-height: 44px !important;
}
.icon-btn {
  box-sizing: border-box;
  width: 44px; height: 44px;       /* matches CTA height — HIG / WCAG touch-target minimum */
  display: inline-grid; place-items: center;
  border-radius: 999px;
  color: var(--ink-soft);
  border: 1px solid transparent;   /* match the CTA's border so widths visually rhyme */
  transition: background var(--t-fast), color var(--t-fast);
}
.icon-btn:hover { background: var(--tint); color: var(--ink); }
.icon-btn svg { width: 18px; height: 18px; }
@media (hover: none) {
  /* Larger tap targets on touch devices */
  .icon-btn { width: 48px; height: 48px; }
}

.menu-toggle { display: none; }

/* Mid-desktop: hide Purchase the Book to make room */
@media (max-width: 1300px) {
  body .site-tools__book,
  html body .site-header .site-tools__book { display: none !important; }
}
/* JS clones the sections nav items into the primary nav for the mobile burger
   menu. On desktop those clones must be hidden — they only render in the
   mobile panel. */
@media (min-width: 1001px) {
  .site-nav--primary [data-section-clone] { display: none !important; }
}

/* Tablet/mobile: hide Purchase the Book (if it exists) and the Brevo injection,
   BUT keep the native Sign up button visible — it's the primary conversion CTA
   and major editorial sites (NYT, FT, Foreign Affairs) all keep Subscribe in
   the mobile header. */
@media (max-width: 1100px) {
  html body .site-header .site-tools__book,
  html body .site-header .te-brevo-header-link,
  html body .site-header .te-brevo-header-wrap,
  html body .te-brevo-header-wrap,
  html body .te-brevo-header-link { display: none !important; visibility: hidden !important; }

  /* Compact Sign up pill on mobile — smaller padding + slightly shorter so it
     fits comfortably next to brand + burger. */
  html body .site-header .site-tools__signup {
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    padding: 0 0.9em !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.02em !important;
  }
}
@media (max-width: 480px) {
  /* On tightest phones, drop "free" to just "Sign up" — saves width */
  html body .site-header .site-tools__signup {
    padding: 0 0.75em !important;
    font-size: 0.74rem !important;
  }
}

/* Tablet & mobile: collapse to brand + hamburger.
   On mobile the sections nav (categories row) is hidden entirely; its links
   are cloned into the primary nav panel by main.js so the burger menu shows
   EVERYTHING in one place (About, Quotes, Wisdom… plus Business & Economics, etc.). */
@media (max-width: 1000px) {
  .site-header__top {
    grid-template-columns: 1fr auto;       /* brand grows | tools auto */
    gap: var(--space-3);
    padding: var(--space-3) clamp(0.75rem, 4vw, 1.25rem);
  }
  .brand { align-items: center; }
  .brand__wordmark { font-size: clamp(1rem, 3.5vw, 1.25rem); letter-spacing: -0.012em; }
  .brand__tagline { display: none; }
  .menu-toggle { display: inline-grid !important; }

  /* Sections nav is fully hidden on mobile — its links live inside the primary panel */
  .site-nav--sections { display: none !important; }

  /* Primary nav: hidden by default, panel-style when open */
  .site-nav--primary { display: none; }
  .site-nav--primary.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    border-top: var(--hair);
    border-bottom: var(--hair);
    padding: var(--space-5) clamp(1rem, 4vw, 2rem);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    z-index: 79;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .site-nav--primary.is-open ul {
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    padding: 0;
    list-style: none;
    margin: 0;
  }
  .site-nav--primary.is-open ul a {
    display: block;
    padding: 0.7em 0;
    font-size: var(--fs-md);
    white-space: normal;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
  }
  .site-nav--primary.is-open ul a:hover { color: var(--accent); }

  /* Divider that separates About/Quotes/etc. from the category links */
  .site-nav--primary .menu-divider {
    font-family: var(--font-ui);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    padding: var(--space-5) 0 var(--space-2) !important;
    border-bottom: 0 !important;
    list-style: none;
  }
}

/* Phone: brand + burger only — hide theme/search on tightest viewports */
@media (max-width: 480px) {
  .site-tools .icon-btn[data-action="toggle-theme"],
  .site-tools .icon-btn[data-action="open-search"] { display: none !important; }
  /* Search is still reachable from the mobile menu panel */
  .brand__wordmark { font-size: 1rem; }
}

/* Mobile menu panel: include CTAs at the bottom when open */
@media (max-width: 1000px) {
  .site-nav--primary.is-open ul.menu::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--rule);
    margin: var(--space-4) 0;
  }
  .mobile-cta {
    display: none;
  }
  .site-nav--primary.is-open .mobile-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--rule);
  }
  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 1.25em;
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: var(--fs-md);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--ink);
  }
  .mobile-cta a.mobile-cta__signup { background: transparent; color: var(--ink); }
  .mobile-cta a.mobile-cta__book { background: var(--accent); color: var(--paper); border-color: var(--accent); }
}
@media (min-width: 1001px) {
  .mobile-cta { display: none !important; }
}

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; background: var(--bg);
  display: none; place-items: start center;
  padding-top: 18vh;
  z-index: 90;
}
.search-overlay.is-open { display: grid; }
.search-overlay__inner { width: var(--wrap-narrow); }
.search-overlay form { display: flex; align-items: end; gap: var(--space-4); border-bottom: var(--hair-strong); }
.search-overlay input[type="search"] {
  flex: 1;
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: transparent;
  border: 0;
  padding: var(--space-4) 0;
  outline: none;
  color: var(--ink);
}
.search-overlay__close { font-size: var(--fs-md); color: var(--ink-mute); }
.search-overlay__hint { margin-top: var(--space-5); color: var(--ink-mute); font-size: var(--fs-sm); }

/* Footer — restrained, magazine masthead style.
   Defensive: explicitly block-level + full-width + cleared so it CANNOT
   be absorbed into a stray grid/flex container left open by page content. */
.site-footer {
  border-top: 2px solid var(--ink);
  margin-top: var(--space-7);
  background: var(--bg);
  display: block !important;
  width: 100% !important;
  max-width: 100vw !important;
  clear: both !important;
  position: relative !important;
  grid-column: 1 / -1 !important;     /* if any parent is a grid, span all columns */
  grid-row: auto !important;
  float: none !important;
  z-index: 1;
}
.site-footer__inner {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: var(--space-8) clamp(1rem, 4vw, 3rem) var(--space-6);
  max-width: var(--wrap-ultra);
  margin-inline: auto;
}
.site-footer h6 {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--rule);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: var(--space-3); }
.site-footer a { text-decoration: none; color: var(--ink-soft); }
.site-footer a:hover { color: var(--ink); border-bottom: 1px solid var(--accent); }
.site-footer__brand p { color: var(--ink-mute); font-size: var(--fs-sm); max-width: 36ch; }
.site-footer__legal {
  border-top: var(--hair); margin-top: var(--space-6);
  padding: var(--space-5) clamp(1rem, 4vw, 3rem);
  max-width: var(--wrap-ultra);
  margin-inline: auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4);
  font-family: var(--font-ui); font-size: var(--fs-xs); color: var(--ink-mute);
}
@media (max-width: 800px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

/* 6. HOME — EDITORIAL COVER ─────────────────────────────────────── */
/* (cover-masthead rules removed — the hero feature leads the page now.) */

/* HERO FEATURE — Foreign Affairs-style magazine cover treatment.
   Photograph + typography are co-equal; both top-aligned to share a baseline.
   On widescreen the image takes slightly more visual weight so it can carry
   the page rather than float inside the column. */
.hero-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(var(--space-6), 5vw, var(--space-9));
  align-items: start;        /* TOP-align so columns share baseline */
  padding: clamp(var(--space-6), 5vw, var(--space-9)) 0;
  border-bottom: var(--hair);
}
.hero-feature__body {
  max-width: 30rem;
  padding-top: var(--space-3);
}
.hero-feature__kicker {
  display: flex; align-items: center; gap: var(--space-3);
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 var(--space-4);
}
.hero-feature__badge {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 0.35em 0.8em;
  letter-spacing: 0.16em;
}
.hero-feature__kicker a { color: var(--ink-mute); text-decoration: none; }
.hero-feature__kicker a:hover { color: var(--accent); }
.hero-feature__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.85rem, 3.3vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 var(--space-4);
}
.hero-feature__title a { text-decoration: none; color: inherit; }
.hero-feature__title a:hover { color: var(--accent); }
.hero-feature__dek {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 0 var(--space-5);
}
.hero-feature__meta {
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  color: var(--ink-mute);
  margin: 0 0 var(--space-5);
}
.hero-feature__sep { margin: 0 0.6em; opacity: 0.5; }
.hero-feature__cta { margin: 0; }
.hero-feature__media {
  margin: 0;
  background: var(--tint);
}
.hero-feature__media img {
  aspect-ratio: 5/4;          /* Taller than 4:3 — image gets more vertical presence */
  object-fit: contain;
  width: 100%;
}
@media (min-width: 1400px) {
  .hero-feature { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-9); }
}
@media (max-width: 900px) {
  .hero-feature { grid-template-columns: 1fr; padding: var(--space-6) 0; gap: var(--space-5); }
  .hero-feature__body { max-width: none; order: 2; padding-top: 0; }
  .hero-feature__media { order: 1; }
  .hero-feature__media img { aspect-ratio: 16/10; }
}

/* Link with arrow — editorial CTA used throughout */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color var(--t-fast), border-color var(--t-fast), gap var(--t-fast);
}
.link-arrow:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  gap: 0.7em;
}
.hero-feature__body .eyebrow { color: var(--accent-hot); }
/* (Previous .hero-feature__title / __dek / __meta rules removed —
   the new Foreign Affairs-style block above is the canonical definition.) */

.section { padding: clamp(var(--space-6), 6vw, var(--space-8)) 0; border-bottom: var(--hair); }
.section__head {
  display: flex; align-items: end; justify-content: space-between; gap: var(--space-5);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  border-bottom: 2px solid var(--ink);
  padding-bottom: var(--space-4);
}
.section__head h2 {
  margin: 0;
  font-size: clamp(var(--fs-xl), 2.6vw, var(--fs-2xl));
  letter-spacing: -0.018em;
}
.section__head .eyebrow { margin-bottom: var(--space-2); color: var(--ink-mute); }
.section__head .section__more {
  font-family: var(--font-ui); font-size: var(--fs-sm); font-weight: 600;
  color: var(--ink-mute);
  text-decoration: none; border-bottom: 1px solid var(--rule); padding-bottom: 2px;
  white-space: nowrap;
}
.section__head .section__more:hover { color: var(--ink); border-bottom-color: var(--ink); }

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7) var(--space-5);
}
/* Tablet: 2-up */
@media (max-width: 900px) { .grid-cards { grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-5); } }
/* Phone: 1-up */
@media (max-width: 560px) { .grid-cards { grid-template-columns: 1fr; gap: var(--space-6); } }
/* Big Mac: 4-up so we don't waste horizontal real estate */
@media (min-width: 1400px) { .grid-cards { grid-template-columns: repeat(4, 1fr); } }
/* Ultrawide: still 4 — wider gaps */
@media (min-width: 1800px) { .grid-cards { gap: var(--space-8) var(--space-6); } }

.card { display: flex; flex-direction: column; height: 100%; }
.grid-cards .card__body { flex: 1; display: flex; flex-direction: column; }
.grid-cards .card__meta { margin-top: auto; }    /* push meta to bottom so all cards align */
.card__media { display: block; overflow: hidden; background: var(--tint); }
.card__media img {
  aspect-ratio: 16/9; object-fit: contain; width: 100%;
  transition: transform 400ms ease;
}
.card:hover .card__media img { transform: scale(1.02); }
.card__body { padding-top: var(--space-4); }
.card__kicker {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-decoration: none;
  margin-bottom: var(--space-2);
  transition: color var(--t-fast);
}
.card__kicker:hover { color: var(--accent); }
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0 0 var(--space-3);
}
.card__title a { text-decoration: none; }
.card__title a:hover { color: var(--accent); }
.card__dek {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 var(--space-3);
}
.card__meta {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin: 0;
}
.card__dot { margin: 0 0.4em; opacity: .5; }
.card--hero .card__title { font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl)); }
.card--compact { flex-direction: row; gap: var(--space-4); align-items: start; }
.card--compact .card__media { width: 110px; flex-shrink: 0; }
.card--compact .card__media img { aspect-ratio: 1/1; }
.card--compact .card__body { padding-top: 0; }
.card--compact .card__title { font-size: var(--fs-base); }
.card--compact .card__dek { display: none; }

/* Contents grid — typography-only "By topic" block.
   Looks like a magazine table of contents: numbered, hairline-separated,
   no images. Calmer than the previous photo grid and gives Foreign Affairs
   gravitas. */
.contents-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: var(--hair);
}
@media (max-width: 700px) { .contents-grid { grid-template-columns: 1fr; } }

.contents-item {
  border-bottom: var(--hair);
}
.contents-item:nth-child(odd) { border-right: var(--hair); }
@media (max-width: 700px) {
  .contents-item:nth-child(odd) { border-right: 0; }
}
.contents-item__link {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  align-items: start;
  gap: var(--space-5);
  padding: var(--space-6) var(--space-5) var(--space-6) var(--space-3);
  text-decoration: none;
  color: inherit;
  transition: background var(--t-fast);
}
.contents-item__link:hover { background: var(--tint); }
.contents-item__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.contents-item__body { display: block; }
.contents-item__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.contents-item__link:hover .contents-item__title { color: var(--accent); }
.contents-item__latest {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-sm);
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: var(--space-3);
}
.contents-item__count {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.section--contents .section__head { border-bottom: 0; margin-bottom: var(--space-5); }

/* Quote band — three random quotes from the 3,000+ archive.
   Sits between Latest Interviews and Wisdom Series. */
.quote-band {
  background: var(--tint);
  padding: clamp(var(--space-6), 5vw, var(--space-9)) 0;
  border-bottom: var(--hair);
}
.quote-band__head {
  text-align: center;
  margin-bottom: clamp(var(--space-5), 3vw, var(--space-7));
  max-width: 40ch;
  margin-inline: auto;
}
.quote-band__head h2 {
  font-size: clamp(var(--fs-xl), 2.6vw, var(--fs-2xl));
  margin: var(--space-2) 0 0;
  letter-spacing: -0.012em;
}
.quote-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(var(--space-5), 3vw, var(--space-7));
  max-width: 96rem;
  margin: 0 auto;
}
.quote-band__item {
  margin: 0;
  padding: 0 var(--space-3);
  position: relative;
}
.quote-band__item::before {
  content: '"';
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.quote-band__item blockquote {
  margin: 0 0 var(--space-4);
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.004em;
}
.quote-band__item figcaption {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.quote-band__name {
  display: inline-block;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}
.quote-band__name:hover { color: var(--accent); }
.quote-band__bio {
  display: block;
  margin-top: 4px;
  font-style: italic;
  letter-spacing: 0;
  color: var(--ink-mute);
}
.quote-band__more {
  text-align: center;
  margin: clamp(var(--space-5), 3vw, var(--space-7)) 0 0;
}
@media (max-width: 900px) {
  .quote-band__grid { grid-template-columns: 1fr; gap: var(--space-6); max-width: 32rem; }
}

/* Quote of the moment — Foreign Affairs / Atlantic pull-quote treatment.
   Big serif italic, centered, plenty of vertical air. */
.quote-strip {
  padding: clamp(var(--space-7), 7vw, var(--space-10)) 0;
  border-bottom: var(--hair);
  background: var(--tint);
  text-align: center;
  position: relative;
}
.quote-strip::before {
  content: '"';
  position: absolute; top: 0.1em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 0.8;
  color: var(--ink);
  opacity: 0.07;
  pointer-events: none;
}
.quote-strip blockquote {
  border: 0; padding: 0; margin: 0 auto;
  max-width: 32em;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.008em;
  position: relative;
}
.quote-strip cite {
  display: block; margin-top: var(--space-5);
  font-family: var(--font-ui);
  font-style: normal;
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.quote-strip cite a { color: var(--ink); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--accent); }
.quote-strip cite a:hover { color: var(--accent); }

/* Wisdom grid */
.wisdom-grid { padding: var(--space-8) 0; border-bottom: var(--hair); }
.wisdom-grid__head { margin-bottom: var(--space-6); max-width: var(--measure); }
.wisdom-grid__head h2 { font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl)); margin-bottom: var(--space-3); }
.wisdom-grid__lede { color: var(--ink-soft); font-style: italic; }
.wisdom-grid__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-3);
  counter-reset: wisdom;
}
@media (max-width: 1200px) { .wisdom-grid__list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .wisdom-grid__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .wisdom-grid__list { grid-template-columns: 1fr; } }
.wisdom-grid__list a {
  display: block;
  padding: var(--space-5);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  line-height: 1.3;
  color: var(--ink);
  border: var(--hair);
  position: relative;
  transition: background var(--t), border-color var(--t);
}
.wisdom-grid__list a::before {
  counter-increment: wisdom;
  content: counter(wisdom, decimal-leading-zero);
  display: block;
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.wisdom-grid__list a:hover { background: var(--tint); border-color: var(--ink); }
.wisdom-grid__more { margin-top: var(--space-6); }

/* Notable interviewees grid */
.notable {
  padding: var(--space-8) 0;
  border-bottom: var(--hair);
}
.notable__head { display: flex; align-items: end; justify-content: space-between; margin-bottom: var(--space-6); flex-wrap: wrap; gap: var(--space-4); }
/* === Voices in the archive — curated grouped editorial block === */
.notable__groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--space-5), 3vw, var(--space-7));
  margin-top: var(--space-5);
}

.notable__group {
  border-top: 1px solid var(--rule);
  padding-top: clamp(var(--space-4), 2vw, var(--space-5));
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: clamp(var(--space-3), 2vw, var(--space-5));
  align-items: start;
}
.notable__group-label {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.4;
  padding-top: 0.2em;
}
.notable__group-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0.35em 1.1em;
  font-family: var(--font-serif);
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.45;
}
.notable__group-list li {
  position: relative;
}
.notable__group-list li::after {
  content: '·';
  margin-left: 1.1em;
  color: var(--ink-quiet);
}
.notable__group-list li:last-child::after { display: none; }
.notable__group-list a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.notable__group-list a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Tablet: collapse label into its own row above the list */
@media (max-width: 800px) {
  .notable__group { grid-template-columns: 1fr; gap: var(--space-3); }
  .notable__group-list { font-size: 1rem; }
}

/* Newsletter strip */
.newsletter {
  padding: var(--space-8) 0;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  border: 0;
}
.newsletter h2 { color: var(--paper); font-style: italic; font-weight: 500; }
.newsletter p { color: rgba(255,255,255,0.7); max-width: 40ch; margin-inline: auto; }
.newsletter form {
  margin-top: var(--space-5);
  display: flex; gap: var(--space-3);
  max-width: 30rem; margin-inline: auto;
}
.newsletter input[type="email"] {
  flex: 1;
  padding: 0.9em 1.2em;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--paper);
  font-family: var(--font-ui);
}
.newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter button {
  padding: 0.9em 1.6em;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.newsletter button:hover { background: var(--accent-soft); color: var(--ink); }

/* Hide the te-brevo plugin's auto-injected footer signup strip site-wide.
   Our own editorial .newsletter section already calls [te_signup source="footer"]
   so the Brevo functionality is preserved — we just don't render the form twice. */
.te-brevo-footer-section { display: none !important; }

/* =================================================================
   Brevo "post-end" form — restyled to match the editorial theme.
   Sits inside .article-body and inherits its measure-width column.
   Overrides the plugin's blue-bordered cream box with a clean
   hairline-framed editorial card that reads as a deliberate pause
   between content sections.
   ================================================================= */
.te-brevo-postend {
  margin: 3.5rem 0 !important;
  padding: 2rem 2.25rem !important;
  background: var(--tint) !important;
  border: 0 !important;
  border-top: 1px solid var(--rule) !important;
  border-bottom: 1px solid var(--rule) !important;
  border-left: 3px solid var(--accent) !important;
  border-radius: 0 !important;
  display: block !important;
}

.te-brevo-postend > h2,
.te-brevo-postend #te-brevo-postend-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.35rem, 2vw, 1.65rem) !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: -0.012em !important;
  line-height: 1.15 !important;
  color: var(--ink) !important;
  margin: 0 0 0.5rem !important;
  text-align: left !important;
  text-transform: none !important;
}

.te-brevo-postend > p {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  color: var(--ink-soft) !important;
  margin: 0 0 1.25rem !important;
  text-align: left !important;
}

/* The form itself — same pinned-height treatment as the homepage version */
.te-brevo-postend .te-brevo-form,
.te-brevo-postend form.te-brevo-form {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.te-brevo-postend .te-brevo-form__label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.te-brevo-postend .te-brevo-form__row {
  display: flex !important;
  gap: 0.75rem !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.te-brevo-postend .te-brevo-form__input,
.te-brevo-postend .te-brevo-form__submit,
.te-brevo-postend input[type="email"].te-brevo-form__input,
.te-brevo-postend button.te-brevo-form__submit {
  box-sizing: border-box !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  padding: 0 1.2em !important;
  font-size: 0.95rem !important;
  line-height: 1 !important;
  border-radius: 0 !important;
  border-width: 1px !important;
  border-style: solid !important;
  margin: 0 !important;
  vertical-align: middle !important;
}
.te-brevo-postend .te-brevo-form__input {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  background: var(--paper) !important;
  border-color: var(--rule) !important;
  color: var(--ink) !important;
  font-family: var(--font-serif) !important;
}
.te-brevo-postend .te-brevo-form__input::placeholder { color: var(--ink-mute) !important; }
.te-brevo-postend .te-brevo-form__input:focus {
  outline: none !important;
  border-color: var(--ink) !important;
  box-shadow: 0 0 0 2px rgba(14,79,74,0.15) !important;   /* teal halo */
}
.te-brevo-postend .te-brevo-form__submit {
  flex: 0 0 auto !important;
  background: var(--ink) !important;
  color: var(--paper) !important;
  border-color: var(--ink) !important;
  font-family: var(--font-ui) !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.te-brevo-postend .te-brevo-form__submit:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.te-brevo-postend .te-brevo-form__message {
  margin-top: 0.75rem !important;
  font-family: var(--font-ui) !important;
  font-size: var(--fs-sm) !important;
  color: var(--ink-mute) !important;
}
.te-brevo-postend .te-brevo-form__message.is-success { color: var(--accent) !important; }
.te-brevo-postend .te-brevo-form__message.is-error { color: var(--accent-hot) !important; }

@media (max-width: 480px) {
  .te-brevo-postend { padding: 1.5rem !important; margin: 2.5rem 0 !important; }
  .te-brevo-postend .te-brevo-form__row { flex-direction: column !important; }
  .te-brevo-postend .te-brevo-form__submit { width: 100% !important; }
}

/* === Brevo form rendered inside .newsletter ============================
   The plugin emits its own classes with their own padding/heights, plus
   inline padding/font-family that we must explicitly cancel. The selectors
   below use the same specificity as the plugin's footer-section overrides
   plus !important across the board so heights are pixel-pinned. */
/* Center the Brevo form within the newsletter section.
   The plugin wraps its form in <div class="te-brevo-landing">. Using
   display:contents removes the wrapper from the layout tree — the form then
   becomes a direct child of .wrap-narrow and is centred via plain margin:auto.
   This is the same trick that fixed the header buttons; works because
   .wrap-narrow is a normal block container. */
.newsletter .te-brevo-landing {
  display: contents !important;
}
.newsletter .te-brevo-form,
.newsletter form.te-brevo-form,
.newsletter form[class*="te-brevo-form"] {
  display: block !important;
  width: 100% !important;
  max-width: 32rem !important;
  margin-top: var(--space-5) !important;
  margin-right: auto !important;
  margin-bottom: 0 !important;
  margin-left: auto !important;
  text-align: left !important;     /* form contents don't need centering */
  padding: 0 !important;
  float: none !important;
  position: static !important;
}
.newsletter .te-brevo-form__row {
  display: flex !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: var(--space-3) !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
}
.newsletter .te-brevo-form__input {
  flex: 1 1 0% !important;          /* grow with zero basis — fills row width */
  min-width: 0 !important;          /* allow shrinking below intrinsic size */
}
.newsletter .te-brevo-form__row {
  display: flex !important;
  gap: var(--space-3) !important;
  align-items: stretch !important;
  flex-wrap: nowrap !important;
}
.newsletter .te-brevo-form__input,
.newsletter .te-brevo-form__submit,
.newsletter input[type="email"].te-brevo-form__input,
.newsletter button.te-brevo-form__submit {
  box-sizing: border-box !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  padding: 0 1.2em !important;
  font-size: 0.95rem !important;
  line-height: 1 !important;
  border-radius: 0 !important;
  margin: 0 !important;
  vertical-align: middle !important;
  border-width: 1px !important;
  border-style: solid !important;
}
.newsletter .te-brevo-form__input {
  flex: 1 1 auto !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.22) !important;
  color: var(--paper) !important;
  font-family: var(--font-serif) !important;
}
.newsletter .te-brevo-form__input::placeholder { color: rgba(255,255,255,0.5) !important; }
.newsletter .te-brevo-form__input:focus {
  outline: none !important;
  border-color: var(--paper) !important;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15) !important;
}
.newsletter .te-brevo-form__submit {
  flex: 0 0 auto !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  border-color: var(--paper) !important;
  font-family: var(--font-ui) !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.newsletter .te-brevo-form__submit:hover { background: var(--accent-soft) !important; border-color: var(--accent-soft) !important; }

.newsletter .te-brevo-form__message {
  margin-top: var(--space-3) !important;
  font-family: var(--font-ui) !important;
  font-size: var(--fs-sm) !important;
  color: rgba(255,255,255,0.7) !important;
}

@media (max-width: 560px) {
  .newsletter .te-brevo-form__row { flex-direction: column !important; }
  .newsletter .te-brevo-form__submit { width: 100% !important; }
}

/* 7. SINGLE INTERVIEW ───────────────────────────────────────────── */
.reading-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--accent);
  z-index: 100;
  transition: width 80ms linear;
}

.article-head {
  padding: clamp(var(--space-7), 8vw, var(--space-9)) clamp(1rem, 4vw, 2rem) var(--space-7);
  text-align: center;
  border-bottom: var(--hair);
}
.article-head .eyebrow { color: var(--accent); }
.article-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.024em;
  max-width: 22ch;
  margin: var(--space-4) auto var(--space-5);
  line-height: 1.02;
  color: var(--ink);
}
.article-dek {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(var(--fs-md), 2.2vw, var(--fs-lg));
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0 auto;
}
.article-meta {
  margin-top: var(--space-6);
  display: flex; justify-content: center; gap: var(--space-3); flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.article-meta span + span::before { content: '·'; margin-right: var(--space-3); color: var(--ink-quiet); }
.article-meta strong { font-weight: 600; color: var(--ink); }

/* Secondary meta — "Nth conversation with X" — adds archive-depth signal */
.article-meta-secondary {
  margin: var(--space-3) auto 0;
  max-width: 50ch;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--ink-mute);
  line-height: 1.5;
}
.article-meta-secondary a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--accent); }
.article-meta-secondary a:hover { color: var(--accent); }
.article-meta-secondary strong { color: var(--ink); font-style: normal; font-weight: 600; font-family: var(--font-display); }

.article-hero {
  margin: var(--space-7) auto;
  max-width: 56rem;          /* ~900px — editorial cap, sits well above the 38rem body column */
  padding-inline: clamp(0px, 4vw, 3rem);
}
/* Article hero: display the image at its natural aspect — no cropping ever.
   The interview is the product; we trust the source artwork. */
.article-hero img { width: 100%; height: auto; }
.article-hero figcaption { font-family: var(--font-ui); font-size: var(--fs-xs); color: var(--ink-mute); margin-top: var(--space-3); text-align: center; }
/* Edge-to-edge hero on phones — looks more cinematic and saves vertical space */
@media (max-width: 600px) {
  .article-hero { margin-inline: 0; padding-inline: 0; }
  /* Stay at 16:9 on mobile too — matches the source, no clipping */
}

.article-body {
  max-width: var(--measure);
  margin: var(--space-8) auto;
  padding-inline: clamp(1.25rem, 6vw, 1.5rem);
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 1.4vw, 1.2rem);    /* Slightly fluid for tablet/desktop */
  line-height: 1.72;
  font-feature-settings: "kern", "liga", "onum";
  color: var(--ink);
}

/* Defensive: ensure main/article aren't accidentally turned into grid/flex
   containers by user content — they should always be normal block flow. */
.site-main, article.page, .article-body {
  display: block;
}
.article-body::after {
  content: '';
  display: table;
  clear: both;
}

/* Static pages (Contact, About, Press, etc.) need a wider column than the
   38rem reading measure — they often contain forms, tables, or embeds.
   Single posts/interviews keep the narrow measure for reading. */
body.page .article-body { max-width: 56rem; }
body.page .article-body p,
body.page .article-body ul,
body.page .article-body ol,
body.page .article-body h2,
body.page .article-body h3,
body.page .article-body h4 { max-width: var(--measure); margin-inline: auto; }

/* Responsive embeds — iframes (Google Forms, YouTube, etc.) and tables fit the body */
.article-body iframe,
.article-body embed,
.article-body object {
  display: block;
  max-width: 100%;
  width: 100%;
  border: 0;
  margin: var(--space-5) auto;
}
.article-body table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: var(--fs-sm);
  margin: var(--space-5) 0;
}
.article-body table th,
.article-body table td {
  padding: 0.6em 0.8em;
  border-bottom: 1px solid var(--rule);
  text-align: left;
}
.article-body table th { font-weight: 600; color: var(--ink); }

/* Google Forms iframes specifically — they tend to be ~640px wide with fixed
   height. Keep aspect-friendly on narrow viewports. */
.article-body iframe[src*="docs.google.com/forms"] {
  min-height: 800px;
}
.article-body p { margin: 0 0 1.4em; hyphens: auto; }
/* Drop cap — scoped to DIRECT children of .article-body so it doesn't leak into
   nested elements (e.g. the Brevo post-end aside which also contains a <p>). */
.article-body > p:first-of-type::first-letter,
.article-body > .e-content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3em, 9vw, 4.5em);
  float: left;
  line-height: 0.85;
  padding: 0.05em 0.12em 0 0;
  color: var(--accent);
}
/* Disable drop cap on very narrow phones — it overflows and looks awkward */
@media (max-width: 380px) {
  .article-body > p:first-of-type::first-letter,
  .article-body > .e-content > p:first-of-type::first-letter { font-size: 1em; float: none; padding: 0; color: inherit; }
}
.article-body h2 { font-size: var(--fs-xl); margin-top: 2em; }
.article-body h3 { font-size: var(--fs-lg); margin-top: 1.8em; color: var(--ink-soft); }
.article-body a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--accent-soft); text-decoration-thickness: 1.5px; text-underline-offset: 4px; }
.article-body a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.article-body blockquote {
  margin-block: 2em; padding: 0 0 0 1.5em;
  border-left: 3px solid var(--accent); font-style: italic;
  font-family: var(--font-display);
  font-size: 1.3em;
  line-height: 1.4;
  color: var(--ink);
}
.article-body figure { margin: 2em 0; }
.article-body figure img { width: 100%; }
.article-body figcaption { font-family: var(--font-ui); font-size: var(--fs-sm); color: var(--ink-mute); margin-top: var(--space-3); text-align: center; }
.article-body ul, .article-body ol { padding-left: 1.4em; margin: 0 0 1.4em; }
.article-body li + li { margin-top: 0.6em; }
.article-body hr { border: 0; height: 1px; background: var(--rule); margin: 2.5em auto; width: 60%; }

.article-body .pull-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(var(--fs-lg), 3vw, var(--fs-2xl));
  line-height: 1.25;
  color: var(--ink);
  border: 0;
  padding: 0;
  margin: 1.5em 0 1.5em -2em;
  max-width: 28ch;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-block: 0.8em;
}
@media (max-width: 800px) { .article-body .pull-quote { margin-left: 0; max-width: none; } }

/* Sticky share rail (desktop) */
.share-rail {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: var(--space-3);
  margin: 0 0 0 -7rem;
  float: left;
  width: 5rem;
  height: 0;
}
.share-rail a {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: var(--hair);
  color: var(--ink-mute);
  text-decoration: none;
  transition: all var(--t-fast);
}
.share-rail a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
@media (max-width: 1000px) { .share-rail { display: none; } }
/* Smaller margin on mid-sized desktops so the rail doesn't get clipped */
@media (max-width: 1200px) and (min-width: 1001px) { .share-rail { margin-left: -5.5rem; } }

/* Article footer: byline, tags, related */
.article-foot {
  max-width: var(--measure);
  margin: var(--space-8) auto;
  padding: var(--space-7) var(--space-5) 0;
  border-top: var(--hair);
}
.article-foot__byline {
  display: flex; gap: var(--space-4); align-items: center;
  font-family: var(--font-ui); font-size: var(--fs-sm); color: var(--ink-mute);
}
.article-foot__byline strong { font-weight: 600; color: var(--ink); font-family: var(--font-display); font-size: var(--fs-md); }
.article-foot__tags {
  margin-top: var(--space-6);
  font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase;
}
.article-foot__tags a {
  display: inline-block; margin: 0 0.3em 0.3em 0;
  padding: 0.4em 0.9em;
  border: var(--hair); border-radius: 999px;
  color: var(--ink-mute); text-decoration: none;
}
.article-foot__tags a:hover { color: var(--ink); border-color: var(--ink); }

.related { padding: var(--space-8) 0; border-top: var(--hair); }
.related__head { text-align: center; margin-bottom: var(--space-6); }
.prev-next {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  border-top: var(--hair);
  border-bottom: var(--hair);
  padding-block: var(--space-6);
  max-width: var(--wrap); margin-inline: auto;
}
.prev-next a { text-decoration: none; display: block; padding: var(--space-4) var(--space-5); }
.prev-next a small { display: block; font-family: var(--font-ui); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-mute); margin-bottom: var(--space-2); }
.prev-next a strong { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-md); color: var(--ink); }
.prev-next .next { text-align: right; border-left: var(--hair); }
.prev-next a:hover strong { color: var(--accent); }
@media (max-width: 600px) { .prev-next { grid-template-columns: 1fr; } .prev-next .next { border-left: 0; border-top: var(--hair); text-align: left; } }

/* 8. ARCHIVE / DISCOVERY ────────────────────────────────────────── */
.archive-head { padding: var(--space-8) 0 var(--space-6); border-bottom: var(--hair); text-align: center; }
.archive-head h1 { font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl)); margin-bottom: var(--space-3); }
.archive-head .archive-desc { color: var(--ink-soft); max-width: 50ch; margin-inline: auto; font-style: italic; }
.archive-head .archive-count { margin-top: var(--space-4); font-family: var(--font-ui); font-size: var(--fs-sm); color: var(--ink-mute); letter-spacing: 0.06em; text-transform: uppercase; }

.facet-bar {
  display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center;
  padding: var(--space-5) 0;
  border-bottom: var(--hair);
}
.facet-bar a {
  font-family: var(--font-ui); font-size: var(--fs-sm); font-weight: 500;
  padding: 0.4em 1em; border-radius: 999px; border: var(--hair);
  text-decoration: none; color: var(--ink-soft);
  transition: all var(--t-fast);
}
.facet-bar a:hover { color: var(--ink); border-color: var(--ink); }
.facet-bar a.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.archive-list { padding: var(--space-7) 0; }
.pagination {
  display: flex; justify-content: center; gap: var(--space-2); margin: var(--space-7) 0; flex-wrap: wrap;
}
.pagination a, .pagination span {
  min-width: 2.4em; padding: 0.4em 0.8em; text-align: center;
  font-family: var(--font-ui); font-size: var(--fs-sm);
  border: var(--hair); text-decoration: none;
  color: var(--ink-soft);
  transition: all var(--t-fast);
}
.pagination a:hover { color: var(--ink); border-color: var(--ink); }
.pagination .current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pagination .dots { border: 0; }

/* Alphabetical interviewee index */
.alpha-index {
  max-width: var(--wrap);
  margin: var(--space-6) auto;
  padding: var(--space-4) var(--space-5);
  display: flex; gap: 0.4em; flex-wrap: wrap; justify-content: center;
  border-top: var(--hair); border-bottom: var(--hair);
}
.alpha-index a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  width: 2em; height: 2em;
  display: inline-grid; place-items: center;
  text-decoration: none;
  color: var(--ink-soft);
  transition: all var(--t-fast);
}
.alpha-index a:hover, .alpha-index a.is-active { background: var(--ink); color: var(--paper); }

.alpha-section {
  border-top: var(--hair);
  padding: var(--space-6) 0;
  display: grid; grid-template-columns: 6rem 1fr;
  gap: var(--space-5);
}
.alpha-section h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: var(--fs-3xl); color: var(--accent);
  margin: 0; line-height: 1;
}
.alpha-section ul { list-style: none; margin: 0; padding: 0; columns: 3; column-gap: var(--space-5); }
.alpha-section li { margin-bottom: var(--space-3); break-inside: avoid; }
.alpha-section a { text-decoration: none; font-family: var(--font-serif); font-size: var(--fs-base); color: var(--ink-soft); padding: 4px 0; display: inline-block; }
.alpha-section a:hover { color: var(--ink); border-bottom: 1px solid var(--accent); }
/* Bigger screens: 4 columns */
@media (min-width: 1400px) { .alpha-section ul { columns: 4; } }
/* Tablet: keep horizontal layout but drop to 2 columns */
@media (max-width: 1000px) { .alpha-section ul { columns: 2; } }
/* Phone: stack header above list, single column with bigger tap targets */
@media (max-width: 600px) {
  .alpha-section { grid-template-columns: 1fr; gap: var(--space-3); }
  .alpha-section ul { columns: 1; }
  .alpha-section a { padding: 8px 0; font-size: var(--fs-md); }
}

/* 9. QUOTE GALLERY ──────────────────────────────────────────────── */
.quote-hero {
  background: var(--ink); color: var(--paper);
  padding: var(--space-9) var(--space-5);
  text-align: center;
}
.quote-hero blockquote {
  border: 0; padding: 0; margin: 0 auto;
  max-width: 32em;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(var(--fs-lg), 3vw, var(--fs-2xl));
  line-height: 1.4;
  color: var(--paper);
}
.quote-hero cite { display: block; margin-top: var(--space-5); font-family: var(--font-ui); font-style: normal; font-size: var(--fs-sm); letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.quote-hero cite a { color: var(--paper); text-decoration: none; border-bottom: 1px solid var(--accent-soft); }

.quote-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  max-width: var(--wrap);
  margin: var(--space-7) auto;
  padding-inline: var(--space-5);
}
.quote-card {
  background: var(--bg);
  border: var(--hair);
  padding: var(--space-6);
}
.quote-card__mark { font-family: var(--font-display); font-size: 3em; line-height: 0.6; color: var(--accent-soft); display: block; margin-bottom: var(--space-3); }
.quote-card__text { font-family: var(--font-display); font-style: italic; font-size: var(--fs-md); line-height: 1.5; color: var(--ink); margin: 0 0 var(--space-4); }
.quote-card__name { font-family: var(--font-ui); font-size: var(--fs-sm); font-weight: 600; color: var(--ink); text-decoration: none; }
.quote-card__bio { font-family: var(--font-ui); font-size: var(--fs-xs); color: var(--ink-mute); margin-top: 2px; }
@media (max-width: 700px) { .quote-grid { grid-template-columns: 1fr; } }

/* Breadcrumbs — sentence case, restrained letter-spacing.
   The all-caps version felt shouty; this matches Foreign Affairs / Economist. */
.breadcrumbs {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin-bottom: var(--space-5);
}
.breadcrumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.5em;
  justify-content: center;
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.5em; }
.breadcrumbs a { color: var(--ink-mute); text-decoration: none; border-bottom: 1px solid transparent; transition: color var(--t-fast), border-color var(--t-fast); }
.breadcrumbs a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.breadcrumbs [aria-current="page"] { color: var(--ink); }
.breadcrumbs__sep { color: var(--ink-quiet); }
/* On archive pages where breadcrumbs sit in a centered head, leave the centered layout */
.archive-head .breadcrumbs ol { justify-content: center; }
/* On single posts, breadcrumbs are above the title, also centered */
.article-head .breadcrumbs ol { justify-content: center; }

/* In-article TOC (built by reading.js for >= 5 H2s)
   - Mobile/tablet: inline at top of article
   - Desktop ≥ 1200px: floats out as a sticky right-rail card */
.article-toc {
  border: var(--hair);
  background: var(--tint);
  padding: var(--space-5);
  margin: 0 0 var(--space-7);
}
.article-toc .eyebrow { margin-bottom: var(--space-3); }
.article-toc ol { list-style: decimal-leading-zero; padding-left: 2em; margin: 0; font-family: var(--font-ui); font-size: var(--fs-sm); }
.article-toc li { margin-bottom: var(--space-2); }
.article-toc a { text-decoration: none; color: var(--ink-soft); }
.article-toc a:hover, .article-toc a.is-active { color: var(--accent); font-weight: 600; }

@media (min-width: 1200px) {
  .article-toc {
    position: sticky;
    top: 100px;
    float: right;
    width: 14rem;
    margin: 0 -16rem 0 var(--space-7);  /* push into the right margin */
    background: transparent;
    border: 0;
    border-left: var(--hair);
    padding: 0 var(--space-4);
  }
  .article-toc ol { font-size: var(--fs-xs); line-height: 1.4; }
}
@media (min-width: 1500px) {
  .article-toc { margin-right: -18rem; width: 16rem; }
}

/* 10. UTILITIES ─────────────────────────────────────────────────── */
.vh { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.muted { color: var(--ink-mute); }
.is-hidden { display: none !important; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* View Transitions — buttery page navigation in supporting browsers (Chromium today). */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: reduce) { @view-transition { navigation: none; } }

/* Back-to-top button (long interviews) */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  width: 48px; height: 48px;
  display: none;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  z-index: 70;
  transition: transform var(--t-fast), opacity var(--t-fast);
  opacity: 0;
}
.to-top.is-visible { display: grid; opacity: 0.9; }
.to-top:hover { transform: translateY(-2px); opacity: 1; background: var(--accent); }
.to-top svg { width: 20px; height: 20px; }
@media (hover: none) { .to-top { width: 52px; height: 52px; } }

/* 11. PRINT ─────────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .share-rail, .related, .prev-next, .newsletter, .reading-progress, .search-overlay { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  a { color: #000; text-decoration: underline; }
  .article-body { max-width: none; }
}
