/* ════════════════════════════════════════════════════════
   ARTICLE — Editorial Design System
   Requires: ../style.css (tokens, nav, footer, buttons)
   ════════════════════════════════════════════════════════ */

body { padding-top: 57px; }

/* ── READING PROGRESS ─────────────────────────────────── */
.reading-progress {
  position: fixed; top: 72px; left: 0; right: 0;
  height: 2px; z-index: 200; pointer-events: none;
}
.reading-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--coral) 0%, #ff8a8b 50%, var(--coral) 100%);
  background-size: 200% 100%;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(240,90,91,0.5);
}

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.article-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 7vw, 96px);
  background: var(--bg);
}

/* Radial glow mesh */
.article-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(240,90,91,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 85% 80%, rgba(240,90,91,0.05) 0%, transparent 55%);
  pointer-events: none;
}

/* Giant decorative numeral */
.article-hero-bg-num {
  position: absolute;
  right: -2vw; top: 50%;
  transform: translateY(-50%);
  font-size: clamp(220px, 25vw, 380px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240,90,91,0.07);
  user-select: none;
  pointer-events: none;
  font-family: var(--sans);
}

/* Gradient rule below hero */
.article-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(240,90,91,0.4) 25%,
    rgba(240,90,91,0.2) 60%,
    transparent 100%
  );
}

.article-hero .container { position: relative; }

/* Back link */
.article-back {
  display: flex; align-items: center; gap: 8px;
  width: fit-content;
  font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 36px; text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.article-back:hover { color: var(--coral); gap: 12px; }
.article-back svg { transition: transform 0.2s; }
.article-back:hover svg { transform: translateX(-4px); }

/* Tag pill with pulse dot */
.article-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 0.5625rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral);
  background: rgba(240,90,91,0.08);
  border: 1px solid rgba(240,90,91,0.22);
  padding: 5px 13px 5px 10px; border-radius: 100px;
  margin-bottom: 24px;
}
.article-tag::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.65); }
}

/* Title */
.article-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink);
  max-width: 800px;
  margin-bottom: 32px;
  text-wrap: balance;
}

/* Meta pill */
.article-meta-row {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--rule); border-radius: 8px;
  background: var(--bg-card); width: fit-content; overflow: hidden;
}
.meta-date, .meta-read {
  font-family: var(--mono); font-size: 0.625rem;
  color: var(--ink-3); letter-spacing: 0.1em;
  padding: 8px 16px; text-transform: uppercase;
}
.meta-sep {
  width: 1px; height: 28px; background: var(--rule); flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   PAGE LAYOUT — single consistent column
   ════════════════════════════════════════════════════════ */
.article-page {
  background: var(--bg);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.article-columns {
  padding-top: clamp(48px, 6vw, 80px);
}

/* ════════════════════════════════════════════════════════
   ARTICLE BODY — same left edge as hero title
   ════════════════════════════════════════════════════════ */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  color: var(--ink-2);
}

/* Body paragraphs */
.article-body p {
  font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
  line-height: 1.82;
  margin-bottom: 28px;
  letter-spacing: 0.003em;
}
.article-body p:last-child { margin-bottom: 0; }
.article-body em { color: var(--ink); font-style: italic; }
.article-body strong { color: var(--ink); font-weight: 600; }

/* First paragraph — lead */
.article-body > p:first-child {
  font-size: clamp(1.125rem, 1.4vw, 1.3125rem);
  color: var(--ink); font-weight: 400; line-height: 1.7;
}

/* h2 with left accent bar */
.article-body h2 {
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.15;
  color: var(--ink);
  margin: 64px 0 20px;
  scroll-margin-top: 88px;
  position: relative; padding-left: 16px;
}
.article-body h2::before {
  content: "";
  position: absolute; left: 0; top: 0.15em; bottom: 0.15em;
  width: 3px;
  background: var(--coral);
  border-radius: 2px;
  opacity: 0.85;
}

.article-body h3 {
  font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink); margin: 44px 0 16px; scroll-margin-top: 88px;
}

/* Default ul */
.article-body ul {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.article-body ul li {
  padding-left: 24px; position: relative;
  margin-bottom: 12px; color: var(--ink-2);
  font-size: clamp(1.0625rem, 1.2vw, 1.1875rem); line-height: 1.7;
}
.article-body ul li::before {
  content: ""; position: absolute; left: 0; top: 0.75em;
  width: 6px; height: 1px; background: var(--coral);
}

/* Query list — italic lines with left border */
.article-body .query-list {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 8px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  border-left: 2px solid rgba(240,90,91,0.35);
}
.article-body .query-list li {
  padding: 7px 0;
  padding-left: 0;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-style: italic;
  background: none;
  border: none;
  border-radius: 0;
}
.article-body .query-list li::before { display: none; }
.article-body .query-list li em { font-style: italic; color: var(--ink); }

/* ── DIAGRAM — HTML-based ── */
.article-diagram {
  margin: 44px 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
}
.diagram-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.diagram-cols {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
}
.diagram-col {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diagram-col:first-child {
  border-right: 1px solid rgba(255,255,255,0.06);
}
.diagram-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  font-weight: 500;
}
.diagram-col-header--coral { color: var(--coral); }
.diagram-col-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.diagram-col-dot--muted { background: var(--ink-4); }
.diagram-col-dot--coral { background: var(--coral); box-shadow: 0 0 8px rgba(240,90,91,0.6); }

/* Search bar */
.diagram-search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  margin-bottom: 20px;
}
.diagram-search-bar--coral {
  background: rgba(240,90,91,0.05);
  border-color: rgba(240,90,91,0.15);
}
.diagram-search-bar svg { color: var(--ink-3); flex-shrink: 0; }
.diagram-search-text {
  font-size: 0.9375rem;
  color: var(--ink-3);
  font-style: italic;
}
.diagram-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 16px;
}

/* Google results */
.diagram-google-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.diagram-google-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.diagram-google-result--dim    { opacity: 0.5; }
.diagram-google-result--dimmer { opacity: 0.25; }
.diagram-google-dot {
  width: 6px; height: 6px; border-radius: 1px;
  background: #5577CC; flex-shrink: 0; margin-top: 5px;
}
.diagram-google-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #7799DD;
  line-height: 1.3;
}

/* AI results */
.diagram-ai-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.diagram-ai-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(240,90,91,0.12);
  background: rgba(240,90,91,0.04);
}
.diagram-ai-result--active {
  background: rgba(240,90,91,0.12);
  border-color: rgba(240,90,91,0.35);
}
.diagram-ai-result--dim { opacity: 0.6; }
.diagram-ai-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(240,90,91,0.15);
  border: 1px solid rgba(240,90,91,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
  flex-shrink: 0;
}
.diagram-ai-result--active .diagram-ai-num {
  background: rgba(240,90,91,0.3);
  border-color: rgba(240,90,91,0.6);
}
.diagram-ai-text { flex: 1; min-width: 0; }
.diagram-ai-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.3;
  margin-bottom: 2px;
}
.diagram-ai-result--active .diagram-ai-name { color: var(--ink); }
.diagram-ai-sub {
  font-size: 0.8125rem;
  color: var(--ink-3);
}
.diagram-check { flex-shrink: 0; opacity: 0.8; }

/* Footer labels */
.diagram-col-footer {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  margin-top: 16px;
}
.diagram-col-footer--invisible { color: rgba(240,90,91,0.35); }

/* Arrow column */
.diagram-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.diagram-arrow-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(240,90,91,0.12);
  border: 1px solid rgba(240,90,91,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  color: var(--coral);
}

/* Caption */
.diagram-caption {
  display: block;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  padding: 12px 0 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 640px) {
  .diagram-cols { grid-template-columns: 1fr; }
  .diagram-arrow-col { display: none; }
  .diagram-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ── PULL QUOTE ── */
.pull-quote {
  margin: 52px 0;
  padding: 36px 40px 36px 44px;
  position: relative; border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(240,90,91,0.08) 0%,
    rgba(240,90,91,0.03) 100%
  );
  border: 1px solid rgba(240,90,91,0.16);
  overflow: hidden;
}
.pull-quote::before {
  content: "\201C";
  position: absolute; top: -20px; left: 20px;
  font-size: 130px; line-height: 1;
  font-weight: 800;
  color: rgba(240,90,91,0.1);
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none; user-select: none;
}
.pull-quote p {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem) !important;
  font-weight: 500 !important;
  line-height: 1.52 !important;
  color: var(--ink) !important;
  margin: 0 !important;
  font-style: italic !important;
  letter-spacing: -0.01em;
  position: relative;
}

/* ── STAT STRIP ── */
.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: 12px;
  overflow: hidden; margin: 44px 0;
}
.stat-cell {
  background: var(--bg-card); padding: 28px 20px; text-align: center;
  position: relative; overflow: hidden;
}
.stat-cell::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 110%, rgba(240,90,91,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.stat-val {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.05em;
  color: var(--coral); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.75rem; color: var(--ink-3); line-height: 1.45; }

/* ── SIGNAL GRID ── */
.signal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 36px 0;
}
.signal-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 12px; padding: 22px 20px;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
  position: relative; overflow: hidden;
}
.signal-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(240,90,91,0.07) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.25s;
  pointer-events: none;
}
.signal-card:hover {
  border-color: rgba(240,90,91,0.28);
  transform: translateY(-3px);
  background: var(--bg-elev);
}
.signal-card:hover::before { opacity: 1; }
.signal-icon { font-size: 1.375rem; margin-bottom: 12px; display: block; }
.signal-title {
  font-size: 0.875rem; font-weight: 600;
  color: var(--ink); margin-bottom: 8px; letter-spacing: -0.015em;
}
.signal-desc { font-size: 0.8125rem; color: var(--ink-3); line-height: 1.6; }

/* ── CHECKLIST ── */
.article-body .checklist {
  list-style: none; padding: 0; margin: 0 0 28px;
  border: 1px solid var(--rule); border-radius: 12px;
  overflow: hidden; background: var(--bg-card);
}
.article-body .checklist li {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9375rem; color: var(--ink-2); line-height: 1.5;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  /* reset inherited ul li styles */
  margin-bottom: 0; padding-left: 20px; position: static;
}
.article-body .checklist li:last-child { border-bottom: none; }
.article-body .checklist li:hover { background: rgba(240,90,91,0.04); color: var(--ink); }
.article-body .checklist li::before { display: none; }
.article-body .checklist li.checked { color: var(--ink-3); }
.check-box {
  flex-shrink: 0; width: 18px; height: 18px;
  border: 1.5px solid var(--ink-4); border-radius: 5px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.article-body .checklist li:hover .check-box { border-color: var(--coral); }
.article-body .checklist li.checked .check-box {
  border-color: var(--coral);
  background: rgba(240,90,91,0.15);
}
.article-body .checklist li.checked .check-box::after {
  content: "";
  position: absolute; top: 3px; left: 3px;
  width: 10px; height: 6px;
  border-left: 1.5px solid var(--coral);
  border-bottom: 1.5px solid var(--coral);
  transform: rotate(-45deg);
}

/* ── ARTICLE CTA ── */
.article-cta {
  margin-top: 64px;
  padding: 16px 20px;
  border-radius: 12px;
  position: relative; overflow: hidden;
  background: rgba(240,90,91,0.06);
  border: 1px solid rgba(240,90,91,0.18);
}
.article-cta::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,90,91,0.5), transparent);
}
.article-cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 32px;
}
.article-cta-text { flex: 1; min-width: 0; }
.cta-eyebrow {
  font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.cta-eyebrow::before {
  content: ""; width: 16px; height: 1px;
  background: var(--coral); opacity: 0.6;
}
.article-cta h3 {
  font-size: 1rem;
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 3px;
}
.article-cta p {
  font-size: 0.8125rem; color: var(--ink-3);
  line-height: 1.5; margin-bottom: 0 !important;
}
.article-cta .btn {
  flex-shrink: 0;
  padding: 12px 20px !important;
  font-size: 0.875rem !important;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .article-cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ════════════════════════════════════════════════════════
   TOC SIDEBAR
   ════════════════════════════════════════════════════════ */
.toc-sidebar {
  position: fixed; top: 50%; transform: translateY(-50%);
  right: 28px; z-index: 50; width: 168px;
  background: rgba(19,19,30,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 14px;
  padding: 18px 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.toc-sidebar.ready { opacity: 1; pointer-events: all; }

.toc-label {
  font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 14px; display: block;
}
.toc-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 1px;
}
.toc-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0; text-decoration: none; cursor: pointer;
}
.toc-track {
  flex-shrink: 0; width: 18px; height: 2px;
  background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden;
  transition: width 0.25s ease, background 0.2s;
}
.toc-fill {
  display: block; height: 100%; width: 0%; background: var(--coral);
  border-radius: 2px; transition: width 0.15s linear;
}
.toc-text {
  font-size: 0.75rem; color: var(--ink-3); line-height: 1.3;
  transition: color 0.2s; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; max-width: 130px;
}
.toc-list a:hover .toc-text  { color: var(--ink); }
.toc-list a:hover .toc-track { background: rgba(255,255,255,0.2); }
.toc-list a.past .toc-text   { color: var(--ink-4); }
.toc-list a.past .toc-fill   { width: 100% !important; }
.toc-list a.past .toc-track  { background: rgba(240,90,91,0.12); }
.toc-list a.active .toc-text { color: var(--coral); font-weight: 600; }
.toc-list a.active .toc-track { width: 28px; background: rgba(240,90,91,0.2); }
.toc-list a.active .toc-fill  { background: var(--coral); }

/* ── NAV ACTIVE ── */
.nav-active { color: var(--ink) !important; }

/* ════════════════════════════════════════════════════════
   SOURCES TABLE
   ════════════════════════════════════════════════════════ */
.sources-table {
  margin: 36px 0; border: 1px solid var(--rule);
  border-radius: 12px; overflow: hidden; background: var(--bg-card);
}
.sources-table table { width: 100%; border-collapse: collapse; font-size: 0.8125rem; }
.sources-table th {
  text-align: left; font-family: var(--mono); font-size: 0.5625rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); padding: 12px 18px;
  border-bottom: 1px solid var(--rule);
  background: rgba(255,255,255,0.02);
}
.sources-table td {
  padding: 14px 18px; color: var(--ink-2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.55; vertical-align: top;
}
.sources-table tr:last-child td { border-bottom: none; }
.sources-table td:first-child { color: var(--ink); font-weight: 500; width: 50%; }
.sources-table a { color: var(--coral); text-decoration: none; transition: opacity 0.2s; }
.sources-table a:hover { opacity: 0.7; }

/* ════════════════════════════════════════════════════════
   MORE ARTICLES
   ════════════════════════════════════════════════════════ */
.more-section {
  background: var(--bg);
  padding: clamp(56px, 6vw, 80px) 0 clamp(72px, 9vw, 128px);
  border-top: 1px solid var(--rule); position: relative;
}
.more-section::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,90,91,0.3), transparent);
}
.more-header {
  display: flex; align-items: center; gap: 18px; margin-bottom: 28px;
}
.more-label {
  font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); white-space: nowrap;
}
.more-line { flex: 1; height: 1px; background: var(--rule); }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.more-card {
  border: 1px solid var(--rule); border-radius: 12px;
  background: var(--bg-card); padding: 24px 22px;
  text-decoration: none; color: inherit;
  transition: border-color 0.22s, transform 0.22s, background 0.22s;
  display: flex; flex-direction: column; gap: 10px;
}
.more-card:hover {
  border-color: rgba(240,90,91,0.22);
  transform: translateY(-4px); background: var(--bg-elev);
}
.more-tag {
  font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coral);
}
.more-title {
  font-size: 0.9375rem; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.4; color: var(--ink);
}
.more-arrow {
  font-family: var(--mono); font-size: 0.75rem; color: var(--ink-4);
  margin-top: auto; transition: color 0.2s, transform 0.2s; display: inline-block;
}
.more-card:hover .more-arrow { color: var(--coral); transform: translateX(3px); }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 1380px) {
  .toc-sidebar { right: 14px; width: 152px; }
  .toc-text { max-width: 112px; }
}
@media (max-width: 1120px) { .toc-sidebar { display: none; } }
@media (max-width: 900px) {
  .more-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .pull-quote { margin-left: 0; margin-right: 0; padding: 28px 24px; }
  .pull-quote::before { font-size: 80px; }
}
@media (max-width: 600px) {
  .more-grid { grid-template-columns: 1fr; }
  .article-hero-bg-num { display: none; }
  .sources-table td:first-child { width: auto; }
  .sources-table table { display: block; }
  .sources-table thead { display: none; }
  .sources-table tbody, .sources-table tr, .sources-table td { display: block; }
  .sources-table td { padding: 10px 14px; border-bottom: 1px solid var(--rule); }
  .sources-table tr { border-bottom: 2px solid var(--rule); }
}
