@charset "UTF-8";
/* ==========================================================================
   Sovereign Terminal — Graphite & Copper
   --------------------------------------------------------------------------
   A finance newsroom furnished like a quiet showroom: graphite plates, one
   copper accent, steel blue and mist for the calmer panels, white ground.
   One typeface, Schibsted Grotesk, set heavy and tight for headlines and
   with tabular figures for numbers.

   The one ornament is the pendant: a copper sphere and a glass one hanging
   on hairlines into the lead photograph, and the soft spheres that echo it
   on the newsletter panels.

   Contents
     1. Tokens
     2. Base
     3. Buttons, chips, eyebrows
     4. Utility bar & masthead
     5. Sticky bar & drawer
     6. Hero
     7. Long-view figures
     8. Section heads & bands
     9. Showcase, bento, strip
    10. Cards & grids
    11. Latest
    12. Newsletter band
    13. Page heroes, single post, pages
    14. Sidebar & widgets
    15. Opt-in form & modal
    16. Footer
    17. Data widgets (century, political control, market history)
    18. Utilities
   ========================================================================== */


/* ═══ 1. Tokens ═══════════════════════════════════════════════════════════ */

:root {
	--graphite:   #25272d;
	--graphite-2: #30333a;
	--graphite-3: #454952;
	--on-dark:    #c9cdd5;
	--on-dark-2:  #9aa0ab;

	--copper:      #d9804f;
	--copper-hi:   #e6956a;
	--copper-ink:  #a4532a;
	--copper-soft: #f7e6da;
	/* Fills that carry white text: 4.8:1 against #fff. The brighter
	   --copper stays for rules, dots and marks, where no text sits on it. */
	--copper-fill:    #b05b2c;
	--copper-fill-hi: #974b22;

	--steel:   #3d5e8c;
	--steel-2: #2f4c74;
	--on-steel: #d6e0ee;

	--mist:   #e6ebf2;
	--mist-2: #f3f5f9;

	--ink:   #1e2026;
	--body:  #464b56;
	--muted: #6b717d;
	--line:  #dde2e9;
	--line-2: #c6cdd7;

	--up:   #2f8a5b;
	--down: #c0433a;

	/* Aliases read by assets/js/market-history.js. */
	--navy: var(--steel);
	--gold: var(--copper);

	--font: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;

	--r-sm: 4px;
	--r-md: 6px;
	--r-lg: 10px;

	--gutter: clamp(16px, 3.5vw, 40px);
	--gap: clamp(1rem, .6rem + 1.2vw, 1.75rem);
	--band: clamp(3rem, 2rem + 3.5vw, 5.5rem);

	--ease: cubic-bezier(.3, .7, .2, 1);
	--shadow: 0 18px 40px -22px rgba(30, 32, 38, .45);

	--logo-h: 40px;
}


/* ═══ 2. Base ═════════════════════════════════════════════════════════════ */

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

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

body {
	margin: 0;
	overflow-x: hidden;
	background: #fff;
	color: var(--body);
	font-family: var(--font);
	font-size: 1.0625rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body.st-modal-open { overflow: hidden; }

img,
svg,
video { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	color: var(--ink);
	font-weight: 750;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

p { margin: 0 0 1em; }

a {
	color: inherit;
	text-decoration: none;
	transition: color .2s var(--ease);
}

ul, ol { margin: 0; padding: 0; }

button,
input,
select,
textarea { font: inherit; color: inherit; }

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

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

.container {
	width: 100%;
	max-width: calc(1280px + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.site-main { display: block; }

.icon {
	width: 1.15em;
	height: 1.15em;
	flex: none;
}

/* The logo: the Customizer image, or the site title as a wordmark. */
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo {
	width: auto;
	max-height: var(--logo-h);
	max-width: min(240px, 52vw);
}
.site-logo {
	font-size: 1.45rem;
	font-weight: 850;
	letter-spacing: -0.035em;
	color: var(--ink);
	white-space: nowrap;
}


/* ═══ 3. Buttons, chips, eyebrows ═════════════════════════════════════════ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	min-height: 44px;
	padding: .7rem 1.25rem;
	border: 1px solid transparent;
	border-radius: var(--r-md);
	font-size: .92rem;
	font-weight: 650;
	line-height: 1.1;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }

/* White on the darker copper fill, which clears 4.5:1. */
.btn--copper { background: var(--copper-fill); color: #fff; }
.btn--copper:hover { background: var(--copper-fill-hi); color: #fff; }

.btn--dark { background: var(--graphite); color: #fff; }
.btn--dark:hover { background: var(--graphite-3); color: #fff; }

.btn--line { border-color: var(--line-2); color: var(--ink); }
.btn--line:hover { border-color: var(--ink); }

.btn--sm { min-height: 36px; padding: .5rem .95rem; font-size: .85rem; }
.btn--lg { min-height: 50px; padding: .85rem 1.6rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

/* The desk marker above a headline: a copper square and the desk's name. */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	margin-bottom: .6rem;
	font-size: .8rem;
	font-weight: 650;
	letter-spacing: .01em;
	color: var(--copper-ink);
}
.eyebrow::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--copper);
}
a.eyebrow:hover { color: var(--ink); }

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}
.chip {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: .4rem .9rem;
	border: 1px solid var(--line-2);
	border-radius: var(--r-md);
	font-size: .88rem;
	font-weight: 600;
	color: var(--ink);
	background: #fff;
}
.chip:hover { border-color: var(--graphite); background: var(--graphite); color: #fff; }

.placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: var(--mist);
	color: var(--steel);
}
.placeholder .icon { width: 30%; height: 30%; max-width: 44px; opacity: .55; }

/* Photographs fill whatever frame they sit in. */
.hero__media img,
.showcase__media img,
.tile__media img,
.strip__media img,
.card__media img,
.mini__media img,
.row-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s var(--ease);
}


/* ═══ 4. Utility bar & masthead ═══════════════════════════════════════════ */

.utility {
	background: var(--graphite);
	color: var(--on-dark);
	font-size: .78rem;
}
.utility__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 38px;
}
.utility__date { margin: 0; white-space: nowrap; color: var(--on-dark-2); }

.sessions {
	/* Positioned so the visually-hidden labels inside are clipped by the
	   strip rather than widening the page. */
	position: relative;
	display: flex;
	gap: 1.25rem;
	list-style: none;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
}
.sessions::-webkit-scrollbar { display: none; }

.session {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}
.session__exchange { font-weight: 650; color: #fff; }
.session__time { color: var(--on-dark-2); }
.session__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--graphite-3);
	box-shadow: inset 0 0 0 1px var(--on-dark-2);
}
.session.is-open .session__dot {
	background: #5fd39a;
	box-shadow: 0 0 0 3px rgba(95, 211, 154, .18);
}

.site-header {
	position: relative;
	z-index: 40;
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.masthead {
	display: flex;
	align-items: center;
	gap: 2rem;
	min-height: 78px;
}
.masthead__brand { flex: none; }
.masthead__nav { flex: 1; display: flex; justify-content: center; }
.masthead__action { flex: none; }

.nav-list {
	display: flex;
	align-items: center;
	gap: .25rem;
	list-style: none;
}
.nav-list > li { position: relative; }
.nav-list a {
	position: relative;
	display: block;
	padding: .55rem .8rem;
	font-size: .95rem;
	font-weight: 600;
	color: var(--ink);
}
.nav-list > li > a::after {
	content: "";
	position: absolute;
	left: .8rem;
	right: .8rem;
	bottom: .15rem;
	height: 2px;
	background: var(--copper);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s var(--ease);
}
.nav-list > li > a:hover::after,
.nav-list > .current-menu-item > a::after,
.nav-list > .current-menu-parent > a::after,
.nav-list > .current-category-ancestor > a::after { transform: none; }

/* One level of sub-menu, dropped below its parent on hover or focus. */
.nav-primary .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 5;
	min-width: 220px;
	padding: .5rem;
	list-style: none;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav-primary li:hover > .sub-menu,
.nav-primary li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.nav-primary .sub-menu a { padding: .5rem .7rem; border-radius: var(--r-sm); }
.nav-primary .sub-menu a:hover { background: var(--mist-2); }

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	margin-left: auto;
	padding: 0 12px;
	border: 1px solid var(--line-2);
	border-radius: var(--r-md);
	background: #fff;
	cursor: pointer;
}
.menu-toggle span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--ink);
}
.menu-toggle span:nth-child(2) { width: 70%; background: var(--copper); }


/* ═══ 5. Sticky bar & drawer ══════════════════════════════════════════════ */

.site-header--sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 60;
	background: rgba(255, 255, 255, .96);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 10px 30px -24px rgba(30, 32, 38, .6);
	transform: translateY(-105%);
	transition: transform .35s var(--ease);
}
.site-header--sticky.is-visible { transform: none; }
.admin-bar .site-header--sticky { top: 32px; }
@media (max-width: 782px) {
	.admin-bar .site-header--sticky { top: 46px; }
}

.stickybar {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 60px;
}
.stickybar .custom-logo { max-height: min(var(--logo-h), 30px); }
.stickybar .nav-primary { flex: 1; display: flex; justify-content: center; }
.stickybar .nav-list a { font-size: .9rem; padding: .45rem .7rem; }

.nav-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	display: flex;
	flex-direction: column;
	width: min(400px, 100%);
	padding: 1.1rem var(--gutter) 1.5rem;
	overflow-y: auto;
	background: var(--graphite);
	color: #fff;
	transform: translateX(102%);
	visibility: hidden;
	transition: transform .4s var(--ease), visibility .4s;
}
/* Visible at once on opening — a transitioned visibility would still be
   hidden when main.js moves focus to the close button, and the browser
   refuses focus to a hidden element. The delay applies on closing only. */
.nav-drawer.is-open { transform: none; visibility: visible; transition: transform .4s var(--ease), visibility 0s; }

.nav-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid var(--graphite-3);
}
.nav-drawer__brand .custom-logo { filter: brightness(0) invert(1); max-height: min(var(--logo-h), 34px); }
.nav-drawer__brand .site-logo { color: #fff; }

.nav-close {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	flex: none;
	border: 1px solid var(--graphite-3);
	border-radius: var(--r-md);
	background: transparent;
	color: #fff;
	cursor: pointer;
}
.nav-close svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.nav-close:hover { border-color: var(--copper); color: var(--copper); }

.nav-drawer__nav { padding: .75rem 0 1.5rem; }
.nav-drawer__nav .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
.nav-drawer__nav .nav-list a {
	padding: .95rem 0;
	border-bottom: 1px solid var(--graphite-2);
	font-size: 1.3rem;
	font-weight: 650;
	letter-spacing: -0.01em;
	color: #fff;
}
.nav-drawer__nav .nav-list > li > a::after { display: none; }
.nav-drawer__nav .nav-list a:hover { color: var(--copper-hi); }
.nav-drawer__nav .sub-menu { list-style: none; padding-left: 1rem; }
.nav-drawer__nav .sub-menu a { font-size: 1.05rem; color: var(--on-dark); }

.nav-drawer__card {
	position: relative;
	margin-top: auto;
	padding: 1.4rem;
	overflow: hidden;
	border-radius: var(--r-lg);
	background: var(--steel);
}
.nav-drawer__pitch {
	position: relative;
	max-width: 24ch;
	margin: .4rem 0 1.1rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #fff;
}
.nav-drawer__orb {
	position: absolute;
	top: -40px;
	right: -40px;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #fff 0, #dfe6f0 35%, #95a9c6 100%);
	opacity: .9;
}

.nav-scrim {
	position: fixed;
	inset: 0;
	z-index: 80;
	background: rgba(20, 22, 27, .55);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s var(--ease), visibility .3s;
}
.nav-scrim.is-open { opacity: 1; visibility: visible; }


/* ═══ 6. Hero ═════════════════════════════════════════════════════════════ */

.hero { padding-top: clamp(1rem, .6rem + 1.2vw, 1.75rem); }

.hero__plate {
	position: relative;
	overflow: hidden;
	border-radius: var(--r-lg);
	background:
		radial-gradient(ellipse 60% 70% at 72% 20%, rgba(217, 128, 79, .12), transparent 70%),
		var(--graphite);
	color: var(--on-dark);
}

/* Every slide occupies the same cell, so the stage is as tall as the
   tallest slide and nothing jumps as they change. */
.hero__stage {
	position: relative;
	display: grid;
}

.hero-slide {
	grid-area: 1 / 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	align-items: stretch;
	min-height: clamp(420px, 34vw, 540px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .6s var(--ease), visibility .6s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }

.hero__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 1.2rem + 3vw, 4rem);
}
.hero__body .eyebrow { color: var(--copper-hi); }

/* The text rises in as its slide arrives. */
@media (prefers-reduced-motion: no-preference) {
	.hero__plate.is-enhanced .hero-slide.is-active .hero__body > * {
		animation: hero-rise .7s var(--ease) both;
	}
	.hero__plate.is-enhanced .hero-slide.is-active .hero__title { animation-delay: .06s; }
	.hero__plate.is-enhanced .hero-slide.is-active .hero__excerpt { animation-delay: .12s; }
	.hero__plate.is-enhanced .hero-slide.is-active .hero__actions { animation-delay: .18s; }
}
@keyframes hero-rise { from { opacity: 0; transform: translateY(14px); } }

.hero__title {
	font-size: clamp(2rem, 1.2rem + 2.6vw, 3.6rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.035em;
	color: #fff;
}
.hero-slide.lead--medium .hero__title { font-size: clamp(1.85rem, 1.15rem + 2.1vw, 3rem); }
.hero-slide.lead--long .hero__title { font-size: clamp(1.65rem, 1.1rem + 1.6vw, 2.5rem); }
.hero__title a:hover { color: var(--copper-hi); }

.hero__excerpt {
	max-width: 52ch;
	margin: 1.25rem 0 0;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--on-dark);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.5rem;
	margin-top: 2rem;
}
.hero__meta {
	display: inline-flex;
	gap: 1rem;
	font-size: .85rem;
	color: var(--on-dark-2);
}
.hero__meta > * + *::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	margin-right: 1rem;
	border-radius: 50%;
	background: var(--copper);
	vertical-align: middle;
}

.hero__media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--graphite-2);
}
.hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--graphite) 0, rgba(37, 39, 45, .55) 12%, rgba(37, 39, 45, 0) 32%);
	pointer-events: none;
}
.hero-slide.is-active .hero__media img { animation: hero-settle 7s linear both; }
@keyframes hero-settle { from { transform: scale(1.05); } }
@media (prefers-reduced-motion: reduce) {
	.hero-slide.is-active .hero__media img { animation: none; }
}

/* ── The pendants ─────────────────────────────────────────────────────────
   Two lamps on hairlines, hung once over the stage at the seam where the
   photograph fades into the plate — clear of the subject, who is rarely at
   the edge of a frame — so they stay put while the slides change beneath
   them. A copper sphere and a glass one; they sway once on load. The seam
   sits at 1 / 2.05 of the stage: the body and media columns are 1fr and
   1.05fr. */
.pendant {
	position: absolute;
	top: 0;
	z-index: 2;
	width: 1px;
	background: rgba(255, 255, 255, .55);
	transform-origin: 50% 0;
	pointer-events: none;
}
.pendant::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	border-radius: 50%;
	transform: translateX(-50%);
}
.pendant--copper { left: 52.4%; height: 38%; }
.pendant--copper::after {
	width: 46px;
	height: 46px;
	background: radial-gradient(circle at 34% 30%, #ffd9bf 0, #e6956a 28%, #a4532a 78%, #6f3517 100%);
	box-shadow: 0 0 60px 10px rgba(230, 149, 106, .35);
}
.pendant--glass { left: 55.5%; height: 21%; }
.pendant--glass::after {
	width: 30px;
	height: 30px;
	background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .95) 0, rgba(214, 224, 238, .6) 30%, rgba(61, 94, 140, .45) 100%);
	box-shadow: 0 0 30px rgba(214, 224, 238, .35);
}
@media (prefers-reduced-motion: no-preference) {
	.pendant--copper { animation: sway 3.4s cubic-bezier(.36, 0, .3, 1) .3s both; }
	.pendant--glass { animation: sway 3s cubic-bezier(.36, 0, .3, 1) .5s both; }
}
@keyframes sway {
	0% { transform: rotate(7deg); }
	30% { transform: rotate(-4.5deg); }
	55% { transform: rotate(2.2deg); }
	78% { transform: rotate(-.8deg); }
	100% { transform: rotate(0); }
}

/* ── Controls: counter, previous, pause, next ─────────────────────────── */
.hero__controls {
	position: absolute;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: .4rem;
	padding: .35rem .35rem .35rem .9rem;
	border-radius: var(--r-md);
	background: rgba(37, 39, 45, .72);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.hero__controls[hidden] { display: none; }
.hero__counter {
	margin-right: .4rem;
	font-size: .85rem;
	font-weight: 700;
	color: #fff;
	font-variant-numeric: tabular-nums;
}
.hero__total { color: var(--on-dark-2); font-weight: 500; }
.hero__btn {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: var(--r-sm);
	background: transparent;
	color: #fff;
	cursor: pointer;
	transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.hero__btn:hover { background: var(--copper-fill); border-color: var(--copper-fill); }
.hero__btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero__btn .hero__icon-play { fill: currentColor; stroke: none; }
.hero__icon-play,
.hero__btn--toggle.is-paused .hero__icon-pause { display: none; }
.hero__btn--toggle.is-paused .hero__icon-play { display: block; }

/* ── Story tabs ─────────────────────────────────────────────────────────── */
.hero__tabs {
	display: grid;
	grid-auto-columns: minmax(0, 1fr);
	grid-auto-flow: column;
	border-top: 1px solid var(--graphite-3);
}
.hero-tab {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: .35rem;
	padding: 1.35rem clamp(1.1rem, .7rem + 1.2vw, 1.75rem) 1.5rem;
	color: var(--on-dark-2);
	transition: background-color .3s var(--ease);
}
.hero-tab + .hero-tab { border-left: 1px solid var(--graphite-3); }
.hero-tab:hover { background: var(--graphite-2); }

/* The progress bar sits on the tab's top edge, over the divider line. */
.hero-tab__bar {
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 3px;
	overflow: hidden;
}
.hero-tab__fill {
	display: block;
	height: 100%;
	background: var(--copper);
	transform: scaleX(0);
	transform-origin: left;
}
.hero-tab.is-active .hero-tab__fill { transform: none; }
.hero__plate.is-running .hero-tab.is-active .hero-tab__fill {
	animation: hero-fill var(--hero-interval, 7s) linear both;
}
.hero__plate.is-held .hero-tab.is-active .hero-tab__fill { animation-play-state: paused; }
@keyframes hero-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-tab__desk { font-size: .76rem; font-weight: 650; color: var(--copper-hi); }
.hero-tab__title {
	font-size: .98rem;
	font-weight: 650;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--on-dark);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color .2s var(--ease);
}
.hero-tab.is-active .hero-tab__title,
.hero-tab:hover .hero-tab__title { color: #fff; }


/* ═══ 7. Long-view figures ════════════════════════════════════════════════ */

.figures { padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem) 0 0; }

.figures__inner {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 3.4fr);
	align-items: center;
	gap: clamp(1.5rem, 1rem + 2vw, 3rem);
	padding: clamp(1.4rem, 1rem + 1.2vw, 2rem) 0;
	border-bottom: 1px solid var(--line);
}

.figures__title { font-size: clamp(1.5rem, 1.2rem + .8vw, 2rem); font-weight: 800; }
.figures__text {
	max-width: 30ch;
	margin: .75rem 0 0;
	font-size: .92rem;
	line-height: 1.55;
	color: var(--muted);
}

.figures__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
}

.figure {
	--pt: .25rem;
	--pb: .25rem;
	--pl: clamp(1rem, .5rem + 1vw, 1.5rem);
	--pr: clamp(1rem, .5rem + 1vw, 1.5rem);
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: var(--pt) var(--pr) var(--pb) var(--pl);
	border-left: 1px solid var(--line);
}
.figure dd { margin: 0; }
.figure > * { position: relative; z-index: 1; }
.figure::before {
	content: "";
	position: absolute;
	top: calc(var(--pt) - .65rem);
	right: calc(var(--pr) - .65rem);
	bottom: calc(var(--pb) - .65rem);
	left: calc(var(--pl) - .65rem);
	z-index: 0;
	border-radius: var(--r-lg);
	background: var(--mist-2);
	opacity: 0;
	transition: opacity .3s var(--ease);
	pointer-events: none;
}
@media (hover: hover) {
	.figure:hover::before { opacity: 1; }
	.figure:hover .figure__value { color: var(--copper-ink); }
}

.figure__value {
	order: 1;
	font-size: clamp(1.9rem, 1.4rem + 1.2vw, 2.6rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.035em;
	color: var(--ink);
	font-variant-numeric: lining-nums proportional-nums;
	white-space: nowrap;
	transition: color .3s var(--ease);
}
.figure__label {
	order: 2;
	min-height: 2.8em;
	margin-top: .5rem;
	font-size: .82rem;
	line-height: 1.4;
	color: var(--muted);
}
.figure__viz { order: 3; margin-top: .85rem; }

.figure__plot { position: relative; display: block; }
.figure__chart {
	display: block;
	width: 100%;
	height: 56px;
	overflow: visible;
	cursor: crosshair;
}
.figure__range {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-top: .45rem;
	font-size: .72rem;
	font-weight: 600;
	color: var(--muted);
	font-variant-numeric: lining-nums proportional-nums;
}
.figure__from,
.figure__to { transition: opacity .2s var(--ease); }
.figure__readout {
	position: absolute;
	inset: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: 500;
	color: var(--body);
	opacity: 0;
	transform: translateY(4px);
	transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.figure__readout b { font-weight: 750; color: var(--ink); }
.figure.is-tracking .figure__from,
.figure.is-tracking .figure__to { opacity: 0; }
.figure.is-tracking .figure__readout { opacity: 1; transform: none; }

.figures__list.is-armed:not(.is-revealed) .figure__plot { opacity: 0; }

/* Shared marks */
.figure__chart line,
.figure__chart path { vector-effect: non-scaling-stroke; }
.fc-axis { stroke: var(--line-2); stroke-width: 1; }
.fc-tick,
.fc-bar,
.fc-drop,
.fc-area {
	transform-box: fill-box;
	transition: opacity .25s var(--ease), fill .25s var(--ease), stroke .25s var(--ease), stroke-width .25s var(--ease);
}
.figure.is-tracking [data-idx]:not(.is-hot) { opacity: .3; }

.fc-dot {
	position: absolute;
	left: var(--x, 0%);
	top: var(--y, 0%);
	width: 9px;
	height: 9px;
	margin: -4.5px 0 0 -4.5px;
	border-radius: 50%;
	pointer-events: none;
}

/* years */
.fc-tick { stroke: var(--steel); stroke-width: 2; stroke-linecap: round; transform-origin: 50% 100%; }
.fc-mark { stroke: var(--copper); stroke-width: 3; }
.fc-tick.is-hot { stroke: var(--copper); stroke-width: 4; }
.figure.is-playing .fc-tick {
	animation: fc-rise .55s cubic-bezier(.34, 1.56, .64, 1) both;
	animation-delay: calc(var(--i) * 55ms);
}
.fc-dot--sweep { --x: 2%; background: var(--copper); box-shadow: 0 0 0 4px rgba(217, 128, 79, .22); opacity: 0; }
.figure.is-playing .fc-dot--sweep { animation: fc-sweep 1.5s .45s cubic-bezier(.65, 0, .35, 1) both; }
@keyframes fc-rise { from { transform: scaleY(0); } }
@keyframes fc-sweep {
	0% { left: 2%; opacity: 0; }
	12% { opacity: 1; }
	88% { opacity: 1; }
	100% { left: 98%; opacity: 0; }
}

/* mean */
.fc-bar { fill: var(--steel); transform-origin: 50% 100%; }
.fc-bar--down { fill: var(--down); transform-origin: 50% 0; }
.fc-bar.is-hot { fill: var(--copper); }
.fc-bar--down.is-hot { fill: #8e2c25; }
.figure.is-playing .fc-bar {
	animation: fc-grow .7s cubic-bezier(.34, 1.56, .64, 1) both;
	animation-delay: calc(var(--i) * 60ms);
}
.fc-mean { stroke: var(--copper); stroke-width: 1.5; stroke-dasharray: 4 3; }
.figure.is-playing .fc-mean { animation: fc-fade .5s .75s both; }
@keyframes fc-grow { from { transform: scaleY(0); } }
@keyframes fc-fade { from { opacity: 0; } }

/* growth */
.figure__chart .fc-line {
	vector-effect: none;
	fill: none;
	stroke: var(--steel);
	stroke-width: 2;
	stroke-linejoin: round;
	stroke-linecap: round;
	stroke-dasharray: 1;
	stroke-dashoffset: 0;
}
.figure.is-playing .fc-line { animation: fc-draw 1.3s cubic-bezier(.45, 0, .2, 1) both; }
.fc-area { fill: rgba(217, 128, 79, .16); transform-origin: 50% 100%; }
.figure.is-playing .fc-area { animation: fc-fill .8s .75s var(--ease) both; }
.fc-dot--end { background: var(--copper); }
.figure.is-playing .fc-dot--end { animation: fc-pop .5s 1.15s cubic-bezier(.34, 1.56, .64, 1) both; }
.fc-guide {
	stroke: var(--copper);
	stroke-width: 1;
	stroke-dasharray: 2 2;
	opacity: 0;
	transition: opacity .2s var(--ease);
}
.fc-dot--tracker {
	background: #fff;
	border: 2px solid var(--steel);
	opacity: 0;
	transition: left .18s var(--ease), top .18s var(--ease), opacity .2s var(--ease);
}
.figure--growth.is-tracking .fc-guide,
.figure--growth.is-tracking .fc-dot--tracker { opacity: 1; }
.figure--growth.is-tracking .fc-dot--end { opacity: .35; }
@keyframes fc-draw { from { stroke-dashoffset: 1; } }
@keyframes fc-fill { from { opacity: 0; transform: scaleY(.3); } }
@keyframes fc-pop { from { opacity: 0; transform: scale(0); } }

/* bears */
.fc-drop { stroke: var(--down); stroke-width: 3; stroke-linecap: round; transform-origin: 50% 0; }
.fc-drop.is-hot { stroke: #8e2c25; stroke-width: 5; }
.figure.is-playing .fc-drop {
	animation: fc-fall .75s cubic-bezier(.34, 1.7, .64, 1) both;
	animation-delay: calc(.15s + var(--i) * 85ms);
}
@keyframes fc-fall { from { transform: scaleY(0); } }


/* ═══ 8. Section heads & bands ═════════════════════════════════════════════ */

.band { padding-top: var(--band); }

.section-head {
	display: flex;
	align-items: center;
	gap: clamp(.9rem, .5rem + 1vw, 1.5rem);
	margin-bottom: clamp(1.25rem, 1rem + .8vw, 2rem);
}
.section-head__title {
	flex: none;
	font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.035em;
}
.section-head__title a:hover { color: var(--copper-ink); }
.section-head__rule {
	flex: 1;
	height: 2px;
	min-width: 1.5rem;
	background: linear-gradient(90deg, var(--copper) 0 64px, var(--line) 64px);
}
.section-head__more {
	flex: none;
	font-size: .9rem;
	font-weight: 650;
	color: var(--ink);
	padding: .5rem 0;
	border-bottom: 1px solid var(--ink);
	line-height: 1.1;
}
.section-head__more:hover { color: var(--copper-ink); border-color: var(--copper); }


/* ═══ 9. Showcase, bento, strip ═══════════════════════════════════════════ */

/* ── Showcase: full-bleed photograph and graphite panel ───────────────── */
.showcase {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	background: var(--graphite);
	color: var(--on-dark);
}
.showcase--plain { grid-template-columns: minmax(0, 1fr); }

.showcase__media {
	position: relative;
	display: block;
	min-height: 440px;
	overflow: hidden;
	background: var(--graphite-2);
}
.showcase__media img { position: absolute; inset: 0; }
.showcase:hover .showcase__media img { transform: scale(1.03); }

.showcase__panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2rem;
	/* Aligns the panel's right edge with the container on wide screens. */
	padding: clamp(2rem, 1.2rem + 3vw, 4rem) max(var(--gutter), calc((100vw - 1280px) / 2)) clamp(2rem, 1.2rem + 3vw, 4rem) clamp(1.5rem, 1rem + 3vw, 4rem);
}
.showcase--plain .showcase__panel { padding-inline: max(var(--gutter), calc((100vw - 1280px) / 2)); }

.showcase__lead .eyebrow { color: var(--copper-hi); }
.showcase__title {
	max-width: 22ch;
	font-size: clamp(1.6rem, 1.15rem + 1.5vw, 2.45rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: #fff;
}
.showcase__title a:hover { color: var(--copper-hi); }
.showcase__excerpt {
	max-width: 54ch;
	margin: 1rem 0 0;
	font-size: 1rem;
	color: var(--on-dark);
}
.showcase__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.5rem;
	margin-top: 1.6rem;
	font-size: .85rem;
	color: var(--on-dark-2);
}

.showcase__list {
	display: grid;
	gap: 0;
	list-style: none;
	border-top: 1px solid var(--graphite-3);
}

.mini {
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--graphite-2);
}
.mini__media {
	display: block;
	width: 64px;
	height: 64px;
	overflow: hidden;
	border-radius: var(--r-md);
	background: var(--graphite-2);
}
.mini__media .placeholder { background: var(--graphite-2); color: var(--on-dark-2); }
.mini__title {
	font-size: .98rem;
	font-weight: 650;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #fff;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.mini__title a::after { content: ""; position: absolute; inset: 0; }
.mini:hover .mini__title { color: var(--copper-hi); }
.mini__date { display: block; margin-top: .25rem; font-size: .76rem; color: var(--on-dark-2); }

/* ── Bento ─────────────────────────────────────────────────────────────── */
.bento {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: minmax(0, auto);
	gap: var(--gap);
}

.tile {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border-radius: var(--r-lg);
}
.tile__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.tile .eyebrow { position: relative; z-index: 2; }

.tile__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem 1.3rem 1.35rem;
}
.tile__title {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}
.tile__excerpt { margin: .75rem 0 0; font-size: .92rem; line-height: 1.55; }
.tile__date { margin-top: auto; padding-top: 1rem; font-size: .78rem; }

.tile__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--mist);
}
.tile:hover .tile__media img { transform: scale(1.04); }

/* The lead: graphite, two rows tall. */
.tile--lead {
	grid-column: span 2;
	grid-row: span 2;
	background: var(--graphite);
	color: var(--on-dark);
}
.tile--lead .tile__media { aspect-ratio: auto; flex: 1 1 260px; min-height: 260px; }
.tile--lead .tile__media img { position: absolute; inset: 0; }
.tile--lead .tile__body { flex: none; padding: 1.6rem 1.75rem 1.75rem; }
.tile--lead .tile__body:only-child { flex: 1; justify-content: flex-end; min-height: 320px; }
.tile--lead .tile__body:only-child .tile__date { margin-top: 0; }
.tile--lead .eyebrow { color: var(--copper-hi); }
.tile--lead .tile__title {
	font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #fff;
}
.tile--lead:hover .tile__title { color: var(--copper-hi); }
.tile--lead .tile__date { color: var(--on-dark-2); }

/* Text tiles: copper, steel. */
.tile--copper { background: var(--copper-fill); color: #fff; }
.tile--copper .eyebrow { color: #fff; }
.tile--copper .eyebrow::before { background: #fff; }
.tile--copper .tile__title { font-size: 1.3rem; font-weight: 800; color: #fff; }
.tile--copper:hover .tile__title { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.tile--copper .tile__excerpt { color: rgba(255, 255, 255, .9); }
.tile--copper .tile__date { color: rgba(255, 255, 255, .8); }

.tile--steel { background: var(--steel); color: var(--on-steel); }
.tile--steel .eyebrow { color: #fff; }
.tile--steel .eyebrow::before { background: var(--copper-hi); }
.tile--steel .tile__title { font-size: 1.3rem; font-weight: 800; color: #fff; }
.tile--steel:hover .tile__title { color: var(--copper-soft); }
.tile--steel .tile__date { color: var(--on-steel); }

/* Photo tiles: white with a hairline. */
.tile--photo { background: #fff; border: 1px solid var(--line); }
.tile--photo .tile__media { border-radius: 0; }
.tile--photo .tile__title { color: var(--ink); }
.tile--photo:hover .tile__title { color: var(--copper-ink); }
.tile--photo .tile__date { color: var(--muted); }
.tile--photo .tile__body { padding: 1rem 1.1rem 1.15rem; }

/* ── Strip ─────────────────────────────────────────────────────────────── */
.strip {
	display: grid;
	grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
	gap: var(--gap);
}
.strip--solo { grid-template-columns: minmax(0, 1fr); }

.strip__lead {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	align-items: stretch;
	overflow: hidden;
	border-radius: var(--r-lg);
	background: var(--mist);
}
.strip__lead--plain { grid-template-columns: minmax(0, 1fr); }
.strip__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
}
.strip__title {
	font-size: clamp(1.45rem, 1.1rem + 1.1vw, 2.1rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
}
.strip__title a::after { content: ""; position: absolute; inset: 0; }
.strip__lead:hover .strip__title { color: var(--steel-2); }
.strip__excerpt { margin: 1rem 0 0; font-size: .98rem; color: var(--body); }
.strip__date { margin-top: 1.25rem; font-size: .8rem; color: var(--muted); }
.strip__media {
	position: relative;
	display: block;
	min-height: 300px;
	overflow: hidden;
}
.strip__media img { position: absolute; inset: 0; }
.strip__lead:hover .strip__media img { transform: scale(1.03); }

.strip__side {
	display: flex;
	flex-direction: column;
	padding: 1.6rem 1.6rem .6rem;
	border-radius: var(--r-lg);
	background: var(--steel);
}
.strip-side {
	position: relative;
	flex: 1;
	padding: 0 0 1.25rem;
}
.strip-side + .strip-side { padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, .22); }
.strip-side__title {
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.015em;
	color: #fff;
}
.strip-side__title a::after { content: ""; position: absolute; inset: 0; }
.strip-side:hover .strip-side__title { color: var(--copper-soft); }
.strip-side__date { display: block; margin-top: .6rem; font-size: .78rem; color: var(--on-steel); }

.strip__row { margin-top: var(--gap); }


/* ═══ 10. Cards & grids ═══════════════════════════════════════════════════ */

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

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.card__media {
	display: block;
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--r-lg);
	background: var(--mist);
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding-top: 1rem;
}
.card__title {
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: -0.015em;
}
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card .eyebrow { position: relative; z-index: 1; align-self: flex-start; }
.card:hover .card__title { color: var(--copper-ink); }
.card__excerpt {
	margin: .6rem 0 0;
	font-size: .92rem;
	line-height: 1.55;
	color: var(--body);
}
.card__date {
	margin-top: auto;
	padding-top: .8rem;
	font-size: .78rem;
	color: var(--muted);
}


/* ═══ 11. Latest ══════════════════════════════════════════════════════════ */

.latest {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr);
	gap: clamp(1.5rem, 1rem + 3vw, 4rem);
	padding-bottom: var(--band);
}
.latest__intro { align-self: start; position: sticky; top: 90px; }
.latest__title {
	font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.035em;
}
.latest__text { max-width: 32ch; margin: .9rem 0 1.4rem; color: var(--muted); font-size: .95rem; }

.latest__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 var(--gap);
	list-style: none;
	border-top: 2px solid var(--graphite);
}

.row-item {
	position: relative;
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
	padding: 1.2rem 0;
	border-bottom: 1px solid var(--line);
}
.row-item__media {
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: var(--r-md);
	background: var(--mist);
}
.row-item__body .eyebrow { position: relative; z-index: 1; margin-bottom: .35rem; }
.row-item__title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
}
.row-item__title a::after { content: ""; position: absolute; inset: 0; }
.row-item:hover .row-item__title { color: var(--copper-ink); }
.row-item:hover .row-item__media img { transform: scale(1.05); }
.row-item__meta {
	display: flex;
	flex-wrap: wrap;
	gap: .2rem .9rem;
	margin-top: .45rem;
	font-size: .76rem;
	color: var(--muted);
}


/* ═══ 12. Newsletter band ═════════════════════════════════════════════════ */

.band--newsletter { padding-bottom: var(--band); }

.newsletter {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(1.5rem, 1rem + 3vw, 4rem);
	padding: clamp(1.75rem, 1rem + 3.5vw, 4.5rem);
	overflow: hidden;
	border-radius: var(--r-lg);
	background:
		radial-gradient(ellipse 70% 90% at 100% 100%, var(--steel-2), transparent 70%),
		var(--steel);
	color: var(--on-steel);
}

/* The soft spheres from the reference, resting on the plate's edge. */
.newsletter__orb {
	position: absolute;
	top: -90px;
	left: 38%;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #fff 0, #e5ebf3 30%, #9fb2cc 78%, #6f88ad 100%);
	box-shadow: 0 30px 60px -20px rgba(20, 35, 60, .55);
	pointer-events: none;
}
.newsletter__orb--small {
	top: auto;
	bottom: 28px;
	left: 46%;
	width: 54px;
	height: 54px;
	background: radial-gradient(circle at 34% 30%, #ffd9bf 0, #e6956a 30%, #a4532a 85%);
	box-shadow: 0 16px 30px -12px rgba(20, 35, 60, .7);
}

.newsletter__pitch { position: relative; padding-top: clamp(4rem, 3rem + 3vw, 6rem); }
.newsletter__title {
	max-width: 14ch;
	font-size: clamp(2rem, 1.3rem + 2.3vw, 3.3rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: #fff;
}
.newsletter__text { max-width: 44ch; margin: 1.1rem 0 1.6rem; font-size: 1.02rem; color: var(--on-steel); }

.newsletter__features { display: grid; gap: .75rem; list-style: none; }
.newsletter__features li {
	display: flex;
	align-items: center;
	gap: .8rem;
	font-size: .95rem;
	color: #fff;
}
.newsletter__features .icon {
	width: 36px;
	height: 36px;
	padding: 8px;
	border-radius: var(--r-md);
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.newsletter__form {
	position: relative;
	padding: clamp(1.4rem, 1rem + 1.5vw, 2.25rem);
	border-radius: var(--r-lg);
	background: #fff;
	color: var(--body);
	box-shadow: 0 30px 60px -30px rgba(15, 25, 45, .6);
}
.newsletter__form-title { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.03em; }
.newsletter__form-note { margin: .35rem 0 1.25rem; font-size: .88rem; color: var(--muted); }


/* ═══ 13. Page heroes, single post, pages ═════════════════════════════════ */

.page-hero,
.post-hero {
	background: var(--graphite);
	color: var(--on-dark);
}
.page-hero__inner {
	position: relative;
	padding: clamp(2.5rem, 1.5rem + 3.5vw, 5rem) 0 clamp(2.25rem, 1.5rem + 3vw, 4.25rem);
}
.page-hero__inner::before {
	content: "";
	display: block;
	width: 64px;
	height: 3px;
	margin-bottom: 1.4rem;
	background: var(--copper);
}
.page-title {
	max-width: 22ch;
	font-size: clamp(2rem, 1.3rem + 2.5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.04em;
	color: #fff;
}
.page-hero.lead--long .page-title { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.7rem); }
.page-hero .archive-description,
.page-hero .archive-description p {
	max-width: 60ch;
	margin: 1rem 0 0;
	font-size: 1.05rem;
	color: var(--on-dark);
}
.page-hero .archive-description p:first-child { margin-top: 0; }

.page-hero__code {
	margin: 0 0 .25rem;
	font-size: clamp(4rem, 2rem + 8vw, 9rem);
	font-weight: 900;
	line-height: .9;
	letter-spacing: -0.06em;
	color: var(--copper);
}
.page-hero--404 .page-hero__inner::before,
.page-hero--thanks .page-hero__inner::before { display: none; }
.page-hero__check {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 1.4rem;
	border-radius: 50%;
	background: var(--copper-fill);
	color: #fff;
}
.page-hero__check .icon { width: 28px; height: 28px; stroke-width: 2.2; }

.page-wrap { padding-top: clamp(2rem, 1.5rem + 2vw, 3.5rem); padding-bottom: var(--band); }
.page-back { margin: 2.5rem 0 0; }

/* ── Single post ───────────────────────────────────────────────────────── */
.post-hero__inner {
	padding: clamp(2.25rem, 1.5rem + 3vw, 4.5rem) 0 clamp(2.25rem, 1.5rem + 3vw, 4rem);
}
.post-hero--media .post-hero__inner { padding-bottom: clamp(5rem, 4rem + 5vw, 9rem); }
.post-hero .eyebrow { color: var(--copper-hi); }
.post-hero .eyebrow:hover { color: #fff; }

.entry-title {
	font-size: clamp(2rem, 1.3rem + 2.5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: #fff;
}
.post-hero.lead--medium .entry-title { font-size: clamp(1.85rem, 1.25rem + 2vw, 3rem); }
.post-hero.lead--long .entry-title { font-size: clamp(1.65rem, 1.2rem + 1.5vw, 2.5rem); }

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem 1.5rem;
	margin-top: 1.5rem;
	font-size: .88rem;
	color: var(--on-dark-2);
}
.entry-meta__item { display: inline-flex; align-items: center; gap: .45rem; }
.entry-meta__item .icon { color: var(--copper); }

.content-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	align-items: start;
	gap: clamp(2rem, 1rem + 3vw, 4rem);
	padding-top: clamp(2rem, 1.5rem + 2vw, 3.5rem);
	/* No bottom padding: both templates that use this grid close on the
	   newsletter band, whose own top padding makes the gap. */
	padding-bottom: 0;
}

/* On a story the title plate is the grid's first row, and the rail spans
   both rows from the top, so the newsletter panel sits inside the plate
   level with the title instead of below an empty stretch of graphite. The
   plate's colour is carried to both screen edges by a spread shadow,
   clipped to the plate's own height. */
.content-sidebar--post { padding-top: 0; row-gap: 0; }
.content-sidebar--post > .post-hero {
	grid-column: 1;
	grid-row: 1;
	background: var(--graphite);
	box-shadow: 0 0 0 100vmax var(--graphite);
	clip-path: inset(0 -100vmax);
}
/* clip-path lifts the plate into its own layer; these sit above it. */
.content-sidebar--post > .post-body,
.content-sidebar--post > .sidebar { position: relative; z-index: 1; }
.content-sidebar--post > .post-body { grid-column: 1; grid-row: 2; padding-top: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.content-sidebar--post > .post-hero--media + .post-body { padding-top: 0; }
.content-sidebar--post > .post-hero--media + .post-body .entry-media { margin-top: calc(-1 * clamp(3.5rem, 3rem + 4vw, 7rem)); }
.content-sidebar--post > .sidebar {
	grid-column: 2;
	grid-row: 1 / span 2;
	margin-top: clamp(2.25rem, 1.5rem + 3vw, 4.5rem);
}
.content-sidebar--post > .sidebar > .panel--steel:first-child {
	box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6);
}

.entry-media { margin-top: calc(-1 * clamp(3.5rem, 3rem + 4vw, 7rem)); }
.post-hero--media + .container .sidebar { padding-top: clamp(2rem, 1.5rem + 2vw, 3.5rem); }

.entry-media {
	position: relative;
	margin: 0 0 clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
	overflow: hidden;
	border-radius: var(--r-lg);
	background: var(--mist);
}
.entry-media img { width: 100%; max-height: 620px; object-fit: cover; }

.page-article { max-width: 780px; margin-inline: auto; padding: clamp(2rem, 1.5rem + 2vw, 3.5rem) 0 var(--band); }

/* ── Content typography ────────────────────────────────────────────────── */
.entry-content {
	font-size: 1.1rem;
	line-height: 1.72;
	color: var(--body);
	overflow-wrap: break-word;
}
.entry-content--intro { margin-bottom: 2.5rem; }
.entry-content > * { max-width: 72ch; }
.entry-content > .alignwide,
.entry-content > .alignfull,
.entry-content > figure,
.entry-content > .wp-block-image,
.entry-content > .wp-block-embed,
.entry-content > .wp-block-table,
.entry-content > table,
.entry-content > div { max-width: none; }
.entry-content p { margin: 0 0 1.35em; }
.entry-content h2,
.entry-content h3,
.entry-content h4 { margin: 2em 0 .7em; }
.entry-content h2 { font-size: clamp(1.45rem, 1.2rem + .8vw, 1.9rem); font-weight: 800; }
.entry-content h3 { font-size: 1.35rem; }
.entry-content h4 { font-size: 1.15rem; }
.entry-content a {
	color: var(--steel-2);
	text-decoration: underline;
	text-decoration-color: var(--copper);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}
.entry-content a:hover { color: var(--copper-ink); }
.entry-content ul,
.entry-content ol { margin: 0 0 1.35em; padding-left: 1.4em; }
.entry-content li { margin-bottom: .45em; }
.entry-content li::marker { color: var(--copper); }
.entry-content blockquote {
	margin: 2em 0;
	padding: 1.5rem 1.75rem;
	border-left: 4px solid var(--copper);
	border-radius: 0 var(--r-lg) var(--r-lg) 0;
	background: var(--mist-2);
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.5;
	color: var(--ink);
}
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content blockquote cite { display: block; margin-top: .8rem; font-size: .88rem; font-style: normal; color: var(--muted); }
.entry-content figure { margin: 2em 0; }
.entry-content img { border-radius: var(--r-md); }
.entry-content figcaption,
.entry-content .wp-element-caption { margin-top: .6rem; font-size: .85rem; color: var(--muted); }
.entry-content iframe,
.entry-content video { max-width: 100%; }
.entry-content table {
	width: 100%;
	margin: 2em 0;
	border-collapse: collapse;
	font-size: .95rem;
}
.entry-content .wp-block-table { overflow-x: auto; }
.entry-content th,
.entry-content td { padding: .7rem .8rem; border-bottom: 1px solid var(--line); text-align: left; }
.entry-content th { color: var(--ink); background: var(--mist-2); }
.entry-content hr { margin: 2.5em 0; border: 0; border-top: 1px solid var(--line); }
.entry-content pre {
	overflow-x: auto;
	padding: 1.2rem;
	border-radius: var(--r-md);
	background: var(--graphite);
	color: #fff;
	font-size: .9rem;
}
.entry-content .alignleft { float: left; margin: .3em 1.5em 1em 0; max-width: 50%; }
.entry-content .alignright { float: right; margin: .3em 0 1em 1.5em; max-width: 50%; }
.entry-content .aligncenter { margin-inline: auto; }

/* ── Share, post nav, related ──────────────────────────────────────────── */
.share-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .6rem;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}
.share-row__label { margin-right: .5rem; font-size: .9rem; font-weight: 700; color: var(--ink); }
.share-row__link {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: var(--r-md);
	background: var(--mist);
	color: var(--graphite);
	transition: background-color .2s var(--ease), color .2s var(--ease);
}
.share-row__link svg { width: 18px; height: 18px; fill: currentColor; }
.share-row__link:hover { background: var(--graphite); color: #fff; }

.post-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--gap);
	margin-top: 2.5rem;
}
.post-nav__item {
	display: flex;
	flex-direction: column;
	gap: .45rem;
	padding: 1.25rem 1.4rem;
	border-radius: var(--r-lg);
	background: var(--mist-2);
	border: 1px solid var(--line);
	transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.post-nav__item--next { grid-column: 2; text-align: right; }
.post-nav__item:hover { background: var(--graphite); border-color: var(--graphite); }
.post-nav__label { font-size: .78rem; font-weight: 650; color: var(--copper-ink); }
.post-nav__title { font-size: 1rem; font-weight: 700; line-height: 1.3; color: var(--ink); }
.post-nav__item:hover .post-nav__label { color: var(--copper-hi); }
.post-nav__item:hover .post-nav__title { color: #fff; }

.related { margin-top: 3.5rem; }
.related__title {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	font-size: 1.6rem;
	font-weight: 800;
}
.related__title::after {
	content: "";
	flex: 1;
	height: 2px;
	background: linear-gradient(90deg, var(--copper) 0 48px, var(--line) 48px);
}

/* ── Archive listing & pagination ──────────────────────────────────────── */
.archive-list .grid--3 { row-gap: clamp(2rem, 1.5rem + 1.5vw, 3rem); }
.no-results {
	padding: 2rem;
	border-radius: var(--r-lg);
	background: var(--mist-2);
	color: var(--body);
}
.no-results p { margin: 0; }

.pagination { margin-top: 3rem; }
.pagination .nav-links,
nav.pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem;
}
.pagination .page-numbers,
.entry-content .pagination a,
.entry-content .pagination > span {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 .9rem;
	border: 1px solid var(--line-2);
	border-radius: var(--r-md);
	font-size: .92rem;
	font-weight: 650;
	color: var(--ink);
	text-decoration: none;
}
.pagination a.page-numbers:hover { border-color: var(--graphite); }
.pagination .page-numbers.current { background: var(--graphite); border-color: var(--graphite); color: #fff; }
.pagination .page-numbers.dots { border-color: transparent; }


/* ═══ 14. Sidebar & widgets ═══════════════════════════════════════════════ */

.sidebar {
	display: grid;
	gap: var(--gap);
	min-width: 0;
}

.panel {
	position: relative;
	overflow: hidden;
	padding: 1.5rem;
	border-radius: var(--r-lg);
}
.panel__heading {
	display: flex;
	align-items: center;
	gap: .55rem;
	margin-bottom: 1rem;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: -0.025em;
}
.panel__text { position: relative; margin: -.35rem 0 1.1rem; font-size: .92rem; line-height: 1.55; }

/* Latest headlines */
.panel--latest { border: 1px solid var(--line); background: #fff; }
.panel__live {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--copper);
	box-shadow: 0 0 0 4px var(--copper-soft);
}
.headlines { list-style: none; }
.headline {
	position: relative;
	display: grid;
	grid-template-columns: 3.6rem minmax(0, 1fr);
	gap: .75rem;
	padding: .8rem 0;
	border-top: 1px solid var(--line);
}
.headline:first-child { border-top: 0; padding-top: 0; }
.headline__time {
	padding-top: .1rem;
	font-size: .76rem;
	font-weight: 650;
	color: var(--copper-ink);
	font-variant-numeric: lining-nums proportional-nums;
	white-space: nowrap;
}
.headline__title {
	font-size: .94rem;
	font-weight: 650;
	line-height: 1.35;
	color: var(--ink);
}
.headline__title:hover { color: var(--copper-ink); }

/* Newsletter */
.panel--steel { background: var(--steel); color: var(--on-steel); }
.panel--steel .panel__heading { position: relative; color: #fff; }
.panel--steel .panel__text { color: var(--on-steel); max-width: 26ch; }
.panel__orb {
	position: absolute;
	top: -36px;
	right: -30px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #fff 0, #dfe6f0 35%, #95a9c6 100%);
	opacity: .95;
	pointer-events: none;
}
.panel--steel .st-optin { position: relative; }

/* Desks */
.panel--mist { background: var(--mist); }
.cat-list { list-style: none; }
.cat-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: .7rem 0;
	border-top: 1px solid rgba(61, 94, 140, .16);
	font-weight: 650;
	color: var(--ink);
}
.cat-list li:first-child .cat-row { border-top: 0; padding-top: 0; }
.cat-row:hover { color: var(--steel-2); }
.cat-row__count {
	min-width: 2.2rem;
	padding: .15rem .5rem;
	border-radius: var(--r-sm);
	background: #fff;
	font-size: .78rem;
	font-weight: 700;
	text-align: center;
	color: var(--steel-2);
	font-variant-numeric: lining-nums proportional-nums;
}
.cat-row:hover .cat-row__count { background: var(--steel); color: #fff; }

/* ── What patience paid ────────────────────────────────────────────────── */
.patience {
	padding: 1.5rem;
	border-radius: var(--r-lg);
	background: var(--graphite);
	color: var(--on-dark);
}
.patience__title { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.025em; color: #fff; }
.patience__lede { margin: .5rem 0 1.25rem; font-size: .88rem; line-height: 1.5; color: var(--on-dark-2); }

.patience__amounts { margin: 0 0 1.1rem; padding: 0; border: 0; min-width: 0; }
.patience__legend {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: .5rem;
	width: 100%;
	margin-bottom: .55rem;
	padding: 0;
	font-size: .78rem;
	font-weight: 650;
	color: var(--on-dark-2);
}
.patience__chips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .4rem; }
.patience__chip { position: relative; cursor: pointer; }
.patience__chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.patience__chip span {
	display: grid;
	place-items: center;
	min-height: 40px;
	border: 1px solid var(--graphite-3);
	border-radius: var(--r-md);
	font-size: .85rem;
	font-weight: 650;
	color: #fff;
	font-variant-numeric: lining-nums proportional-nums;
	transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.patience__chip:hover span { border-color: var(--on-dark-2); }
.patience__chip input:checked + span { background: var(--copper-fill); border-color: var(--copper-fill); color: #fff; }
.patience__chip input:focus-visible + span { outline: 2px solid var(--copper); outline-offset: 2px; }

.patience__field { margin-bottom: 1.25rem; }
.patience__decade { font-size: .95rem; font-weight: 800; color: var(--copper-hi); }
.patience__range {
	width: 100%;
	height: 24px;
	margin: .2rem 0 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}
.patience__range::-webkit-slider-runnable-track { height: 4px; border-radius: 4px; background: var(--graphite-3); }
.patience__range::-moz-range-track { height: 4px; border-radius: 4px; background: var(--graphite-3); }
.patience__range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	margin-top: -8px;
	border: 3px solid var(--graphite);
	border-radius: 50%;
	background: var(--copper);
	box-shadow: 0 0 0 1px var(--copper);
}
.patience__range::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border: 3px solid var(--graphite);
	border-radius: 50%;
	background: var(--copper);
}
.patience__scale {
	display: flex;
	justify-content: space-between;
	font-size: .72rem;
	color: var(--on-dark-2);
}

.patience__result {
	display: grid;
	gap: .2rem;
	padding: 1rem 1.1rem;
	border-radius: var(--r-md);
	background: var(--graphite-2);
}
.patience__label { font-size: .76rem; font-weight: 650; color: var(--on-dark-2); }
.patience__value {
	font-size: 2.2rem;
	font-weight: 850;
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: #fff;
	font-variant-numeric: lining-nums proportional-nums;
}
.patience__meta { display: flex; gap: .6rem; font-size: .85rem; }
.patience__multiple { font-weight: 800; color: var(--copper-hi); }
.patience__years { color: var(--on-dark); }
.patience__real { margin-top: .35rem; font-size: .8rem; color: var(--on-dark-2); }
.patience__real strong { color: #fff; }

.patience__bars {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	height: 64px;
	margin-top: 1rem;
}
.patience__bar {
	flex: 1;
	height: var(--h);
	min-height: 3px;
	border-radius: 2px 2px 0 0;
	background: var(--graphite-3);
	transition: height .5s var(--ease), background-color .3s var(--ease);
}
.patience__bar:last-child { background: var(--copper); }
.patience__note { margin: .9rem 0 0; font-size: .72rem; line-height: 1.5; color: var(--on-dark-2); }


/* ═══ 15. Opt-in form & modal ═════════════════════════════════════════════ */

.st-optin { display: grid; gap: .85rem; }
.st-optin__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.st-optin__field { margin: 0; }

.st-optin__input {
	width: 100%;
	height: 52px;
	padding: 0 1rem;
	border: 1px solid var(--line-2);
	border-radius: var(--r-md);
	background: var(--mist-2);
	color: var(--ink);
	font-size: 1rem;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.st-optin__input::placeholder { color: var(--muted); }
.st-optin__input:focus {
	outline: none;
	border-color: var(--steel);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(61, 94, 140, .15);
}

.st-optin__consent-label {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: .7rem;
	align-items: start;
	cursor: pointer;
}
.st-optin__checkbox {
	width: 18px;
	height: 18px;
	margin: .15rem 0 0;
	accent-color: var(--copper);
	cursor: pointer;
}
.st-optin__consent-text { font-size: .8rem; line-height: 1.5; color: var(--muted); }
.st-optin__consent-text a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.st-optin__consent-text a:hover { color: var(--copper-ink); }

.st-optin__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 52px;
	border: 0;
	border-radius: var(--r-md);
	background: var(--graphite);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background-color .2s var(--ease);
}
.st-optin__submit:hover:not(:disabled) { background: var(--graphite-3); }
.st-optin__submit:disabled { cursor: progress; }

.st-optin__message { margin: 0; font-size: .88rem; font-weight: 600; }
.st-optin__message:empty { display: none; }
.st-optin__message.is-success { color: var(--up); }
.st-optin__message.is-error { color: var(--down); }

.st-optin__footer {
	display: grid;
	gap: .1rem;
	padding-top: .85rem;
	border-top: 1px solid var(--line);
	font-size: .72rem;
	line-height: 1.5;
	color: var(--muted);
}
.st-optin__footer:empty { display: none; }
.st-optin__company { font-weight: 700; color: var(--body); }
.st-optin__address { white-space: pre-line; }

/* ── The modal ─────────────────────────────────────────────────────────── */
.st-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	overflow-y: auto;
}
.st-modal[hidden] { display: none; }
.st-modal__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(20, 22, 27, .7);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	animation: modal-fade .25s var(--ease) both;
}
.st-modal__dialog {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
	width: min(860px, 100%);
	max-height: calc(100vh - 32px);
	max-height: calc(100dvh - 32px);
	overflow: auto;
	border-radius: var(--r-lg);
	background: #fff;
	box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
	animation: modal-rise .35s var(--ease) both;
}
.st-modal__head {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 100%;
	padding: 2.25rem;
	overflow: hidden;
	background: var(--graphite);
	color: var(--on-dark);
}
/* A hanging pendant, echoing the hero. */
.st-modal__head::before {
	content: "";
	position: absolute;
	top: 0;
	right: 16%;
	width: 1px;
	height: 22%;
	background: rgba(255, 255, 255, .45);
}
.st-modal__head::after {
	content: "";
	position: absolute;
	top: 22%;
	right: calc(16% - 26px);
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: radial-gradient(circle at 34% 30%, #ffd9bf 0, #e6956a 28%, #a4532a 78%, #6f3517 100%);
	box-shadow: 0 0 70px 14px rgba(230, 149, 106, .3);
}
.st-modal__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 1.25rem;
	border-radius: var(--r-md);
	background: rgba(255, 255, 255, .1);
	color: var(--copper-hi);
}
.st-modal__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.st-modal__title {
	font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.035em;
	color: #fff;
}
.st-modal__sub { margin: .8rem 0 0; font-size: .95rem; line-height: 1.55; color: var(--on-dark); }
.st-modal__body { padding: 4rem 2.25rem 2.25rem; align-self: center; }
.st-modal .st-optin__submit { height: 54px; }

.st-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: #fff;
	color: var(--ink);
	cursor: pointer;
}
.st-modal__close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.st-modal__close:hover { border-color: var(--ink); }

@keyframes modal-fade { from { opacity: 0; } }
@keyframes modal-rise { from { opacity: 0; transform: translateY(18px) scale(.98); } }


/* ═══ 16. Footer ══════════════════════════════════════════════════════════ */

.site-footer {
	background: var(--graphite);
	color: var(--on-dark);
}

.footer-main {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 1rem + 3vw, 4rem);
	padding: clamp(3rem, 2rem + 3vw, 5rem) 0 clamp(2.5rem, 2rem + 2vw, 3.5rem);
}

.footer-brand .custom-logo {
	width: auto;
	max-width: 220px;
	max-height: 44px;
	filter: brightness(0) invert(1);
}
.footer-brand .site-logo { color: #fff; }

.footer-lede__title {
	max-width: 18ch;
	margin: 1.75rem 0 .9rem;
	font-size: clamp(1.6rem, 1.2rem + 1.3vw, 2.4rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.035em;
	color: #fff;
}
.footer-lede__text { max-width: 46ch; margin-bottom: 1.6rem; font-size: .95rem; color: var(--on-dark-2); }

.footer-heading {
	margin-bottom: 1rem;
	padding-bottom: .8rem;
	border-bottom: 1px solid var(--graphite-3);
	font-size: .95rem;
	font-weight: 700;
	letter-spacing: 0;
	color: #fff;
}
.footer-list { display: grid; gap: .15rem; list-style: none; }
.footer-list a {
	display: inline-block;
	padding: .35rem 0;
	font-size: .95rem;
	color: var(--on-dark);
}
.footer-list a:hover { color: var(--copper-hi); }

.footer-base {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: .5rem 2rem;
	padding: 1.4rem 0 1.8rem;
	border-top: 1px solid var(--graphite-3);
	font-size: .8rem;
	color: var(--on-dark-2);
}
.footer-base p { margin: 0; }

.to-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 50;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: var(--r-md);
	background: var(--copper-fill);
	color: #fff;
	box-shadow: var(--shadow);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background-color .2s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--copper-fill-hi); }
.to-top .icon { width: 20px; height: 20px; }


/* ═══ 17. Data widgets ════════════════════════════════════════════════════ */

/* ── A century, one decade at a time ([century_of_decades]) ────────────── */
.century {
	padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
	border-radius: var(--r-lg);
	background: var(--mist-2);
	border: 1px solid var(--line);
}
.century__head { margin-bottom: 2rem; }
.century__mark { display: block; width: 48px; height: 3px; margin-bottom: 1rem; background: var(--copper); }
.century__title { font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); font-weight: 800; }
.century__standfirst { max-width: 60ch; margin: .75rem 0 0; font-size: .98rem; color: var(--body); }

.century__chart {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	grid-auto-flow: column;
	gap: 6px;
	margin: 0;
}
.century-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	text-align: center;
}
.century-col dd,
.century-col dt { margin: 0; }
.century-col__value { order: 1; font-size: .78rem; font-weight: 750; color: var(--ink); font-variant-numeric: lining-nums proportional-nums; }
.century-col--down .century-col__value { color: var(--down); }
.century-col__track {
	order: 2;
	position: relative;
	width: 100%;
	height: 180px;
	margin: .5rem 0;
	background: linear-gradient(var(--line-2), var(--line-2)) 0 76% / 100% 1px no-repeat;
}
.century-col__bar {
	position: absolute;
	left: 18%;
	right: 18%;
	border-radius: 3px;
}
.century-col--up .century-col__bar { bottom: 24%; background: var(--steel); border-radius: 3px 3px 0 0; }
.century-col--down .century-col__bar { top: 76%; background: var(--down); border-radius: 0 0 3px 3px; }
.century-col:hover .century-col__bar { background: var(--copper); }
.century-col__label { order: 3; font-size: .8rem; font-weight: 700; color: var(--ink); }
.century-col__note { order: 4; margin-top: .25rem; font-size: .68rem; line-height: 1.3; color: var(--muted); }

.century__foot {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
	align-items: end;
	gap: var(--gap);
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}
.century-fact { display: grid; gap: .2rem; }
.century-fact__label { font-size: .78rem; font-weight: 650; color: var(--muted); }
.century-fact__value { display: flex; flex-wrap: wrap; gap: 0 .6rem; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.century-fact__value--up { color: var(--up); }
.century-fact__value--down { color: var(--down); }
.century-fact__note { font-size: .82rem; color: var(--body); }
.century__more {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .75rem 1.1rem;
	border-radius: var(--r-md);
	background: var(--graphite);
	color: #fff;
	font-size: .9rem;
	font-weight: 650;
	white-space: nowrap;
}
.century__more svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.century__more:hover { background: var(--graphite-3); color: #fff; }
.century__disclaimer { margin: 1.25rem 0 0; font-size: .75rem; color: var(--muted); }

/* ── Political control over time ([political_control]) ─────────────────── */
.political-control-widget {
	padding: 1.5rem;
	border-radius: var(--r-lg);
	border: 1px solid var(--line);
	background: #fff;
}
.political-control-widget > h3 { margin-bottom: 1rem; font-size: 1.2rem; font-weight: 800; }
.political-timeline { display: grid; gap: .5rem; }
.political-period {
	display: grid;
	gap: .35rem;
	padding: .8rem 1rem;
	border-left: 4px solid var(--line-2);
	border-radius: 0 var(--r-md) var(--r-md) 0;
	background: var(--mist-2);
}
.political-period--democrat { border-left-color: var(--steel); }
.political-period--republican { border-left-color: var(--down); }
.political-period__head { display: flex; justify-content: space-between; gap: .5rem; align-items: center; }
.political-period__years { font-weight: 750; color: var(--ink); font-variant-numeric: lining-nums proportional-nums; }
.political-period__party {
	padding: .15rem .5rem;
	border-radius: var(--r-sm);
	font-size: .68rem;
	font-weight: 750;
	letter-spacing: .04em;
	background: #fff;
	color: var(--body);
}
.political-period--democrat .political-period__party { background: var(--steel); color: #fff; }
.political-period--republican .political-period__party { background: var(--down); color: #fff; }
.political-period__return { display: flex; justify-content: space-between; gap: .5rem; font-size: .85rem; color: var(--muted); }
.political-period__value { font-weight: 800; font-variant-numeric: lining-nums proportional-nums; }
.political-period__value--pos { color: var(--up); }
.political-period__value--neg { color: var(--down); }
.political-period__value--tbd { color: var(--muted); }
.political-control-widget .widget-footer { margin-top: 1rem; }
.political-control-widget .disclaimer { margin: 0; font-size: .75rem; color: var(--muted); }

/* ── 100 Years of the Stock Market ([market_history_dashboard]) ────────── */
.market-history-dashboard { display: grid; gap: clamp(1.5rem, 1rem + 1.5vw, 2.5rem); }
.market-history__loading { color: var(--muted); }
.market-history__header { display: grid; gap: .5rem; }
.market-history__title { font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); font-weight: 800; }
.market-history__subtitle { margin: 0; color: var(--muted); }

.market-history__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
	border-radius: var(--r-lg);
	background: var(--graphite);
}
.market-stat {
	display: grid;
	gap: .35rem;
	padding: clamp(1.1rem, .8rem + 1vw, 1.75rem);
}
.market-stat + .market-stat { border-left: 1px solid var(--graphite-3); }
.market-stat__value {
	font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.6rem);
	font-weight: 850;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #fff;
	font-variant-numeric: lining-nums proportional-nums;
}
.market-stat:first-child .market-stat__value { color: var(--copper-hi); }
.market-stat__label { font-size: .82rem; color: var(--on-dark-2); }

.market-history__controls { display: flex; flex-wrap: wrap; gap: .5rem; }
.market-history__btn {
	min-height: 42px;
	padding: .55rem 1rem;
	border: 1px solid var(--line-2);
	border-radius: var(--r-md);
	background: #fff;
	color: var(--ink);
	font-size: .9rem;
	font-weight: 650;
	cursor: pointer;
	transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.market-history__btn:hover { border-color: var(--graphite); }
.market-history__btn.is-active { background: var(--graphite); border-color: var(--graphite); color: #fff; }

.market-history__chart {
	position: relative;
	height: clamp(280px, 40vw, 440px);
	padding: clamp(.75rem, .5rem + 1vw, 1.5rem);
	border-radius: var(--r-lg);
	border: 1px solid var(--line);
	background: #fff;
}
.market-history__chart canvas { width: 100% !important; height: 100% !important; }

.market-history-dashboard > h3.market-history__title { font-size: clamp(1.35rem, 1.1rem + .8vw, 1.7rem); }
.market-history__events {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--gap);
}
.market-event {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1rem;
	padding: 1.25rem;
	border-radius: var(--r-lg);
	background: var(--mist-2);
	border: 1px solid var(--line);
}
.market-event__year {
	display: grid;
	place-items: center;
	min-width: 64px;
	height: 40px;
	padding: 0 .6rem;
	border-radius: var(--r-md);
	background: var(--graphite);
	color: #fff;
	font-weight: 800;
	font-variant-numeric: lining-nums proportional-nums;
}
.market-event--crash .market-event__year { background: var(--down); }
.market-event__title { font-size: 1.05rem; font-weight: 750; }
.market-event__text { margin: .4rem 0 .6rem; font-size: .9rem; line-height: 1.55; color: var(--body); }
.market-event__change { font-size: .9rem; font-weight: 800; font-variant-numeric: lining-nums proportional-nums; }
.market-event__change--pos { color: var(--up); }
.market-event__change--neg { color: var(--down); }
.market-history__disclaimer { margin: 0; font-size: .78rem; color: var(--muted); }


/* ═══ 18. Utilities ═══════════════════════════════════════════════════════ */

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 200;
	padding: .75rem 1.1rem;
	border-radius: var(--r-md);
	background: var(--copper-fill);
	color: #fff;
	font-weight: 700;
}
.skip-link:focus { top: 16px; }


/* ═══ Responsive ══════════════════════════════════════════════════════════ */

@media (max-width: 1180px) {
	.figures__inner { grid-template-columns: minmax(0, 1fr); gap: 1.25rem; }
	.figures__text { max-width: 60ch; }
	/* Padding is set through the variables, so the hover wash drawn from
	   them stays centred on the content. */
	.figure:first-child { border-left: 0; --pl: 0px; }
	.content-sidebar { grid-template-columns: minmax(0, 1fr) 300px; }
}

@media (max-width: 1080px) {
	.masthead__nav,
	.masthead__action,
	.stickybar .nav-primary { display: none; }
	.menu-toggle { display: flex; }
	.masthead { min-height: 68px; }
	.stickybar { gap: .75rem; }
	.stickybar__action { margin-left: auto; }
	.menu-toggle--sticky { width: 42px; height: 42px; margin-left: 0; padding: 0 11px; }

	.bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tile--lead { grid-row: auto; }
	.tile--lead .tile__media { flex: none; aspect-ratio: 16 / 9; min-height: 0; }

	.strip { grid-template-columns: minmax(0, 1fr); }
	.strip__side { flex-direction: row; gap: 1.5rem; padding: 1.5rem; }
	.strip-side { padding: 0; }
	.strip-side + .strip-side { padding: 0 0 0 1.5rem; border-top: 0; border-left: 1px solid rgba(255, 255, 255, .22); }

	.grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.grid--4 { row-gap: 2rem; }

	.content-sidebar { grid-template-columns: minmax(0, 1fr); }
	.sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
	.content-sidebar--post > .sidebar { grid-column: 1; grid-row: 3; margin-top: 3rem; }
	/* Below the rail the page closes on the full newsletter band, so the
	   rail's own form would put the same sign-up twice in a row. */
	.sidebar > .panel--steel { display: none; }

	.latest { grid-template-columns: minmax(0, 1fr); }
	.latest__intro { position: static; }

	.footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-lede { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
	.utility__date { display: none; }
	.utility__inner { justify-content: flex-start; }

	.hero-slide { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto 1fr; min-height: 0; }
	.hero__media { order: -1; aspect-ratio: 16 / 10; }
	.hero__media::after { background: linear-gradient(0deg, var(--graphite) 0, rgba(37, 39, 45, 0) 28%); }
	.hero__body { padding-top: 1.25rem; }
	/* The photograph is on top at this width, a 16:10 frame across the
	   stage; the lamps hang into its right-hand edge. */
	.pendant--copper { left: auto; right: 12%; height: calc((100vw - var(--gutter) * 2) * .625 * .45); }
	.pendant--glass { left: auto; right: 6%; height: calc((100vw - var(--gutter) * 2) * .625 * .25); }
	.hero__controls { top: calc((100vw - var(--gutter) * 2) * .625 - 3.4rem); bottom: auto; right: .75rem; }
	.pendant--copper::after { width: 36px; height: 36px; }
	.pendant--glass::after { width: 24px; height: 24px; }
	.hero__tabs { grid-auto-flow: row; grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hero-tab { padding-block: 1.1rem 1.2rem; }
	.hero-tab:nth-child(odd) { border-left: 0; }
	.hero-tab:nth-child(n + 3) { border-top: 1px solid var(--graphite-3); }

	.figures__list { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 1.75rem; }
	.figure:nth-child(odd) { border-left: 0; --pl: 0px; }

	.showcase { grid-template-columns: minmax(0, 1fr); }
	.showcase__media { min-height: 0; aspect-ratio: 16 / 10; }
	.showcase__panel { padding: 1.75rem var(--gutter) 2rem; }

	.strip__lead { grid-template-columns: minmax(0, 1fr); }
	.strip__media { order: -1; min-height: 0; aspect-ratio: 16 / 9; }

	.newsletter { grid-template-columns: minmax(0, 1fr); }
	.newsletter__orb { left: auto; right: -50px; top: -70px; width: 180px; height: 180px; }
	/* In the strip above the heading, left of the large sphere, so it
	   touches no text at any width. */
	.newsletter__orb--small { left: auto; right: 148px; top: 12px; bottom: auto; width: 30px; height: 30px; }
	.newsletter__pitch { padding-top: 2.5rem; }

	.st-modal__dialog { grid-template-columns: minmax(0, 1fr); width: min(520px, 100%); }
	.st-modal__head { min-height: 0; padding: 1.75rem 1.5rem 1.5rem; }
	.st-modal__head::before { right: 118px; height: 34px; }
	.st-modal__head::after { top: 34px; right: 100px; width: 36px; height: 36px; }
	.st-modal__body { padding: 1.5rem; }
	.st-modal__close { background: transparent; border-color: rgba(255, 255, 255, .25); color: #fff; }
	.st-modal__close:hover { border-color: #fff; }

	.century__chart { grid-auto-flow: row; grid-template-columns: minmax(0, 1fr); gap: .35rem; }
	.century-col { display: grid; grid-template-columns: 3.6rem minmax(0, 1fr) 3.6rem; align-items: center; gap: .6rem; text-align: left; }
	.century-col__label { order: 1; }
	.century-col__track { order: 2; height: 14px; margin: 0; background: linear-gradient(var(--line-2), var(--line-2)) 24% 0 / 1px 100% no-repeat; }
	.century-col__bar { top: 2px !important; bottom: 2px !important; height: auto !important; }
	.century-col--up .century-col__bar { left: 24%; right: auto; width: var(--bar); border-radius: 0 3px 3px 0; }
	.century-col--down .century-col__bar { right: 76%; left: auto; width: var(--bar); border-radius: 3px 0 0 3px; }
	.century-col__value { order: 3; text-align: right; }
	.century-col__note { display: none; }
	.century__foot { grid-template-columns: minmax(0, 1fr); }

	.market-history__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.market-stat:nth-child(3) { border-left: 0; }
	.market-stat:nth-child(n + 3) { border-top: 1px solid var(--graphite-3); }
	.market-history__events { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 600px) {
	body { font-size: 1rem; }

	.utility { font-size: .74rem; }
	.sessions { gap: 1rem; }

	.masthead { gap: 1rem; min-height: 62px; }
	.custom-logo { max-height: min(var(--logo-h), 30px); max-width: 60vw; }
	.site-logo { font-size: 1.2rem; }
	.stickybar__action { display: none; }
	.menu-toggle--sticky { margin-left: auto; }
	.stickybar { min-height: 54px; }

	.hero { padding-top: .75rem; }
	.hero__plate { border-radius: var(--r-md); }
	.hero__body { padding: 1.1rem 1.25rem 1.75rem; }
	.hero__excerpt { font-size: .98rem; }
	.hero__actions { margin-top: 1.5rem; }
	.hero__actions .btn { width: 100%; }
	.hero-tab { padding-inline: 1rem; }
	.hero-tab__title { font-size: .88rem; }
	.hero__controls { right: .5rem; }
	.hero__counter { display: none; }

	/* Two by two: four full-width rows took most of a screen for four
	   numbers. Each cell is ruled on top, so the pairs read as rows. */
	.figures__inner { gap: 1rem; padding-bottom: 1.5rem; }
	.figures__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem 1.25rem; }
	.figure,
	.figure:first-child,
	.figure:nth-child(odd) { --pt: 1rem; --pr: 0px; --pb: 0px; --pl: 0px; border-left: 0; border-top: 1px solid var(--line); }
	/* The wash reaches .65rem past the text on every side; keep it off the
	   rule above. */
	.figure::before { top: .45rem; }
	.figure__value { font-size: 1.75rem; }
	.figure__label { min-height: 2.8em; font-size: .78rem; }
	.figure__viz { margin-top: .6rem; }
	.figure__chart { height: 44px; }
	.figure__range { font-size: .68rem; }
	/* Room for the round marks at either end of a chart, which would
	   otherwise be cut by the column edge. */
	.figure__plot { margin-inline: 5px; }

	.section-head { flex-wrap: wrap; row-gap: .25rem; }
	.section-head__rule { order: 3; flex-basis: 100%; }
	.section-head__more { margin-left: auto; }

	.bento { grid-template-columns: minmax(0, 1fr); }
	.tile--lead { grid-column: auto; }
	.tile--lead .tile__body { padding: 1.25rem 1.3rem 1.4rem; }

	.strip__side { flex-direction: column; gap: 0; padding: 1.4rem 1.4rem .4rem; }
	.strip-side { padding: 0 0 1.1rem; }
	.strip-side + .strip-side { padding: 1.1rem 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .22); }

	.grid--2,
	.grid--3,
	.grid--4 { grid-template-columns: minmax(0, 1fr); }
	.strip__row.grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 1rem; }
	.strip__row .card__title { font-size: .95rem; }
	.strip__row .eyebrow { font-size: .72rem; }

	.latest__list { grid-template-columns: minmax(0, 1fr); }

	/* Listings: the first story keeps its full card, the rest become
	   compact rows — twelve full-width photographs made a listing a very
	   long scroll. Related stories under an article take rows throughout. */
	.archive-list .grid--3,
	.related .grid--3 { row-gap: 0; }
	.archive-list .card:not(:first-child),
	.related .card {
		display: grid;
		grid-template-columns: 104px minmax(0, 1fr);
		gap: 1rem;
		align-items: start;
		padding: 1.1rem 0;
		border-bottom: 1px solid var(--line);
	}
	.archive-list .card:first-child { padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
	.archive-list .card:not(:first-child) .card__media,
	.related .card .card__media { aspect-ratio: 1; border-radius: var(--r-md); }
	.archive-list .card:not(:first-child) .card__body,
	.related .card .card__body { padding-top: 0; }
	.archive-list .card:not(:first-child) .card__title,
	.related .card .card__title { font-size: 1rem; }
	.archive-list .card:not(:first-child) .card__excerpt { display: none; }
	.archive-list .card:not(:first-child) .card__date,
	.related .card .card__date { padding-top: .45rem; }
	.archive-list .card:not(:first-child) .eyebrow,
	.related .card .eyebrow { margin-bottom: .35rem; font-size: .74rem; }
	.related__title { margin-bottom: .5rem; }
	.row-item { grid-template-columns: 80px minmax(0, 1fr); }

	.newsletter { padding: 1.5rem 1.25rem 1.25rem; }
	.newsletter__form { padding: 1.35rem 1.15rem; }

	.sidebar { grid-template-columns: minmax(0, 1fr); }

	.post-nav { grid-template-columns: minmax(0, 1fr); }
	.post-nav__item--next { grid-column: auto; }
	.entry-content { font-size: 1.03rem; }
	.entry-content .alignleft,
	.entry-content .alignright { float: none; max-width: 100%; margin: 1.5em 0; }

	.footer-main { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
	.footer-base { flex-direction: column; }

	.st-modal { padding: 10px; align-items: flex-end; }
	.st-modal__dialog { max-height: calc(100vh - 20px); max-height: calc(100dvh - 20px); }
	.st-modal__head { padding: 1.5rem 1.25rem 1.25rem; }
	.st-modal__icon { width: 40px; height: 40px; margin-bottom: .9rem; }
	.st-modal__body { padding: 1.25rem; }

	.market-event { grid-template-columns: minmax(0, 1fr); }
	.market-event__year { justify-self: start; }
}

@media (max-width: 480px) {
	/* All five exchanges fit on one line without their clocks; the status
	   dot carries the news, the city is in each item's title. */
	.session__time { display: none; }
	.sessions { justify-content: space-between; width: 100%; gap: .5rem; }
}
