@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');
/* ============================================================
   LUMEN, Design System v2 (bento editorial)
   Palette & type per LUMEN_GUIDELINES.md; layout per bento ref.
   ============================================================ */

:root {
  /* Blue "intelligence" palette. White surfaces, ink text, cerulean accent.
     Each color has one job; see CONTRAST notes per token. */
  --bg: #FFFFFF;            /* primary background + surface fills */
  --bg-card: #F4F8FA;       /* faint blue-white surface (chips, search, tiles) */
  --bg-raised: #E9F1F5;     /* slightly deeper surface (image wells, hover) */
  --text-primary: #00171F;  /* ink black: headlines */
  --text-body: #00171F;     /* ink black: body text */
  --text-muted: #4A6B7C;    /* derived muted, 5.70:1 on white, passes AA */
  --accent: #007EA7;        /* cerulean: the accent, 4.62:1 on white. Verified / act here */
  --accent-dark: #006A8E;   /* darkened cerulean for solid hover where text stays white */
  --accent-bright: #00A8E8; /* fresh sky: hover/focus/active/glow ONLY, never text on white */
  --accent-bg: #E6F4FA;     /* faint cerulean tint for subtle accent fills */
  --surface-dark: #003459;  /* deep space blue: footer + dark blocks */
  --ink: #00171F;           /* deepest dark */
  --rule: #D5E0E6;          /* WSJ hairline rule (light blue-gray) */
  --border: #DCE6EB;        /* light hairline */
  --border-strong: #C2D2DB; /* stronger hairline */
  --success: #2E7D32;       /* status green (unchanged, not part of warm palette) */
  --white: #FFFFFF;
  --shadow: 0 1px 4px rgba(0, 23, 31, 0.12); /* WSJ: single subtle shadow, lead image only */

  /* dark-surface tokens (footer / future terminal): text flips to white, accent to fresh sky */
  --on-dark: #FFFFFF;
  --on-dark-muted: #AFC4CF;
  --accent-on-dark: #00A8E8;

  /* repurposed (ticker removed): kept so any stale ref stays in-palette */
  --ticker-bg: #003459;
  --ticker-text: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Montserrat', ui-sans-serif, system-ui, sans-serif;

  --max-width: 1200px;
  --article-width: 700px;
  --nav-height: 64px;
  --ticker-height: 44px;
  --radius: 4px;            /* WSJ: blocks 4px */
  --radius-sm: 4px;
  --radius-btn: 6px;        /* buttons 6px */

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
/* inline text links: Deep Space Blue (12.8:1 on white), hover to cerulean (4.6:1) */
a { color: var(--surface-dark); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--text-primary); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

/* underline animation for inline links */
.uline {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.35s var(--ease);
}
.uline:hover { background-size: 100% 1px; }

/* headline word highlight, subtle editorial accent underline, not a block */
mark.hl {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 100% 0.09em;
  color: inherit;
  padding: 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ------------------------------------------------------------
   Scroll reveal + motion
------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@keyframes pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.popped { animation: pop 0.35s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ------------------------------------------------------------
   Navigation
------------------------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-height);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: 0 6px 24px -14px rgba(0, 23, 31, 0.28); }
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; gap: 28px;
}
.nav-logo {
  font-family: var(--font-display); font-weight: 700;
  font-size: 23px; color: var(--accent); margin-right: 8px;
}
.nav-links { display: flex; gap: 22px; flex: 1; }
.nav-links a { font-size: 13px; color: var(--text-body); white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-signin { font-size: 13px; color: var(--text-body); }
.nav-board { font-size: 13px; color: var(--text-body); }
.nav-board:hover { color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius-btn);
  padding: 10px 22px; cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}
/* hover lifts to Fresh Sky; text flips to ink so the pairing stays AA (6.9:1) */
.btn:hover { background: var(--accent-bright); color: var(--ink); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn.loading, .btn:disabled { cursor: default; opacity: 0.85; }
.btn.loading:hover { transform: none; background: var(--accent); color: var(--white); }
.btn-spinner {
  width: 14px; height: 14px; display: inline-block; flex: none;
  border: 2px solid rgba(255, 255, 255, 0.4); border-top-color: var(--white);
  border-radius: 50%; animation: btn-spin 0.6s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-ghost:hover { background: var(--accent-bg); color: var(--accent-dark); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.arrow-btn {
  width: 34px; height: 34px; border-radius: var(--radius-btn);
  background: var(--accent); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; flex: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.25s var(--ease);
}
a:hover .arrow-btn, .arrow-btn:hover { background: var(--accent-bright); color: var(--ink); transform: translate(2px, -2px); }

/* ------------------------------------------------------------
   Homepage masthead strip (proof statement as a WSJ dateline)
------------------------------------------------------------ */
.standard-band {
  border-top: 1px solid var(--rule);
  border-bottom: 2px solid var(--ink);
  padding: 9px 40px;
  text-align: center;
}
.proof-statement {
  font-family: var(--font-mono); font-size: 11px; line-height: 1.4;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin: 0;
}

/* ------------------------------------------------------------
   Lumenified WSJ front page: dense grid, hairline rules, kickers
------------------------------------------------------------ */
/* shared kicker: Montserrat mono, accent, above every headline */
.kicker {
  display: block; font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 7px;
}
.kicker.muted { color: var(--text-muted); }
/* mono meta line: byline, date, evidence tags */
.meta-mono {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--text-muted);
}
.meta-mono .tier { color: var(--accent); }
/* hairline rules */
.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.rule-major { border: 0; border-top: 2px solid var(--ink); margin: 26px 0 22px; }

.front { padding: 24px 0 8px; }
.front-grid {
  display: grid; grid-template-columns: 2.05fr 1.4fr 1fr; gap: 0;
}
.front-lead { padding-right: 30px; min-width: 0; }
.front-secondary { padding: 0 26px; border-left: 1px solid var(--rule); min-width: 0; }
.verified-rail { padding-left: 26px; border-left: 1px solid var(--rule); min-width: 0; }

/* dominant lead */
.lead-hed { font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 46px); line-height: 1.06; letter-spacing: -0.01em; }
.lead-hed a { color: var(--ink); }
.lead-hed a:hover { color: var(--accent); }
.lead-dek { font-family: var(--font-body); font-size: 18px; line-height: 1.68; max-width: 68ch; color: var(--text-body); margin-top: 12px; }
.lead-byline { margin-top: 12px; }
.lead-fig { margin-top: 16px; }
.lead-fig img { width: 100%; border-radius: 0; box-shadow: var(--shadow); }
.figcredit { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.02em; color: var(--text-muted); margin-top: 7px; }

/* secondary column: stacked, hairline separated */
.sec-item { padding: 18px 0; border-bottom: 1px solid var(--rule); }
.sec-item:first-child { padding-top: 0; }
.sec-item:last-child { border-bottom: 0; padding-bottom: 0; }
.sec-hed { font-family: var(--font-display); font-size: 20px; line-height: 1.14; }
.sec-hed a { color: var(--ink); }
.sec-hed a:hover { color: var(--accent); }
.sec-dek { font-size: 14px; line-height: 1.55; color: var(--text-body); margin: 6px 0 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* the signature: WHAT'S VERIFIED rail (modeled on What's News) */
.rail-head {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  padding-bottom: 9px; border-bottom: 2px solid var(--ink); margin-bottom: 2px;
}
.rail-list { list-style: none; margin: 0; padding: 0; }
.rail-item { border-bottom: 1px solid var(--rule); }
.rail-item:last-child { border-bottom: 0; }
.rail-item a { display: block; padding: 12px 0; }
.rail-claim { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; line-height: 1.22; color: var(--ink); }
.rail-item a:hover .rail-claim { color: var(--accent); }
.rail-tag { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.02em; color: var(--text-muted); margin-top: 6px; }
.rail-tag .tier { color: var(--accent); }

/* dense brief list below the fold */
.brief-head {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 4px;
}
.brief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 26px; }
.brief-row { padding: 16px 0; border-top: 1px solid var(--rule); }
.brief-hed { font-family: var(--font-display); font-size: 17px; line-height: 1.18; }
.brief-hed a { color: var(--ink); }
.brief-hed a:hover { color: var(--accent); }
.brief-meta { margin-top: 6px; }

/* front-page responsive: collapse columns, swap vertical rules for top rules */
@media (max-width: 980px) {
  .front-grid { grid-template-columns: 1fr 1fr; }
  .front-lead { grid-column: 1 / -1; padding-right: 0; padding-bottom: 20px; border-bottom: 2px solid var(--ink); margin-bottom: 20px; }
  .front-secondary { padding: 0 24px 0 0; border-left: 0; }
  .verified-rail { padding-left: 24px; }
  .brief-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .front-grid { grid-template-columns: 1fr; }
  .front-secondary { padding: 18px 0 0; border-top: 1px solid var(--rule); margin-top: 4px; }
  .verified-rail { padding: 18px 0 0; border-left: 0; border-top: 2px solid var(--ink); margin-top: 18px; }
  .brief-grid { grid-template-columns: 1fr; }
  .lead-dek { font-size: 16px; }
}

/* ------------------------------------------------------------
   Bento board (homepage)
------------------------------------------------------------ */
.board { padding: 28px 0 8px; }
.bento {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.panel:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border-strong); }

/* lead story */
.lead { display: flex; flex-direction: column; position: relative; }
.lead-img { display: block; overflow: hidden; aspect-ratio: 16 / 9; max-height: 460px; background: var(--bg-raised); flex: none; }
.lead-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform 12s var(--ease); }
.lead:hover .lead-img img { transform: scale(1.05); }
.lead-body { padding: 26px 30px 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.lead h1 {
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.lead h1 a { color: var(--text-primary); }
.lead h1 a:hover { color: var(--text-primary); }
.lead .lede { font-size: 17px; max-width: 56ch; }
.lead-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* side cards */
.side { display: grid; grid-template-rows: auto 1fr; gap: 18px; min-width: 0; }
.side-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; min-width: 0; }

.card-img { display: flex; flex-direction: column; }
.card-img .thumb { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: var(--bg-raised); }
.card-img .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card-img:hover .thumb img { transform: scale(1.04); }
.card-pad { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.card-text { padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.card-text h3, .card-img h3 { font-size: 20px; line-height: 1.22; }
.card-text h3 a, .card-img h3 a { color: var(--text-primary); }
.card-text .lede {
  font-size: 14px; color: var(--text-body);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* newsletter tile */
.tile-news {
  background: var(--accent-bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tile-news:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tile-news h3 { font-size: 21px; line-height: 1.15; }
.tile-news p { font-size: 13px; color: var(--text-body); }
.tile-news .nl-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); margin-top: auto; }

/* data tiles */
.tile-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 18px;
}
.tile-data {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; flex-direction: column; gap: 2px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.tile-data:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.tile-data .v { font-family: var(--font-mono); font-size: 26px; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
.tile-data .v .up { color: var(--success); font-size: 15px; }
.tile-data .l { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.tile-data a { color: inherit; display: block; }

/* compact story grid */
.compact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.card-compact { display: flex; flex-direction: column; }
.card-compact .thumb { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--bg-raised); }
.card-compact .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card-compact:hover .thumb img { transform: scale(1.04); }
.card-compact h3 {
  font-size: 17px; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-compact h3 a { color: var(--text-primary); }

/* labels & meta */
.cat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}
.meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--text-muted);
}
.meta .sep::before { content: "\00B7"; margin: 0 4px; }
.impact {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-body);
}
.impact-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }

/* ------------------------------------------------------------
   Sections below the board
------------------------------------------------------------ */
.section { padding: 72px 0 0; }
.section:last-of-type { padding-bottom: 72px; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 28px;
  border-bottom: 1px solid var(--border-strong); padding-bottom: 14px;
}
.section-title { font-size: 30px; }
.section-date { font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); }

.row-list { display: flex; flex-direction: column; }
.row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px;
  align-items: baseline; padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s var(--ease);
}
.row-rank { font-family: var(--font-mono); font-size: 20px; color: var(--accent); min-width: 28px; }
.row h3 { font-size: 21px; line-height: 1.2; }
.row h3 a { color: var(--text-primary); }
.chip-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip {
  font-size: 12px; font-weight: 500; color: var(--text-body);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 14px; cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.chip:hover { background: var(--bg-raised); transform: translateY(-1px); }
.chip.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

.human-impact {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 48px;
}
.human-impact .hi-img { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-raised); }
.human-impact .hi-img img { width: 100%; height: 100%; object-fit: cover; }
.human-impact blockquote, .article-body blockquote {
  font-family: var(--font-display); font-size: 28px; line-height: 1.35;
  color: var(--text-primary); border-left: 3px solid var(--accent);
  padding-left: 24px; font-weight: 700;
}
.quote-attr { font-size: 13px; color: var(--text-muted); margin-top: 14px; font-family: var(--font-body); }

.scroll-row { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.scroll-row > * { min-width: 300px; scroll-snap-align: start; }
.region-tag { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* newsletter banner (footer CTA) */
.newsletter {
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 48px 40px; text-align: center;
}
.newsletter h2 { font-size: 32px; margin-bottom: 8px; }
.newsletter p.sub { color: var(--text-body); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto 14px; }
.newsletter-form input {
  flex: 1; min-width: 0; font-family: var(--font-body); font-size: 14px;
  padding: 11px 16px; border: 1px solid var(--border-strong);
  border-radius: 8px; background: var(--bg); color: var(--text-primary);
}
.tile-news .newsletter-form { flex-direction: column; margin: 4px 0 8px; max-width: none; }
.side-row > * { min-width: 0; }
.newsletter .proof { font-size: 12px; color: var(--text-muted); }
.newsletter .ok { color: var(--success); font-weight: 500; font-size: 14px; }
.nl-embed { border: none; width: 100%; min-height: 120px; border-radius: 8px; }
.bd-sink { display: none; }
/* server-rendered listing (crawler/no-JS fallback; JS replaces it for users) */
.ssr-home { max-width: 760px; margin: 0 auto; padding: 48px 24px; }
.ssr-home > h1 { font-family: var(--font-display); font-size: 34px; margin-bottom: 12px; }
.ssr-intro { color: var(--text-body); margin-bottom: 32px; }
.ssr-card { padding: 20px 0; border-bottom: 1px solid var(--border); }
.ssr-card h2 { font-family: var(--font-display); font-size: 22px; line-height: 1.25; margin: 4px 0 8px; }
.ssr-card p { color: var(--text-body); margin-bottom: 6px; }
.ssr-tag { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.ssr-empty { color: var(--text-muted); padding: 24px 0; }

/* dormant ad containers (activated only when AdSense is added) */
.ad-slot { display: none; }
.ad-slot.live { display: block; margin: 32px 0; text-align: center; }

/* empty state */
.empty { text-align: center; padding: 100px 24px; }
.empty h2 { font-size: 36px; margin-bottom: 12px; }
.empty p { color: var(--text-muted); max-width: 480px; margin: 0 auto 24px; }

/* ------------------------------------------------------------
   Article page
------------------------------------------------------------ */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--accent); z-index: 200; }
.article-wrap { max-width: var(--article-width); margin: 0 auto; padding: 48px 24px; }

/* contained two-column article + sidebar (generous outer margins kept) */
.article-layout {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 48px;
}
.article-layout .article-wrap { max-width: none; margin: 0; padding: 48px 0 48px 16px; }
.article-aside { padding-top: 48px; }
.aside-sticky { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 24px; }
.aside-sticky .tile-news { margin: 0; }
.aside-block { }
.aside-title {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border-strong);
}
.aside-list { display: flex; flex-direction: column; }
.aside-item {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--border);
  color: var(--text-primary); transition: opacity 0.2s var(--ease);
}
.aside-item:last-child { border-bottom: none; }
.aside-item:hover { opacity: 0.72; }
.aside-item .cat-label { display: block; margin-bottom: 5px; }
.aside-head {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 16px; line-height: 1.25; color: var(--text-primary); margin-bottom: 6px;
}
.aside-tag { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.article-headline { font-size: clamp(36px, 5vw, 54px); line-height: 1.08; margin: 12px 0 18px; letter-spacing: -0.01em; }
.article-lede { font-size: 21px; line-height: 1.55; color: var(--text-body); margin-bottom: 22px; }
.article-meta-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
/* typographic source tag (replaces shield emoji) */
.src-tag {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--border-strong); border-radius: 4px;
  padding: 1px 6px; white-space: nowrap;
}
.byline { color: var(--text-body); font-weight: 500; }
/* inline line-icons */
.ic { display: inline-block; vertical-align: -0.18em; flex: none; }
.reaction .ic { width: 16px; height: 16px; }
.nav-search .ic { width: 17px; height: 17px; }
.article-hero { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 8px; }
.article-hero img { width: 100%; }
.caption { font-size: 12px; color: var(--text-muted); margin-bottom: 36px; }
.article-body { font-size: 19px; line-height: 1.75; }
.article-body p { margin-bottom: 26px; color: var(--text-body); }
.article-body ul { margin: 0 0 26px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote { margin: 36px 0; font-size: 26px; }
.why-matters {
  font-size: 18px; font-style: italic; color: var(--accent);
  border-left: 3px solid var(--accent); padding-left: 20px; margin: 30px 0 34px;
  line-height: 1.65;
}
.why-matters strong { font-style: normal; }
/* ------------------------------------------------------------
   Evidence panel, the verification, surfaced as the page anchor.
   Replaces the old footnote-style .data-box and collapsed
   .verify-panel. The moat is shown by default, not behind a click.
------------------------------------------------------------ */
/* The evidence card (ported from the "Evidence Card System" design). A native
   <details>, collapsed by default: the verdict header is the <summary>, the five
   checks live in .evidence-body and expand on click. No JS; content stays in the
   DOM for crawlers. --ev-flag is an amber that reads as "a flag, not a fail". */
.evidence {
  --ev-flag: #8A5E12;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin: 24px 0 40px;
  overflow: hidden;
}
.evidence[open] { background: var(--bg); }
.evidence-summary {
  list-style: none; cursor: pointer; display: grid;
  grid-template-columns: 1fr auto; align-items: center; gap: 2px 16px;
  padding: 26px 34px; border-top: 3px solid var(--accent);
}
.evidence-summary::-webkit-details-marker { display: none; }
.evidence-summary:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: -2px; }
.evidence-kicker {
  grid-column: 1; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.evidence-kicker .ev-verified { width: 15px; height: 15px; flex: none; }
.evidence-title { grid-column: 1; font-size: 28px; line-height: 1.1; margin: 8px 0 0; }
.evidence-meta {
  grid-column: 1; font-family: var(--font-mono); font-size: 11.5px;
  font-weight: 600; letter-spacing: 0.04em; color: var(--text-muted); margin-top: 8px;
}
.evidence-toggle {
  grid-column: 2; grid-row: 1 / 4; align-self: center;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); white-space: nowrap;
}
.evidence-toggle .ev-chev { width: 18px; height: 18px; flex: none; transition: transform .2s ease; }
.evidence[open] .evidence-toggle .ev-chev { transform: rotate(180deg); }
.evidence[open] .evidence-toggle-show, .evidence:not([open]) .evidence-toggle-hide { display: none; }
.evidence-body { padding: 4px 34px 30px; }
.evidence-sub { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); max-width: 60ch; margin: 0; }
.evidence-checks-head {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted);
  margin-top: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--ink);
}
.ev-check {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 15px 0; border-bottom: 1px solid var(--border);
}
.ev-status {
  width: 78px; flex: none; display: flex; flex-direction: column;
  align-items: flex-start; gap: 5px;
}
.ev-ic { width: 20px; height: 20px; }
.ev-word {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.2;
}
.ev-passed .ev-status { color: var(--success); }
.ev-flagged .ev-status { color: var(--ev-flag); }
.ev-na .ev-status { color: var(--text-muted); }
.ev-detail { flex: 1; min-width: 0; }
.ev-label {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.ev-value {
  font-family: var(--font-mono); font-size: 15px; line-height: 1.5;
  color: var(--text-primary); margin-top: 4px; font-variant-numeric: tabular-nums;
}
.ev-na .ev-value { color: var(--text-muted); }
.ev-na-pre { font-weight: 600; color: var(--text-muted); }
.evidence-foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px;
  margin-top: 22px; font-size: 13px;
}
.evidence-source { flex-basis: 100%; font-size: 13px; line-height: 1.5; color: var(--text-muted); }
.evidence-foot a {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--accent);
}
.evidence-foot a .ev-arrow { width: 16px; height: 16px; }

/* --- optional evidence sections (verdict / hazard scale / dot array / association),
   rendered only when a story supplies the matching s.evidence.* data --- */
.ev-badge {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
  border: 1px solid var(--border-strong); border-radius: 3px; padding: 2px 7px;
}
.ev-badge-hazard { color: var(--ev-flag); background: #FBF4E6; border-color: #E7D6AE; }

/* hero verdict (shared by certainty + hazard) */
.ev-verdict { margin-top: 20px; padding-top: 22px; border-top: 2px solid var(--ink); }
.ev-verdict-kicker {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.ev-verdict-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 16px; }
.ev-verdict-big {
  font-family: var(--font-body); font-weight: 700; font-size: clamp(28px, 6vw, 42px);
  line-height: 1; letter-spacing: -0.015em; color: var(--text-primary);
}
.ev-verdict-tier {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
}
.ev-strength { display: flex; gap: 5px; margin-top: 14px; max-width: 340px; }
.ev-seg { flex: 1; height: 8px; border-radius: 1px; background: var(--border); }
.ev-seg-on { background: var(--accent); }
/* Insufficient / Not Assessable are honest non-results: mute the verdict so a
   low rating never reads as a strong positive. */
.ev-verdict-insufficient .ev-verdict-big,
.ev-verdict-not-assessable .ev-verdict-big { color: var(--text-muted); }
.ev-verdict-insufficient .ev-seg-on,
.ev-verdict-not-assessable .ev-seg-on { background: var(--text-muted); }
.ev-note { display: flex; align-items: flex-start; gap: 8px; margin-top: 14px; color: var(--text-muted); }
.ev-note-flag { color: var(--ev-flag); }
.ev-note-ic { width: 17px; height: 17px; flex: none; margin-top: 1px; }
.ev-note span { font-size: 14px; line-height: 1.5; font-weight: 500; }
.ev-boundary { font-size: 13px; line-height: 1.5; color: var(--text-muted); margin: 14px 0 0; max-width: 62ch; }
.ev-hazard-sub { font-size: clamp(14px, 3vw, 16px); line-height: 1.5; color: var(--text-primary); margin: 6px 0 0; max-width: 60ch; }

/* hazard rung scale */
.ev-scale { position: relative; margin-top: 22px; }
.ev-scale-track, .ev-scale-fill { position: absolute; top: 11px; height: 2px; }
.ev-scale-track { left: var(--ev-first); width: var(--ev-track); background: var(--border-strong); }
.ev-scale-fill { left: var(--ev-first); width: var(--ev-fill); background: var(--accent); }
.ev-rungs { display: flex; position: relative; }
.ev-rung { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 0; }
.ev-rung-dotwrap { height: 22px; display: flex; align-items: center; justify-content: center; }
.ev-rung-node { width: 13px; height: 13px; border-radius: 50%; background: var(--bg); border: 1.5px solid var(--border-strong); box-sizing: border-box; }
.ev-rung-node-reached { background: var(--accent); border-color: var(--accent); }
.ev-rung-node-active { width: 18px; height: 18px; background: var(--accent); border: none; box-shadow: 0 0 0 4px rgba(0, 126, 167, 0.18); }
.ev-rung-name { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.04em; color: var(--text-muted); margin-top: 8px; line-height: 1.25; }
.ev-rung-reached .ev-rung-name { color: var(--text-primary); }
.ev-rung-active .ev-rung-name { font-weight: 700; }
.ev-rung-here { font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }

/* type-specific visual: shared header */
.ev-visual { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.ev-visual-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-muted);
}
.ev-visual-title { font-size: 15px; font-weight: 500; color: var(--text-primary); margin-top: 6px; max-width: 48ch; }

/* dot array */
.ev-dotwrap { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; margin-top: 16px; }
.ev-dotgrid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 4px; width: clamp(180px, 60vw, 250px); flex: none; }
.ev-dot { width: 100%; aspect-ratio: 1; border-radius: 50%; }
.ev-dot-soc { background: var(--accent); }
.ev-dot-gain { background: var(--success); }
.ev-dot-none { background: var(--border); }
.ev-legend { display: flex; flex-direction: column; gap: 11px; flex: 1; min-width: 160px; }
.ev-legend-item { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; line-height: 1.4; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.ev-legend-item .ev-dot { width: 13px; height: 13px; flex: none; margin-top: 2px; }

/* association framing */
.ev-assoc { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-top: 14px; }
.ev-assoc-card { background: var(--bg); border: 1px solid var(--border); border-radius: 4px; padding: 14px 16px; }
.ev-assoc-supports { border-left: 3px solid var(--accent); }
.ev-assoc-cannot { border-left: 3px solid var(--border-strong); }
.ev-assoc-head { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.ev-assoc-supports .ev-assoc-head { color: var(--accent); }
.ev-assoc-cannot .ev-assoc-head { color: var(--text-muted); }
.ev-assoc-card p { font-size: 14px; line-height: 1.5; margin: 7px 0 0; color: var(--text-primary); }
.ev-assoc-cannot p { color: var(--text-muted); }

/* Reality check, the mandatory "what this does and doesn't mean" caveat,
   a tinted callout with a single accent element (the left border). */
.reality-check {
  background: var(--accent-bg);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin: 28px 0;
}
.reality-check-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-primary);
  margin-bottom: 8px;
}
.reality-check-text { font-size: 16px; line-height: 1.6; color: var(--text-primary); margin: 0; }
.reactions { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0 8px; }
.reaction {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; color: var(--text-body);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 16px; cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.reaction:hover { background: var(--bg-raised); transform: translateY(-1px); }
.reaction.reacted { background: var(--accent-bg); border-color: var(--accent); color: var(--accent-dark); }
.reaction.reacted .ic { color: var(--accent); }
.reaction .count { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.reaction-note { font-size: 12px; color: var(--text-muted); margin-bottom: 32px; }
.source-line { font-size: 14px; color: var(--text-muted); padding: 16px 0; border-top: 1px solid var(--border); margin-top: 8px; }
.related { margin-top: 56px; }
.related h2 { font-size: 26px; margin-bottom: 20px; }
.related .compact-grid { grid-template-columns: 1fr 1fr; margin-top: 0; }

/* ------------------------------------------------------------
   Category, corrections, static pages
------------------------------------------------------------ */
.cat-header { padding: 56px 0 28px; border-bottom: 1px solid var(--border-strong); margin-bottom: 32px; }
.cat-header h1 { font-size: 46px; margin-bottom: 10px; }
.cat-header .summary { max-width: 640px; margin-bottom: 8px; }
.cat-header .stat { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 24px 0 36px; }
.filter-bar .label { font-size: 12px; color: var(--text-muted); margin-right: 6px; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 64px; }

.correction-row { padding: 20px 0; border-bottom: 1px solid var(--border); }
.correction-row .date { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }

.prose { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.prose h1 { font-size: clamp(36px, 5vw, 52px); line-height: 1.08; margin-bottom: 20px; }
.prose h2 { font-size: 26px; margin: 44px 0 14px; }
.prose p { margin-bottom: 18px; font-size: 17px; }
.prose ul { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; }
.prose .kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; }
.filter-list { counter-reset: f; margin: 24px 0; display: grid; gap: 12px; }
.filter-list .f-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px 20px 18px 58px; position: relative;
}
.filter-list .f-item::before {
  counter-increment: f; content: counter(f);
  position: absolute; left: 20px; top: 18px;
  font-family: var(--font-mono); font-size: 18px; color: var(--accent);
}
.filter-list .f-item strong { display: block; color: var(--text-primary); margin-bottom: 2px; }
.filter-list .f-item span { font-size: 14.5px; }

/* ------------------------------------------------------------
   Footer
------------------------------------------------------------ */
/* dark surface: deep space blue background, white text, fresh sky accents */
footer.site-footer { background: var(--surface-dark); color: var(--on-dark); padding: 48px 0; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 12px; }
.footer-grid a { display: block; font-size: 14px; color: var(--on-dark); margin-bottom: 8px; }
.footer-grid a:hover { color: var(--accent-on-dark); }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--on-dark); }
.footer-mission { font-size: 14px; color: var(--on-dark-muted); max-width: 280px; margin-top: 10px; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.18); font-size: 12px; color: var(--on-dark-muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

.preview-note {
  background: var(--accent-bg); border-bottom: 1px solid var(--border-strong);
  font-size: 13px; padding: 10px 40px; text-align: center; color: var(--text-body);
}

/* ------------------------------------------------------------
   Search overlay
------------------------------------------------------------ */
.nav-search {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border-strong); background: transparent;
  color: var(--text-body); cursor: pointer; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-search:hover { background: var(--bg-card); transform: translateY(-1px); }
.search-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0, 23, 31, 0.45);
  display: none; align-items: flex-start; justify-content: center;
  padding: 12vh 20px 0; backdrop-filter: blur(2px);
}
.search-overlay.open { display: flex; }
.search-box {
  width: 100%; max-width: 640px; background: var(--bg);
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(0, 23, 31, 0.45); overflow: hidden;
}
.search-box input {
  width: 100%; border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 19px; color: var(--text-primary);
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.search-results { max-height: 52vh; overflow-y: auto; }
.search-results a {
  display: block; padding: 14px 24px; border-bottom: 1px solid var(--border);
  transition: background 0.15s var(--ease);
}
.search-results a:hover, .search-results a.sel { background: var(--bg-card); }
.search-results .sr-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.search-results .sr-head { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--text-primary); line-height: 1.25; }
.search-results .sr-meta { font-size: 12px; color: var(--text-muted); }
.search-empty { padding: 28px 24px; font-size: 14px; color: var(--text-muted); }
.search-hint { padding: 10px 24px; font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border); display: flex; gap: 16px; }
.search-hint kbd { font-family: var(--font-mono); background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 1px 6px; font-size: 10px; }

/* ------------------------------------------------------------
   Hero rotation
------------------------------------------------------------ */
.lead-progress { position: absolute; top: 0; left: 0; height: 3px; width: 0; background: var(--accent); z-index: 3; }
.lead-progress.run { transition: width linear; }
.lead-fade { transition: opacity 0.35s var(--ease); }
.lead-fade.out { opacity: 0; }
.lead-dots { display: flex; gap: 7px; align-items: center; }
.lead-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: var(--border-strong); cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.lead-dot.on { background: var(--accent); transform: scale(1.3); }

/* ------------------------------------------------------------
   Share bar
------------------------------------------------------------ */
.share-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 28px 0 4px; }
.share-bar .share-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-right: 4px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--text-body);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 15px; cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.share-btn:hover { background: var(--bg-raised); border-color: var(--border-strong); transform: translateY(-1px); color: var(--text-primary); }
.share-btn.primary { background: var(--accent); border-color: var(--accent); color: var(--white); }
.share-btn.primary:hover { background: var(--accent-dark); color: var(--white); }

/* follow row */
.follow-note { font-size: 12px; color: var(--text-muted); }

/* ------------------------------------------------------------
   Responsive, mobile hybrid (lead full width, 2-up boxes)
------------------------------------------------------------ */
@media (max-width: 980px) {
  .bento { grid-template-columns: 1fr; }
  .lead h1 { font-size: clamp(32px, 7vw, 44px); }
  .compact-grid, .cat-grid { grid-template-columns: 1fr 1fr; }
  .tile-strip { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 0; max-width: var(--article-width); }
  .article-layout .article-wrap { padding: 48px 24px; }
  .article-aside { padding-top: 0; padding: 0 24px 48px; }
  .aside-sticky { position: static; gap: 32px; }
  .article-foot-news { display: none; }
}

@media (max-width: 768px) {
  .container, .nav-inner { padding: 0 18px; }
  .standard-band { padding: 12px 18px; }
  .nav-links { display: none; }
  .board { padding-top: 16px; }
  .bento, .side, .side-row, .tile-strip, .compact-grid { gap: 12px; }
  .side { grid-template-rows: none; }
  .lead-body { padding: 18px 18px 20px; }
  .lead .lede { font-size: 15px; }
  .card-text h3, .card-img h3 { font-size: 15.5px; }
  .card-text .lede { display: none; }
  .card-pad, .card-text, .tile-news { padding: 13px 14px 14px; }
  .tile-news h3 { font-size: 17px; }
  .tile-strip {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-top: 12px; padding-bottom: 8px;
  }
  .tile-data { min-width: 150px; scroll-snap-align: start; padding: 12px 16px; }
  .tile-data .v { font-size: 21px; }
  .compact-grid { grid-template-columns: 1fr 1fr; margin-top: 12px; }
  .card-compact h3 { font-size: 14px; }
  .card-compact .card-pad .meta { display: none; }
  .section { padding: 56px 0 0; }
  .grid-2, .human-impact, .footer-grid, .cat-grid { grid-template-columns: 1fr; }
  .related .compact-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .row { grid-template-columns: auto 1fr; }
  .row .impact { display: none; }
  .article-body { font-size: 18px; }
  .human-impact { padding: 28px; }
  .evidence-summary { padding: 24px 22px; }
  .evidence-body { padding: 4px 22px 24px; }
  .evidence-title { font-size: 24px; }
  .evidence-toggle-txt { display: none; }
  .ev-status { width: 64px; }
  .reality-check { padding: 18px 20px; }
}
