@charset "utf-8";
/* ==================================================================
   THE ARENA JOURNAL — Institutional Broadsheet
   ------------------------------------------------------------------
   A newspaper-of-record system: warm newsprint ground, hairline
   column rules, high-contrast Didone masthead, engraved artwork.
   No rounded corners. No drop shadows. Rules do the work.
   ================================================================== */

/* ------------------------------ 1. Tokens ----------------------- */

:root {
  color-scheme: light;

  /* Morning Edition */
  --paper:        #fbf9f4;
  --paper-2:      #ffffff;
  --paper-3:      #f2eee4;
  --paper-inv:    #16130f;

  --ink:          #16130f;
  --ink-2:        #46403a;
  --ink-3:        #726a5f;
  --ink-inv:      #f6f2ea;

  --rule:         #dcd5c7;
  --rule-2:       #c4bbaa;
  --rule-heavy:   #16130f;

  --accent:       #7a1e28;
  --accent-ink:   #ffffff;
  --accent-wash:  #f6ecec;
  --gold:         #a8802f;

  --up:           #13654a;
  --down:         #a8271f;

  /* Artwork plates — read by the generated SVG */
  --art-ink:      #16130f;
  --art-paper:    #fbf9f4;
  --art-accent:   #7a1e28;
  --art-plate-a:  #f3efe5;
  --art-plate-b:  #e7e1d3;

  /* Type */
  --f-display: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --f-hed:     "Frank Ruhl Libre", "Georgia", "Times New Roman", serif;
  --f-body:    "Source Serif 4", "Georgia", "Times New Roman", serif;
  --f-ui:      "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Measure & rhythm */
  --wrap:      1320px;
  --gutter:    clamp(14px, 2.2vw, 30px);
  --col-gap:   clamp(16px, 1.9vw, 28px);
  --rule-w:    1px;

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

[data-theme="dark"] {
  color-scheme: dark;

  /* Evening Edition */
  --paper:        #131210;
  --paper-2:      #1a1815;
  --paper-3:      #201d19;
  --paper-inv:    #f6f2ea;

  --ink:          #efe9de;
  --ink-2:        #b7aea0;
  --ink-3:        #8b8175;
  --ink-inv:      #16130f;

  --rule:         #322e28;
  --rule-2:       #45403a;
  --rule-heavy:   #6f665b;

  --accent:       #d98a92;
  --accent-ink:   #16130f;
  --accent-wash:  #241a1b;
  --gold:         #c9a558;

  --up:           #4cbf93;
  --down:         #e8736a;

  --art-ink:      #efe9de;
  --art-paper:    #131210;
  --art-accent:   #d98a92;
  --art-plate-a:  #201d19;
  --art-plate-b:  #17150f;
}

/* ---------------------------- 2. Reset -------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Newsprint tooth. A very fine fractal grain over the whole page. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}
[data-theme="dark"] body::before { mix-blend-mode: screen; opacity: .26; }

img, svg { max-width: 100%; display: block; }
hr { border: 0; border-top: var(--rule-w) solid var(--rule); margin: 0; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--accent); color: var(--accent-ink); }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; font-family: var(--f-ui);
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
}
.skip:focus { left: 8px; top: 8px; }

.sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------- 3. Layout -------------------------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.rule       { border-top: var(--rule-w) solid var(--rule); }
.rule--ink  { border-top: 2px solid var(--rule-heavy); }
.rule--hair { border-top: var(--rule-w) solid var(--rule-2); }

/* ------------------------- 4. Typography ------------------------ */

.kicker {
  font-family: var(--f-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  font-variation-settings: "wdth" 92;
  display: inline-block;
  margin-bottom: .5em;
}
.kicker--ink { color: var(--ink-3); }

.hed {
  font-family: var(--f-hed);
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.hed a { background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0 1px; background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .35s var(--ease), color .2s var(--ease); }
.hed a:hover { color: var(--accent); background-size: 100% 1px; }

.dek {
  font-family: var(--f-body);
  font-size: .96rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin: .55em 0 0;
  text-wrap: pretty;
}

.byline {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: .7em;
  font-variation-settings: "wdth" 95;
}
.byline b { font-weight: 600; color: var(--ink-2); }
.byline .dot { opacity: .45; margin: 0 .45em; }

.tabular { font-variant-numeric: tabular-nums; }

/* --------------------------- 5. Topbar -------------------------- */

.topbar {
  background: var(--paper-inv);
  color: var(--ink-inv);
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.topbar__in {
  display: flex; align-items: center; gap: 18px;
  height: 34px;
}
.topbar__date { font-variation-settings: "wdth" 88; opacity: .82; white-space: nowrap; }
.topbar__spacer { flex: 1; }
.topbar__links { display: flex; gap: 16px; opacity: .82; }
.topbar__links a { transition: opacity .2s var(--ease); }
.topbar__links a:hover { opacity: .6; }

.themebtn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-ui); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase;
  opacity: .82; transition: opacity .2s var(--ease);
}
.themebtn:hover { opacity: 1; }
.themebtn__dot {
  width: 9px; height: 9px; border: 1px solid currentColor; border-radius: 50%;
  background: linear-gradient(90deg, currentColor 0 50%, transparent 50% 100%);
}

/* --------------------------- 6. Ticker -------------------------- */

.ticker {
  border-bottom: var(--rule-w) solid var(--rule);
  background: var(--paper-3);
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex; gap: 0;
  width: max-content;
  animation: slide 64s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }

.quote {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 18px;
  border-right: var(--rule-w) solid var(--rule);
  font-family: var(--f-ui); font-size: 11px;
  white-space: nowrap;
  font-variation-settings: "wdth" 92;
}
.quote__sym { font-weight: 700; letter-spacing: .06em; }
.quote__px  { color: var(--ink-2); font-variant-numeric: tabular-nums; }
.quote__ch  { font-weight: 600; font-variant-numeric: tabular-nums; }
.quote--up   .quote__ch, .quote--up   .spark { color: var(--up); }
.quote--down .quote__ch, .quote--down .spark { color: var(--down); }
.spark { opacity: .85; }

/* -------------------------- 7. Masthead ------------------------- */

.masthead { text-align: center; padding: 26px 0 0; position: relative; }

.masthead__word {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(38px, 8.2vw, 104px);
  line-height: .9;
  letter-spacing: -0.028em;
  margin: 0;
  color: var(--ink);
  font-optical-sizing: auto;
}
.masthead__word a { display: inline-block; }

.masthead__sub {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 14px 0 12px;
  font-family: var(--f-ui);
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-3);
  font-variation-settings: "wdth" 90;
}
.masthead__sub::before,
.masthead__sub::after {
  content: ""; height: 1px; background: var(--rule-2); flex: 1; max-width: 180px;
}

/* ----------------------------- 8. Nav --------------------------- */

.nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-top: 2px solid var(--rule-heavy);
  border-bottom: var(--rule-w) solid var(--rule);
  backdrop-filter: saturate(1.4) blur(6px);
}
.nav__in { display: flex; align-items: stretch; gap: 0; height: 44px; }

.nav__brand {
  display: none; align-items: center; padding-right: 16px;
  font-family: var(--f-display); font-weight: 900; font-size: 19px;
  letter-spacing: -.02em; white-space: nowrap;
  border-right: var(--rule-w) solid var(--rule); margin-right: 16px;
}
.nav.is-stuck .nav__brand { display: flex; }

.nav__list {
  display: flex; align-items: stretch; gap: 0;
  list-style: none; margin: 0; padding: 0;
  overflow-x: auto; scrollbar-width: none;
}
.nav__list::-webkit-scrollbar { display: none; }

.nav__list a {
  display: flex; align-items: center;
  padding: 0 15px;
  font-family: var(--f-ui);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-2); white-space: nowrap;
  font-variation-settings: "wdth" 90;
  position: relative;
  transition: color .2s var(--ease);
}
.nav__list a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__list a:hover { color: var(--ink); }
.nav__list a:hover::after,
.nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.nav__list a[aria-current="page"] { color: var(--accent); }

.nav__end { margin-left: auto; display: flex; align-items: center; gap: 4px; padding-left: 12px; }

.searchbtn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 28px; padding: 0 12px;
  border: var(--rule-w) solid var(--rule-2);
  font-family: var(--f-ui); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.searchbtn:hover { border-color: var(--ink); color: var(--ink); }
.searchbtn kbd {
  font-family: var(--f-ui); font-size: 10px; opacity: .7;
  border: 1px solid var(--rule-2); padding: 0 4px; line-height: 15px;
}

/* --------------------------- 9. Cards --------------------------- */

.card { display: block; position: relative; }
.card + .card { margin-top: 18px; padding-top: 18px; border-top: var(--rule-w) solid var(--rule); }

.card__art {
  position: relative; overflow: hidden;
  background: var(--paper-3);
  margin-bottom: 11px;
  border: var(--rule-w) solid var(--rule);
}
.card__art .art__svg { width: 100%; height: 100%; display: block;
  transition: transform .8s var(--ease); }
.card:hover .card__art .art__svg { transform: scale(1.035); }

/* Photography. The files are already graded to a house look; these
   rules only handle fit, motion and the ink-on-newsprint feel. */
.photo {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  background: var(--paper-3);
  transition: transform .9s var(--ease), filter .4s var(--ease);
}
.card:hover .photo,
.feed > li:hover .photo { transform: scale(1.035); }

/* A newspaper prints photos slightly denser than a screen shows them;
   in the evening edition they must not glare against the dark ground. */
[data-theme="dark"] .photo { filter: brightness(.86) contrast(1.04) saturate(.92); }

.credit {
  font-family: var(--f-ui); font-size: 9.5px; line-height: 1.45;
  letter-spacing: .04em; color: var(--ink-3);
  margin: 5px 0 0; text-transform: none;
}
.credit a { color: inherit; text-decoration: underline;
  text-underline-offset: 2px; text-decoration-thickness: .5px; }
.credit a:hover { color: var(--accent); }

/* Credit overlaid on the hero, bottom-right, like a wire photo slug. */
.art__credit {
  position: absolute; right: 0; bottom: 0;
  background: color-mix(in srgb, var(--paper-inv) 68%, transparent);
  color: var(--ink-inv);
  font-family: var(--f-ui); font-size: 9px; letter-spacing: .06em;
  padding: 3px 7px; max-width: 70%;
  text-align: right; line-height: 1.35;
}
.art__credit a { color: inherit; text-decoration: none; }
.art__credit a:hover { text-decoration: underline; }
.ar-16x9 { aspect-ratio: 16 / 9; }
.ar-3x2  { aspect-ratio: 3 / 2; }
.ar-4x3  { aspect-ratio: 4 / 3; }
.ar-1x1  { aspect-ratio: 1 / 1; }

.card .hed { font-size: 1.12rem; }

/* Lead well */
.lead .hed {
  font-size: clamp(30px, 4.1vw, 54px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.026em;
}
.lead .dek { font-size: 1.06rem; margin-top: .6em; max-width: 46ch; }
.lead .card__art { margin-bottom: 16px; }

/* Horizontal list card */
.card--row { display: grid; grid-template-columns: 1fr 104px; gap: 14px; align-items: start; }
.card--row .card__art { margin-bottom: 0; }
.card--row .hed { font-size: 1rem; }

/* Numbered digest */
.digest { list-style: none; margin: 0; padding: 0; counter-reset: d; }
.digest li {
  counter-increment: d;
  padding: 13px 0;
  border-top: var(--rule-w) solid var(--rule);
  display: grid; grid-template-columns: 26px 1fr; gap: 10px;
}
.digest li:first-child { border-top: 0; padding-top: 0; }
.digest li::before {
  content: counter(d, decimal-leading-zero);
  font-family: var(--f-ui); font-size: 11px; font-weight: 700;
  color: var(--accent); letter-spacing: .04em; padding-top: 3px;
  font-variant-numeric: tabular-nums;
}
.digest .hed { font-size: .96rem; font-weight: 600; line-height: 1.28; }
.digest .byline { margin-top: .4em; font-size: 10px; }

/* ------------------------ 10. Front grid ------------------------ */

.front {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 var(--col-gap);
  padding: 22px 0 8px;
}
.front__rail-l { grid-column: span 3; }
.front__main   { grid-column: span 6; padding-inline: var(--col-gap);
  border-inline: var(--rule-w) solid var(--rule); }
.front__rail-r { grid-column: span 3; }

.railhead {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px;
  border-bottom: 2px solid var(--rule-heavy);
  padding-bottom: 7px; margin-bottom: 14px;
}
.railhead h2 {
  font-family: var(--f-ui); font-size: 12px; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase; margin: 0;
  font-variation-settings: "wdth" 88;
}
.railhead__more {
  font-family: var(--f-ui); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
}
.railhead__more:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Markets rail */
.mkt { list-style: none; margin: 0; padding: 0; }
.mkt li {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 10px;
  padding: 8px 0;
  border-bottom: var(--rule-w) solid var(--rule);
  font-family: var(--f-ui); font-size: 11.5px;
  font-variation-settings: "wdth" 92;
}
.mkt__name { font-weight: 600; letter-spacing: .02em; }
.mkt__px { font-variant-numeric: tabular-nums; color: var(--ink-2); }
.mkt__ch { font-variant-numeric: tabular-nums; font-weight: 700; min-width: 56px; text-align: right; }
.mkt .up { color: var(--up); }
.mkt .down { color: var(--down); }

.railnote {
  font-family: var(--f-ui); font-size: 10px; letter-spacing: .06em;
  color: var(--ink-3); margin-top: 10px; line-height: 1.5;
}

/* Opinion strip in rail */
.oped { display: grid; grid-template-columns: 52px 1fr; gap: 12px; padding: 13px 0;
  border-bottom: var(--rule-w) solid var(--rule); align-items: start; }
.oped .hedcut { width: 52px; height: 52px; border: var(--rule-w) solid var(--rule); background: var(--paper-3); }
.oped .hed { font-size: .95rem; font-weight: 600; line-height: 1.26; font-style: italic; }
.oped .byline { margin-top: .35em; font-size: 10px; }

/* ----------------------- 11. Section blocks --------------------- */

.block { padding: 30px 0; border-top: 2px solid var(--rule-heavy); }
.block__head {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px;
}
.block__head h2 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(20px, 2.3vw, 29px); letter-spacing: -.02em; margin: 0;
}
.block__head p {
  font-family: var(--f-ui); font-size: 11px; color: var(--ink-3);
  letter-spacing: .04em; margin: 0; flex: 1;
  border-bottom: var(--rule-w) dotted var(--rule-2); padding-bottom: 5px;
}

.cols {
  display: grid; gap: var(--col-gap);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.cols > * { padding-left: var(--col-gap); border-left: var(--rule-w) solid var(--rule); }
.cols > *:first-child { padding-left: 0; border-left: 0; }

.cols--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cols--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* -------------------------- 12. Article ------------------------- */

.artpage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 var(--col-gap);
  padding: 26px 0 10px;
}
.artpage__main { grid-column: 2 / span 7; }
.artpage__side { grid-column: 10 / span 3; }

.crumbs {
  font-family: var(--f-ui); font-size: 10.5px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px;
}
.crumbs a { color: var(--accent); }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }
.crumbs .sep { opacity: .4; margin: 0 .5em; }

.artpage h1 {
  font-family: var(--f-hed); font-weight: 800;
  font-size: clamp(30px, 4.3vw, 50px);
  line-height: 1.06; letter-spacing: -.026em;
  margin: 0 0 .28em; text-wrap: balance;
}
.artpage .dek {
  font-size: 1.16rem; line-height: 1.48; color: var(--ink-2);
  margin: 0 0 20px; max-width: 54ch;
}

.artmeta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  padding: 13px 0; margin-bottom: 22px;
  border-top: var(--rule-w) solid var(--rule);
  border-bottom: var(--rule-w) solid var(--rule);
  font-family: var(--f-ui); font-size: 11px;
  letter-spacing: .06em; color: var(--ink-3);
}
.artmeta__by { display: flex; align-items: center; gap: 9px; }
.artmeta__by .hedcut { width: 34px; height: 34px; border: var(--rule-w) solid var(--rule); }
.artmeta__by b { display: block; font-size: 12px; color: var(--ink);
  letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }
.artmeta__by span { font-size: 10.5px; }
.artmeta__t { margin-left: auto; text-transform: uppercase; }

figure.art { margin: 0 0 26px; }
figure.art .card__art { margin-bottom: 0; }
figure.art figcaption {
  font-family: var(--f-ui); font-size: 10.5px; line-height: 1.5;
  color: var(--ink-3); padding-top: 8px; letter-spacing: .03em;
  border-bottom: var(--rule-w) solid var(--rule); padding-bottom: 9px;
}
figure.art figcaption b { color: var(--ink-2); font-weight: 600; }
figure.art figcaption .credit { display: block; margin-top: 4px; }

/* The data graphic runs inside the article, the way a paper sets a
   chart into the column rather than at the top of the page. */
figure.art--chart {
  margin: 2em 0;
  padding-top: 18px;
  border-top: 2px solid var(--rule-heavy);
}
figure.art--chart .card__art { border: 0; background: transparent; }
figure.art--chart figcaption {
  border-bottom: 0; padding-bottom: 0;
  font-size: 10px; letter-spacing: .06em;
}
figure.art--chart figcaption b {
  display: block; color: var(--accent);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; margin-bottom: 3px;
}

.prose { font-size: 1.075rem; line-height: 1.68; color: var(--ink); }
.prose > p { margin: 0 0 1.05em; text-wrap: pretty; }
.prose > p:first-of-type::first-letter {
  float: left;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 4.4em;
  line-height: .78;
  margin: .05em .09em -.04em 0;
  color: var(--accent);
}
.prose h2 {
  font-family: var(--f-hed); font-weight: 700;
  font-size: 1.36rem; letter-spacing: -.012em;
  margin: 1.9em 0 .55em; line-height: 1.22;
}
.prose h3 {
  font-family: var(--f-ui); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  margin: 1.9em 0 .5em; font-variation-settings: "wdth" 92;
}
.prose a { color: var(--accent); text-decoration: underline;
  text-underline-offset: 2px; text-decoration-thickness: 1px; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.1em; }
.prose li { margin-bottom: .5em; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul > li { padding-left: 1.25em; position: relative; }
.prose ul > li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; background: var(--accent);
}
.prose strong { font-weight: 700; }

.pull {
  margin: 1.8em 0; padding: 20px 0;
  border-top: 2px solid var(--rule-heavy);
  border-bottom: 2px solid var(--rule-heavy);
  font-family: var(--f-hed); font-style: italic; font-weight: 500;
  font-size: 1.42rem; line-height: 1.32; letter-spacing: -.012em;
  color: var(--ink); text-wrap: balance;
}
.pull cite {
  display: block; margin-top: .6em; font-family: var(--f-ui);
  font-style: normal; font-size: 10.5px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-3);
}

/* Data table */
.datatable { margin: 1.8em 0; }
.datatable table { width: 100%; border-collapse: collapse; font-family: var(--f-ui); font-size: 12.5px; }
.datatable caption {
  text-align: left; font-family: var(--f-ui); font-size: 10.5px;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); padding-bottom: 9px;
}
.datatable th {
  text-align: left; font-weight: 700; font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3);
  padding: 7px 10px 7px 0; border-bottom: 1.5px solid var(--rule-heavy);
}
.datatable td {
  padding: 9px 10px 9px 0; border-bottom: var(--rule-w) solid var(--rule);
  color: var(--ink-2);
}
.datatable td:first-child { color: var(--ink); font-weight: 600; }
.datatable .num { text-align: right; font-variant-numeric: tabular-nums; padding-right: 0; }
.datatable tfoot td { border-bottom: 0; font-size: 10.5px; color: var(--ink-3); padding-top: 9px; }

/* Key-points box */
.keypoints {
  border: var(--rule-w) solid var(--rule-2);
  background: var(--paper-3);
  padding: 18px 20px; margin: 0 0 26px;
}
.keypoints h2 {
  font-family: var(--f-ui); font-size: 10.5px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
  margin: 0 0 11px;
}
.keypoints ul { margin: 0; padding: 0; list-style: none; }
.keypoints li {
  font-size: .95rem; line-height: 1.5; padding-left: 1.15em;
  position: relative; margin-bottom: .55em; color: var(--ink-2);
}
.keypoints li:last-child { margin-bottom: 0; }
.keypoints li::before {
  content: ""; position: absolute; left: 0; top: .56em;
  width: 5px; height: 5px; background: var(--accent);
}

.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 30px 0 0;
  padding-top: 18px; border-top: var(--rule-w) solid var(--rule); }
.tag {
  font-family: var(--f-ui); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3);
  border: var(--rule-w) solid var(--rule-2); padding: 5px 9px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.tag:hover { color: var(--accent); border-color: var(--accent); }

.authorbox {
  display: grid; grid-template-columns: 74px 1fr; gap: 16px;
  margin-top: 26px; padding-top: 20px; border-top: 2px solid var(--rule-heavy);
}
.authorbox .hedcut { width: 74px; height: 74px; border: var(--rule-w) solid var(--rule); }
.authorbox h3 { font-family: var(--f-hed); font-size: 1.05rem; margin: 0 0 3px; font-weight: 700; }
.authorbox .role { font-family: var(--f-ui); font-size: 10.5px;
  letter-spacing: .13em; text-transform: uppercase; color: var(--accent); margin: 0 0 8px; }
.authorbox p { margin: 0; font-size: .92rem; line-height: 1.52; color: var(--ink-2); }

/* Sticky article sidebar */
.sidestick { position: sticky; top: 62px; }

/* Reading-progress rule */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: transparent; z-index: 80; pointer-events: none;
}
.progress__bar { height: 100%; width: 0; background: var(--accent); transition: width .1s linear; }

/* --------------------- 13. Section / archive -------------------- */

.pagehead { padding: 34px 0 22px; border-bottom: 2px solid var(--rule-heavy); }
.pagehead h1 {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(32px, 5.4vw, 62px); letter-spacing: -.03em;
  margin: 0; line-height: 1;
}
.pagehead p {
  font-family: var(--f-body); font-size: 1.02rem; color: var(--ink-2);
  margin: .7em 0 0; max-width: 58ch;
}
.pagehead .kicker { margin-bottom: .9em; }

.yearbar {
  display: flex; flex-wrap: wrap; gap: 0;
  border-bottom: var(--rule-w) solid var(--rule);
  margin-bottom: 4px;
}
.yearbar a {
  font-family: var(--f-ui); font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; padding: 11px 15px;
  color: var(--ink-3); border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color .2s var(--ease), border-color .2s var(--ease);
  font-variant-numeric: tabular-nums;
}
.yearbar a:hover { color: var(--ink); }
.yearbar a[aria-current="page"] { color: var(--accent); border-bottom-color: var(--accent); }

.feed { list-style: none; margin: 0; padding: 0; }
.feed > li {
  display: grid; grid-template-columns: 108px 1fr 200px;
  gap: 22px; align-items: start;
  padding: 22px 0; border-bottom: var(--rule-w) solid var(--rule);
}
.feed__date {
  font-family: var(--f-ui); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3); padding-top: 3px;
  font-variant-numeric: tabular-nums;
}
.feed__date b { display: block; color: var(--accent); font-weight: 700; font-size: 11px; }
.feed .hed { font-size: 1.28rem; }
.feed .dek { font-size: .95rem; }
.feed__art { border: var(--rule-w) solid var(--rule); overflow: hidden; background: var(--paper-3); }
.feed__art .art__svg { width: 100%; height: 100%; transition: transform .8s var(--ease); }
.feed > li:hover .feed__art .art__svg { transform: scale(1.04); }

/* --------------------------- 14. Search ------------------------- */

.overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(22, 19, 15, .62); /* fallback for older engines */
  background: color-mix(in srgb, var(--paper-inv) 62%, transparent);
  backdrop-filter: blur(4px);
  display: none; padding: 8vh var(--gutter) 0;
}
.overlay[open], .overlay.is-open { display: block; animation: fade .2s var(--ease); }
@keyframes fade { from { opacity: 0; } }

.searchbox {
  max-width: 660px; margin-inline: auto;
  background: var(--paper); border: 2px solid var(--rule-heavy);
}
.searchbox__top { display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-bottom: var(--rule-w) solid var(--rule); }
.searchbox input {
  flex: 1; border: 0; background: none; outline: none;
  font-family: var(--f-hed); font-size: 1.3rem; color: var(--ink);
}
.searchbox input::placeholder { color: var(--ink-3); opacity: .7; }
.searchbox__close { font-family: var(--f-ui); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
  border: var(--rule-w) solid var(--rule-2); padding: 5px 8px; }
.searchbox__results { max-height: 54vh; overflow-y: auto; }
.sresult {
  display: block; padding: 14px 18px;
  border-bottom: var(--rule-w) solid var(--rule);
  transition: background .15s var(--ease);
}
.sresult:hover, .sresult.is-active { background: var(--paper-3); }
.sresult .kicker { margin-bottom: .3em; }
.sresult b { display: block; font-family: var(--f-hed); font-weight: 600;
  font-size: 1rem; line-height: 1.3; margin-bottom: .2em; }
.sresult span { font-family: var(--f-ui); font-size: 10.5px;
  letter-spacing: .06em; color: var(--ink-3); text-transform: uppercase; }
.searchbox__empty { padding: 28px 18px; font-family: var(--f-ui);
  font-size: 12px; color: var(--ink-3); letter-spacing: .05em; text-align: center; }

/* --------------------------- 15. Footer ------------------------- */

.foot { margin-top: 44px; border-top: 3px double var(--rule-heavy);
  background: var(--paper-3); }
.foot__top { padding: 34px 0 28px; text-align: center;
  border-bottom: var(--rule-w) solid var(--rule); }
.foot__word { font-family: var(--f-display); font-weight: 900;
  font-size: clamp(26px, 4.4vw, 46px); letter-spacing: -.026em; margin: 0 0 8px; }
.foot__tag { font-family: var(--f-ui); font-size: 10.5px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--ink-3); margin: 0; }

.foot__cols {
  display: grid; gap: var(--col-gap);
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  padding: 28px 0;
}
.foot__cols h3 {
  font-family: var(--f-ui); font-size: 10px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
  margin: 0 0 12px; padding-bottom: 8px;
  border-bottom: var(--rule-w) solid var(--rule);
}
.foot__cols ul { list-style: none; margin: 0; padding: 0; }
.foot__cols li { margin-bottom: 7px; }
.foot__cols a { font-family: var(--f-ui); font-size: 12px; color: var(--ink-2);
  transition: color .2s var(--ease); }
.foot__cols a:hover { color: var(--accent); }

.foot__legal {
  padding: 18px 0 32px; border-top: var(--rule-w) solid var(--rule);
  font-family: var(--f-ui); font-size: 10.5px; line-height: 1.7;
  color: var(--ink-3); letter-spacing: .04em;
  display: flex; flex-wrap: wrap; gap: 6px 20px; align-items: center;
}
.foot__legal .disclosure { flex-basis: 100%; max-width: 78ch; opacity: .9; }

/* -------------------------- 16. Motion -------------------------- */

.reveal { opacity: 0; transform: translateY(14px);
  animation: rise .7s var(--ease) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.reveal[style*="--d"] { animation-delay: var(--d); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .ticker__track { animation: none; }
}

/* ------------------------ 17. Responsive ------------------------ */

@media (max-width: 1080px) {
  .front__rail-l { grid-column: span 4; }
  .front__main   { grid-column: span 8; border-right: 0; padding-right: 0; }
  .front__rail-r { grid-column: span 12; padding-top: 26px; margin-top: 26px;
    border-top: 2px solid var(--rule-heavy); }
  .front__rail-r .rail__inner { display: grid; gap: var(--col-gap);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .artpage__main { grid-column: 1 / span 8; }
  .artpage__side { grid-column: 9 / span 4; }
  .cols--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cols--4 > *:nth-child(3) { padding-left: 0; border-left: 0; }
  .cols--4 > * { padding-top: 0; }
  .cols--4 > *:nth-child(n+3) { padding-top: var(--col-gap); margin-top: var(--col-gap);
    border-top: var(--rule-w) solid var(--rule); }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .topbar__links { display: none; }
  .front { display: block; padding-top: 18px; }
  .front__rail-l, .front__main, .front__rail-r {
    border: 0; padding-inline: 0; }
  .front__main { padding-top: 24px; margin-top: 24px;
    border-top: 2px solid var(--rule-heavy); }
  .front__rail-r { padding-top: 24px; margin-top: 24px; }
  .artpage { display: block; padding-top: 18px; }
  .artpage__side { margin-top: 34px; padding-top: 24px;
    border-top: 2px solid var(--rule-heavy); }
  .sidestick { position: static; }
  .cols--3, .cols--2, .cols--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feed > li { grid-template-columns: 1fr 120px; }
  .feed__date { grid-column: 1 / -1; padding-top: 0; }
  .feed__date b { display: inline; margin-right: .5em; }
}

@media (max-width: 600px) {
  .masthead { padding-top: 18px; }
  .masthead__sub { letter-spacing: .2em; font-size: 9.5px; }
  .masthead__sub::before, .masthead__sub::after { max-width: 40px; }
  .cols, .cols--3, .cols--2, .cols--4 { grid-template-columns: 1fr; }
  .cols > * { padding-left: 0; border-left: 0; }
  .cols > * + * { padding-top: 18px; margin-top: 18px;
    border-top: var(--rule-w) solid var(--rule); }
  .cols--4 > *:nth-child(n+3) { margin-top: 18px; padding-top: 18px; }
  .feed > li { grid-template-columns: 1fr; gap: 12px; }
  .feed__art { max-width: 100%; aspect-ratio: 16/9; }
  .artmeta__t { margin-left: 0; flex-basis: 100%; }
  .authorbox { grid-template-columns: 1fr; }
  .prose > p:first-of-type::first-letter { font-size: 3.6em; }
  .searchbtn kbd { display: none; }
}

/* --------------------------- 18. Print -------------------------- */

@media print {
  body::before, .nav, .ticker, .topbar, .overlay, .progress, .foot__cols { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .artpage { display: block; }
  .artpage__side { display: none; }
  a { text-decoration: none; color: #000; }
}
