/* Hands Off Our Census — Direction A: Wheatpaste
   One stylesheet for every page. Tokens first, then base, layout, components, pages. */

:root {
  --newsprint: #F2EDE4;
  --ink: #141414;
  --census-blue: #2D618B;
  --census-blue-dark: #1F4668;
  --spray-red: #E23A2E;      /* 24px+ text only, or as a fill behind ink text */
  --highlighter: #FFE14D;    /* deadlines and tape, sparingly */
  --card: #FAF7F1;
  --rule: #141414;
  --muted-ink: #3B3833;      /* secondary text on newsprint, ~10:1 */

  --font-display: "Big Shoulders Stencil Display", "Big Shoulders Stencil", "Saira Stencil One", Impact, "Arial Narrow Bold", sans-serif;
  --font-body: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-label: "Courier Prime", "Courier New", Courier, monospace;
  --font-marker: "Permanent Marker", "Comic Sans MS", cursive;

  --gutter: clamp(16px, 4.4vw, 64px);
  --max: 1312px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 88px;

  color-scheme: light;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 24px; }
body {
  margin: 0;
  background: var(--newsprint);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
[hidden] { display: none !important; }
h1, h2, h3 { text-wrap: balance; }
p { margin: 0; }
a { color: var(--census-blue); text-underline-offset: 4px; text-decoration-thickness: 2px; }
a:hover { color: var(--census-blue-dark); }

/* Visible, thick focus ring everywhere: ink outline with a highlighter halo */
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 7px var(--highlighter);
}
.on-dark :focus-visible { outline-color: var(--highlighter); box-shadow: none; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--highlighter); color: var(--ink); font-weight: 800;
  padding: 12px 18px; text-decoration: none;
}
.skip-link:focus { top: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Paper grain ----------
   Grain lives only on the page ground outside the content column and on decorative art.
   Every block of running text sits on a solid newsprint or card fill. */
.grain {
  background-color: var(--newsprint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.08 0 0 0 0 0.08 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}
.paper { background: var(--newsprint); }

/* ---------- Layout ---------- */
.page { max-width: calc(var(--max) + 2 * var(--gutter)); margin: 0 auto; background: var(--newsprint); min-height: 100vh; display: flex; flex-direction: column; }
.wrap { padding-inline: var(--gutter); }
main { flex: 1; }
.section { padding-block: var(--space-6) var(--space-7); }
.section + .section { border-top: 3px solid var(--rule); }

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.84;
  letter-spacing: 0;
  margin: 0;
}
.h1 { font-size: clamp(64px, 11vw, 168px); line-height: 0.88; }
.h1-page { font-size: clamp(60px, 9vw, 128px); line-height: 0.88; }
.h2 { font-size: clamp(44px, 6.4vw, 92px); line-height: 0.9; }
.h2-sm { font-size: clamp(40px, 4.6vw, 64px); line-height: 0.88; }
.label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
}
.lede { font-size: clamp(19px, 1.6vw, 22px); line-height: 1.5; max-width: 40em; }
.keep-case { text-transform: none !important; letter-spacing: 0.02em; } /* e.g. dataindex.us inside uppercase labels */
.red { color: var(--spray-red); } /* only ever used at 24px+ */
.marker { font-family: var(--font-marker); color: var(--spray-red); font-size: clamp(24px, 2.2vw, 30px); transform: rotate(-3deg); display: inline-block; line-height: 1.1; }
.prose { max-width: 42em; }
.prose p + p, .prose p + ul, .prose ul + p, .prose blockquote + p, .prose p + blockquote { margin-top: 1.1em; }
.prose h2 { font-family: var(--font-body); font-weight: 800; font-size: clamp(26px, 2.6vw, 32px); line-height: 1.2; margin: 2.2em 0 0.7em; }
.prose h3 { font-weight: 800; font-size: 22px; line-height: 1.3; margin: 1.8em 0 0.6em; }
.prose ul { padding-left: 1.2em; margin: 0; }
.prose li + li { margin-top: 0.6em; }
.prose blockquote { margin: 0; padding: 18px 22px; background: var(--card); border: 2px solid var(--ink); font-size: 17px; }

/* The URL: never monospace. Public Sans 800, ".us" in red, always at 24px+ */
.url { font-family: var(--font-body); font-weight: 800; font-size: 24px; letter-spacing: -0.01em; white-space: nowrap; }
.url span { color: var(--spray-red); }

/* ---------- Wordmark ---------- */
.wordmark { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; min-height: 44px; }
.wordmark:hover { color: var(--ink); }
.wordmark svg { width: 48px; height: 48px; flex: none; fill: var(--ink); }
.wordmark-text { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 27px; line-height: 0.9; }
.wordmark-text > span { display: block; }
.wordmark-text .us { color: var(--spray-red); }

/* ---------- Header / nav ---------- */
.site-header { border-bottom: 4px solid var(--rule); background: var(--newsprint); position: relative; z-index: 10; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 92px; }
.nav-toggle {
  display: none; align-items: center; gap: 10px; min-height: 44px; min-width: 44px; padding: 8px 14px;
  background: var(--card); color: var(--ink); border: 3px solid var(--ink); cursor: pointer;
  font-family: var(--font-label); font-weight: 700; font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-toggle svg { width: 22px; height: 22px; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: clamp(12px, 1.6vw, 28px); }
.site-nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  font-family: var(--font-label); font-weight: 700; font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; border-bottom: 4px solid transparent; padding-top: 4px;
}
.site-nav a:hover { border-bottom-color: var(--ink); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--spray-red); }
.site-nav a.nav-cta { background: var(--ink); color: var(--newsprint); padding: 10px 18px; border: 0; }
.site-nav a.nav-cta:hover { background: var(--census-blue-dark); }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--newsprint); border-bottom: 4px solid var(--rule); padding: 12px var(--gutter) 24px; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .site-nav a { width: 100%; font-size: 18px; border-bottom-width: 3px; }
  .site-nav a.nav-cta { justify-content: center; margin-top: 12px; }
  .no-js .site-nav { display: block; position: static; border: 0; padding: 0 0 16px; }
  .no-js .nav-toggle { display: none; }
  .no-js .site-header .wrap { flex-wrap: wrap; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 14px 28px;
  background: var(--ink); color: var(--newsprint);
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(24px, 2.2vw, 32px); line-height: 1;
  text-decoration: none; border: 0; cursor: pointer;
  box-shadow: 7px 7px 0 var(--spray-red);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { color: var(--newsprint); transform: translate(-2px, -2px); box-shadow: 9px 9px 0 var(--spray-red); }
.btn:active { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--spray-red); }
.btn-quiet {
  display: inline-flex; align-items: center; min-height: 44px; gap: 8px;
  background: var(--card); color: var(--ink); border: 3px solid var(--ink); padding: 8px 16px; cursor: pointer;
  font-family: var(--font-label); font-weight: 700; font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
}
.btn-quiet:hover { background: var(--highlighter); color: var(--ink); }
.btn-quiet[aria-pressed="true"] { background: var(--ink); color: var(--newsprint); }
.text-link { font-family: var(--font-label); font-weight: 700; font-size: 18px; color: var(--ink); display: inline-flex; align-items: center; min-height: 44px; }
.text-link:hover { color: var(--census-blue-dark); }
.card-link { font-weight: 700; font-size: 17px; display: inline-flex; align-items: center; min-height: 44px; }

/* ---------- Tape badge / deadline ---------- */
.tape-badge {
  display: inline-block; background: var(--highlighter); color: var(--ink);
  font-family: var(--font-label); font-weight: 700; font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 14px; transform: rotate(-1.5deg);
}

/* ---------- Taped, rotated cards ---------- */
.card {
  position: relative; background: var(--card); border: 2px solid var(--ink);
  padding: 40px 32px 28px; display: flex; flex-direction: column; gap: 12px;
}
.card.tilt-a { transform: rotate(-0.8deg); }
.card.tilt-b { transform: rotate(0.6deg); }
.card.tilt-c { transform: rotate(-0.4deg); }
.card.tilt-d { transform: rotate(0.5deg); }
.card .tape {
  position: absolute; top: -15px; left: 50%; width: 124px; height: 28px;
  background: var(--highlighter); opacity: .85; transform: translateX(-50%) rotate(-3deg);
}
.card:nth-child(3n+2) .tape { left: 40%; transform: translateX(-50%) rotate(4deg); }
.card:nth-child(3n+3) .tape { left: 58%; transform: translateX(-50%) rotate(-2deg); }
.card h3 { margin: 0; font-size: 24px; line-height: 1.2; font-weight: 800; }
.card p { font-size: 17px; }
.card .card-link { margin-top: auto; }
.card-grid { display: grid; gap: 40px 36px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
@media (prefers-reduced-motion: reduce) { .card.tilt-a, .card.tilt-b, .card.tilt-c, .card.tilt-d { transform: none; } }

/* ---------- Tally divider ---------- */
.tally-band { border-block: 3px solid var(--rule); height: 56px; overflow: hidden; display: flex; align-items: center; gap: 22px; padding-inline: var(--gutter); }
.tally-band svg { width: 46px; height: 38px; flex: none; fill: var(--ink); }
.tally-band svg.hot { fill: var(--spray-red); }

/* ---------- Page head (inner pages) ---------- */
.page-head { padding-block: var(--space-6) var(--space-5); border-bottom: 3px solid var(--rule); display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.page-head .actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; }
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px 40px; margin-bottom: var(--space-5); }
.section-head .note { font-family: var(--font-label); font-size: 16px; line-height: 1.5; max-width: 380px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 4px solid var(--rule); padding-block: 40px; }
.site-footer .wrap { display: grid; gap: 24px 40px; grid-template-columns: auto 1fr auto; align-items: center; }
.site-footer .wordmark svg { width: 40px; height: 40px; }
.site-footer .wordmark-text { font-size: 24px; }
.site-footer p { font-size: 16px; max-width: 44em; }
.footer-links { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 4px 24px; border-top: 2px solid var(--ink); padding-top: 16px; }
.footer-links a { font-family: var(--font-label); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink); min-height: 44px; display: inline-flex; align-items: center; }
@media (max-width: 860px) { .site-footer .wrap { grid-template-columns: 1fr; } }

/* ---------- Placeholders ---------- */
.ph { font-family: var(--font-label); background: repeating-linear-gradient(-45deg, transparent 0 8px, rgba(20,20,20,.06) 8px 16px); padding: 0 .25em; }

/* ======================================================
   HOME
   ====================================================== */
.hero { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 40px; align-items: center; padding-block: var(--space-6) 56px; }
.hero-copy { grid-column: span 7; display: flex; flex-direction: column; align-items: flex-start; gap: 32px; }
.hero-copy .h1 { margin-top: -4px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; margin-top: 6px; }
.hero-art { grid-column: span 5; display: flex; justify-content: flex-end; }
.hero-art svg { width: 100%; max-width: 540px; height: auto; display: block; }
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy, .hero-art { grid-column: auto; }
  .hero-art { justify-content: flex-start; }
  .hero-art svg { max-width: 460px; }
}

.why { background: var(--census-blue); color: var(--newsprint); padding-block: 72px; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 40px; align-items: center; }
.why .display { grid-column: span 8; font-size: clamp(40px, 5.3vw, 76px); line-height: 0.94; }
.why-side { grid-column: span 4; display: flex; flex-direction: column; gap: 18px; }
.why-side svg { width: 120px; height: 120px; fill: var(--newsprint); }
.why-side p { font-size: 20px; }
.why a { color: var(--newsprint); }
.why a:hover { color: var(--highlighter); }
@media (max-width: 960px) { .why { grid-template-columns: 1fr; } .why .display, .why-side { grid-column: auto; } }

/* ======================================================
   COMMENT GUIDE
   ====================================================== */
.guide-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 56px; }
.guide-rules { grid-column: span 5; display: flex; flex-direction: column; gap: 28px; }
.guide-templates { grid-column: span 7; display: flex; flex-direction: column; gap: 28px; }
@media (max-width: 1080px) { .guide-grid { grid-template-columns: 1fr; } .guide-rules, .guide-templates { grid-column: auto; } }
.rules { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 24px; counter-reset: rule; }
.rules li { display: flex; gap: 18px; align-items: flex-start; }
.rules svg { width: 44px; height: 36px; flex: none; margin-top: 2px; fill: var(--ink); }
.rules li:first-child svg { fill: var(--spray-red); }
.rules strong { display: block; font-size: 20px; font-weight: 800; }
.rules p { font-size: 17px; margin-top: 4px; }
.template-cards { display: grid; gap: 40px 32px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); margin-top: 12px; }

.anatomy { border: 3px solid var(--ink); background: var(--card); padding: clamp(24px, 3.4vw, 48px); display: flex; flex-direction: column; gap: 30px; }
.anatomy-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 12px 32px; }
.anatomy ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.anatomy li { display: flex; flex-direction: column; gap: 10px; }
.anatomy .num { font-family: var(--font-display); font-weight: 900; font-size: 64px; line-height: .8; color: var(--spray-red); }
.anatomy strong { font-size: 20px; font-weight: 800; }
.anatomy .eg { font-size: 16px; font-style: italic; }

.template { border: 3px solid var(--ink); background: var(--card); scroll-margin-top: 24px; }
.template + .template { margin-top: 40px; }
.template-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 24px; padding: 20px 24px; border-bottom: 3px solid var(--ink); background: var(--newsprint); }
.template-head h3 { margin: 4px 0 0; font-size: clamp(22px, 2.2vw, 28px); font-weight: 800; line-height: 1.2; }
.template-body { padding: clamp(18px, 2.4vw, 32px); }
.template-text { white-space: pre-wrap; font-family: var(--font-body); font-size: 17px; line-height: 1.65; margin: 0; max-width: 46em; }
.template-text .fill { background: linear-gradient(transparent 58%, var(--highlighter) 58%); padding: 0 .1em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

.submit-band { background: var(--ink); color: var(--newsprint); padding-block: 64px; }
.submit-band .wrap { display: grid; gap: 40px; grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: start; }
.submit-band .submit-copy { grid-column: span 7; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.submit-band ol { margin: 0; padding-left: 1.3em; font-size: 19px; display: flex; flex-direction: column; gap: 10px; }
.submit-band .btn { background: var(--highlighter); color: var(--ink); box-shadow: 7px 7px 0 var(--spray-red); }
.submit-band .btn:hover { color: var(--ink); }
.submit-band a:not(.btn) { color: var(--newsprint); }
.submit-band a:not(.btn):hover { color: var(--highlighter); }
.submit-band .facts { grid-column: span 5; border: 2px solid var(--newsprint); padding: 24px 26px; font-size: 16px; }
.submit-band dl { margin: 0; display: grid; gap: 14px; }
.submit-band dt { font-family: var(--font-label); font-weight: 700; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }
.submit-band dd { margin: 2px 0 0; }
@media (max-width: 960px) { .submit-band .wrap { grid-template-columns: 1fr; } .submit-band .submit-copy, .submit-band .facts { grid-column: auto; } }

/* ======================================================
   PROPOSAL (article)
   ====================================================== */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 64px; align-items: start; }
.article-aside { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 24px; }
.aside-box { border: 3px solid var(--ink); background: var(--card); padding: 22px 24px; font-size: 16px; }
.aside-box ul { list-style: none; margin: 10px 0 0; padding: 0; }
.aside-box li a { display: flex; min-height: 44px; align-items: center; }
@media (max-width: 1080px) { .article-layout { grid-template-columns: 1fr; } .article-aside { position: static; } }
.byline { font-family: var(--font-label); font-size: 17px; line-height: 1.5; }
.credit { border: 2px dashed var(--ink); padding: 18px 22px; font-size: 16px; background: var(--card); }

/* ======================================================
   TRACKER
   ====================================================== */
.stats { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.stat { border: 3px solid var(--ink); background: var(--card); padding: 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.stat .value { font-family: var(--font-display); font-weight: 900; font-size: clamp(72px, 8vw, 120px); line-height: .8; font-variant-numeric: tabular-nums; }
.stat .value.empty { color: var(--muted-ink); }
.stat p { font-size: 16px; }
.stat.countdown { background: var(--highlighter); }
.charts { display: grid; gap: 24px; grid-template-columns: repeat(12, minmax(0, 1fr)); margin-top: 24px; }
.chart { border: 3px solid var(--ink); background: var(--card); padding: 24px 26px; display: flex; flex-direction: column; gap: 14px; grid-column: span 6; }
.chart.wide { grid-column: span 12; }
@media (max-width: 900px) { .chart { grid-column: span 12; } }
.chart-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 20px; align-items: baseline; }
.chart-head h3 { margin: 0; font-size: 22px; font-weight: 800; }
.chart-empty { min-height: 220px; border: 2px dashed var(--ink); display: grid; place-items: center; text-align: center; padding: 24px; background: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(20,20,20,.05) 10px 20px); }
.chart-empty p { background: var(--card); padding: 6px 12px; font-family: var(--font-label); font-size: 16px; }
.bars-empty { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.bars-empty li { display: grid; grid-template-columns: minmax(0, 1fr) 72px; gap: 12px; align-items: center; font-size: 16px; }
.bars-empty .track { grid-column: 1 / -1; height: 14px; border: 2px dashed var(--ink); }
.bars-empty .val { font-family: var(--font-label); text-align: right; }

/* ======================================================
   WEBINARS
   ====================================================== */
.featured { border: 3px solid var(--ink); background: var(--card); display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.featured-art { background: var(--census-blue); color: var(--newsprint); padding: 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; min-height: 280px; }
.featured-art svg { width: 160px; height: 160px; fill: var(--newsprint); }
.featured-body { padding: clamp(22px, 3vw, 40px); display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.featured-body h3 { margin: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.12; font-weight: 800; }
.when { font-family: var(--font-label); font-weight: 700; font-size: 18px; }
@media (max-width: 900px) { .featured { grid-template-columns: 1fr; } .featured-art { min-height: 0; } }
.speakers { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px 28px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.speakers li { border-top: 2px solid var(--ink); padding-top: 10px; }
.speakers strong { display: block; font-size: 18px; }
.speakers span { font-size: 15px; }
.event-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.event-list li { border-top: 3px solid var(--ink); padding-block: 22px; display: grid; grid-template-columns: 220px minmax(0, 1fr) auto; gap: 12px 32px; align-items: center; }
.event-list li:last-child { border-bottom: 3px solid var(--ink); }
.event-list h3 { margin: 0; font-size: 22px; font-weight: 800; line-height: 1.25; }
@media (max-width: 800px) { .event-list li { grid-template-columns: 1fr; } }
.cohosts { font-size: 16px; }

/* ======================================================
   NEWS
   ====================================================== */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.news-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: start; }
@media (max-width: 1000px) { .news-layout { grid-template-columns: 1fr; } }
.news-list { list-style: none; margin: 0; padding: 0; }
.news-list li { border-top: 3px solid var(--ink); padding-block: 22px; display: grid; grid-template-columns: 150px minmax(0, 1fr) auto; gap: 8px 28px; align-items: baseline; }
.news-list li:last-child { border-bottom: 3px solid var(--ink); }
.news-list .date { font-family: var(--font-label); font-weight: 700; font-size: 16px; }
.news-list .outlet { font-family: var(--font-label); font-size: 15px; text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 4px; }
.news-list a.headline { font-size: 21px; font-weight: 800; line-height: 1.3; color: var(--ink); text-decoration-color: var(--census-blue); }
.news-list a.headline:hover { color: var(--census-blue-dark); }
.news-list .headline.ph { font-size: 21px; font-weight: 800; }
.tag { font-family: var(--font-label); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; border: 2px solid var(--ink); padding: 3px 10px; white-space: nowrap; }
.tag.coverage { background: var(--highlighter); }
.tag.analysis { background: var(--card); }
.tag.partner-statement { background: var(--ink); color: var(--newsprint); }
.tag.background { background: transparent; border-style: dashed; }
@media (max-width: 700px) { .news-list li { grid-template-columns: 1fr; } .news-list .tag { justify-self: start; } }
.status { font-family: var(--font-label); font-size: 16px; margin-top: 16px; }

/* ======================================================
   SHARE
   ====================================================== */
.share-layout { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: 56px; align-items: start; }
@media (max-width: 1000px) { .share-layout { grid-template-columns: 1fr; } }
.posts { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; }
.post { border: 2px solid var(--ink); background: var(--card); padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.post .who { font-weight: 800; font-size: 17px; }
.post .meta { font-family: var(--font-label); font-size: 15px; }
.post .body { min-height: 72px; display: grid; place-items: center; border: 2px dashed var(--ink); padding: 16px; text-align: center; font-family: var(--font-label); }
.kit { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 28px; }
.kit-item { border: 3px solid var(--ink); background: var(--card); padding: 22px 24px; display: flex; flex-direction: column; gap: 14px; }
.kit-item blockquote { margin: 0; font-size: 18px; line-height: 1.55; }
.kit-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 16px; }
.charcount { font-family: var(--font-label); font-size: 15px; }
.share-layout > div { min-width: 0; }
.hashtag-banner { max-width: 100%; overflow-wrap: anywhere; font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(30px, 4vw, 56px); line-height: .9; background: var(--ink); color: var(--newsprint); padding: 18px 22px; display: inline-block; transform: rotate(-1deg); }
.live { min-height: 1.5em; }
.prose h2.display { font-family: var(--font-display); font-weight: 900; line-height: 0.9; }
.prose h2.h2-sm { font-size: clamp(40px, 4.6vw, 64px); }
.h2-sm { line-height: 0.95; }
.stat .value.empty { font-size: clamp(56px, 5vw, 72px); line-height: 1; }
.event-list li > p:only-child { grid-column: 1 / -1; }

/* ---------- Backup display font (NOT active) ----------
   To switch "What they want to change" and the blue "One count…" band to the non-stencil sibling:
   1) add  family=Big+Shoulders:wght@900  to the Google Fonts link in each page's <head>
   2) uncomment:
#changes-title, #why-title { font-family: "Big Shoulders", "Big Shoulders Stencil", Impact, sans-serif; }
   Alternative: "Barlow Condensed" at weight 800 (family=Barlow+Condensed:wght@800).
*/
.stat .value { padding-bottom: 6px; } /* room for comma descenders */
.stat .asof { font-family: var(--font-label); font-size: 14px; line-height: 1.4; margin-top: auto; }
.news-list .byline-sm { display: block; font-size: 15px; margin-top: 4px; }
.news-list a.headline { display: block; min-height: 44px; padding-block: 4px; } /* 44px touch target even on one-line headlines */
.event-list .event-details { grid-column: 2 / -1; display: flex; flex-direction: column; gap: 8px; font-size: 16px; max-width: 46em; }
@media (max-width: 800px) { .event-list .event-details { grid-column: auto; } }
.btn { text-align: center; } /* long labels wrap centered on phones */
.share-layout.share-single { grid-template-columns: minmax(0, 760px); }
