:root {
  color-scheme: dark;
  --bg: #050505;
  --paper: #0b0b0a;
  --surface: #111111;
  --surface-strong: #191816;
  --surface-warm: #171310;
  --line: rgb(246 240 232 / 0.16);
  --line-strong: rgb(246 240 232 / 0.28);
  --text: #f4f4f4;
  --ink: #f7f1e8;
  --ink-soft: #d8d0c5;
  --muted: #aaa197;
  --accent: #36e4d1;
  --accent-strong: #82fff1;
  --accent-warm: #d86f4c;
  --radius: 10px;
  --shadow: 0 26px 80px rgb(0 0 0 / 0.48);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --page-max: 1200px;
  --shell-max: 1600px;
  --page-pad: 1rem;
  --topbar-height: 60px;
  --mini-footer-height: 34px;
}

* { box-sizing: border-box; }
html { background: var(--bg); color: var(--ink); }
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--topbar-height);
}
body {
  min-width: 320px;
  margin: 0;
  padding-bottom: var(--mini-footer-height);
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
}
body.footer-visible { padding-bottom: 0; }
a { color: inherit; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.c-ai-word-accent {
  display: inline;
  color: #ff1493;
  font-style: inherit;
  text-shadow: 0 0 22px rgb(255 20 147 / .28);
}
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}
.page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: var(--topbar-height);
}
.page main { flex: 1; }
.skip-link { position: fixed; left: 1rem; top: .8rem; transform: translateY(-180%); padding: .65rem .9rem; border-radius: 999px; background: var(--accent); color: #02110f; font-weight: 800; z-index: 1200; }
.skip-link:focus { transform: translateY(0); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: .78rem 1.1rem; border-radius: 999px; border: 1px solid transparent; background: var(--accent); color: #031412 !important; font-weight: 900; text-decoration: none; box-shadow: 0 12px 36px rgb(54 228 209 / .18); }
.button:hover { background: var(--accent-strong); }

.content-shell {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}
.content-hero { display: grid; grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr); gap: 4rem; align-items: stretch; padding: 5.5rem 0 3.25rem; border-bottom: 1px solid var(--line-strong); }
.content-hero__copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding-block: .8rem; }
.eyebrow, .card-meta { margin: 0 0 .85rem; color: var(--accent-strong); font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--serif); letter-spacing: 0; }
h1 { max-width: 12ch; margin: 0; font-size: 5.8rem; line-height: .92; }
.deck { max-width: 58ch; margin: 1.35rem 0 0; color: var(--ink-soft); font-family: var(--serif); font-size: 1.45rem; line-height: 1.42; }
.content-meta { margin: 1.3rem 0 0; color: var(--muted); font-size: .92rem; font-weight: 700; }
.image-frame { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.image-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgb(5 5 5 / .02), rgb(5 5 5 / .24)); }
.image-frame img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.image-credit { position: absolute; left: 1rem; bottom: 1rem; max-width: calc(100% - 2rem); padding: .55rem .75rem; border: 1px solid rgb(255 255 255 / .18); border-radius: 999px; background: rgb(0 0 0 / .66); color: var(--ink); font-size: .8rem; font-weight: 800; text-decoration: none; z-index: 1; }
.content-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(220px, 320px); gap: 3.5rem; align-items: start; padding: 3rem 0 4.5rem; }
.prose { max-width: 74ch; color: var(--ink-soft); font-family: var(--serif); font-size: 1.18rem; line-height: 1.76; }
.prose > :first-child { margin-top: 0; }
.prose > h1:first-child { display: none; }
.prose h2, .prose h3 { margin: 2.6rem 0 .8rem; color: var(--ink); line-height: 1.08; }
.prose h2 { padding-top: 1rem; border-top: 1px solid var(--line); font-size: 2.55rem; }
.prose h3 { font-size: 1.8rem; }
.prose p, .prose ul, .prose ol, .prose blockquote { margin: 1rem 0; }
.prose a { color: var(--accent-strong); }
.prose p:first-of-type::first-letter { float: left; margin: .12rem .55rem 0 0; color: var(--ink); font-size: 4.8rem; line-height: .78; }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose li + li { margin-top: .38rem; }
.prose blockquote { padding-left: 1rem; border-left: 3px solid var(--accent); color: var(--ink); }
.prose pre { max-width: 100%; overflow-x: auto; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: #0f1113; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .92rem; }
.prose code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.article-interstitial { font-family: var(--sans); }
.article-interstitial .eyebrow { margin-bottom: .65rem; }
.article-interstitial h2 { margin: 0; padding: 0; border: 0; font-size: 2.35rem; line-height: 1; }
.article-interstitial--layer { position: relative; overflow: hidden; margin: 2.5rem 0 2.85rem; padding: 2.35rem; border: 1px solid rgb(54 228 209 / .28); border-radius: 22px; background: linear-gradient(135deg, #143f49, #102f35 58%, #261621); box-shadow: 0 24px 70px rgb(0 0 0 / .34), inset 0 0 0 1px rgb(255 255 255 / .035); }
.article-interstitial--layer::before,
.article-interstitial--layer::after { content: ""; position: absolute; width: 12rem; aspect-ratio: 1; border: 2px solid rgb(247 241 232 / .08); pointer-events: none; }
.article-interstitial--layer::before { top: -3rem; right: 3rem; transform: rotate(18deg); }
.article-interstitial--layer::after { left: -4rem; bottom: -5rem; transform: rotate(-14deg); }
.article-layer-stack { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: .45rem; margin-top: 1.45rem; }
.article-layer-stack span { display: flex; align-items: center; justify-content: center; min-height: 54px; padding: .65rem .5rem; border: 1px solid rgb(255 255 255 / .16); border-radius: 999px; background: rgb(5 5 5 / .32); color: var(--ink); font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.article-interstitial--rail { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; margin: 2.2rem 0 2.7rem; border-block: 1px solid var(--line-strong); }
.article-interstitial--rail span { display: flex; align-items: center; justify-content: center; min-height: 58px; padding: .85rem .6rem; color: var(--ink-soft); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.article-interstitial--rail span + span { border-left: 1px solid var(--line); }
.article-interstitial--split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; overflow: hidden; margin: 2.5rem 0 2.9rem; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--line); }
.article-interstitial--split > div { min-height: 190px; padding: 1.55rem; background: linear-gradient(160deg, var(--surface-strong), #0a0a0a); }
.article-interstitial--split > div:last-child { background: linear-gradient(160deg, #171010, #0a0a0a); }
.article-interstitial--split h2 { max-width: 9ch; }
.content-rail { display: grid; gap: 1rem; }
.content-rail section, .proof-block { padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--surface-strong), var(--surface)); }
.content-rail h2 { margin: 0 0 .45rem; font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-strong); }
.content-rail p { margin: 0; color: var(--muted); line-height: 1.5; }
.related-content { padding: 4rem 0; border-top: 1px solid var(--line-strong); }
.section-header { max-width: 760px; margin-bottom: 1.5rem; }
.section-header h2, .closing-cta h2 { margin: 0; font-size: 3.7rem; line-height: 1; }
.section-header p:not(.eyebrow) { color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.content-card { display: grid; grid-template-rows: auto 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 20px 50px rgb(0 0 0 / .32); }
.content-card__media { display: block; overflow: hidden; border-bottom: 1px solid var(--line); background: #060606; }
.content-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .28s ease; }
.content-card:hover .content-card__media img { transform: scale(1.035); }
.content-card__body { display: grid; grid-template-rows: auto auto 1fr auto; min-height: 250px; padding: 1.1rem; }
.content-card h3 { margin: 0; font-size: 1.55rem; line-height: 1.06; }
.content-card h3 a { text-decoration: none; }
.content-card h3 a:hover { color: var(--accent-strong); }
.content-card p:not(.card-meta) { color: var(--muted); }
.arrow-link { align-self: end; color: var(--accent-strong); font-weight: 900; text-decoration: none; }
.arrow-link::after { content: " ->"; }
.closing-cta { margin: 4.5rem 0; padding: 3.25rem; border: 1px solid var(--line-strong); border-radius: var(--radius); background: linear-gradient(135deg, #102b2d, var(--surface) 58%, #35131e); box-shadow: var(--shadow); }
.closing-cta .button { margin-top: 1.5rem; }

.hub-shell { padding-bottom: 5.5rem; }
.hub-hero { max-width: 920px; padding: 5.5rem 0 3.25rem; border-bottom: 1px solid var(--line-strong); }
.hub-hero h1 { max-width: 13ch; }
.hub-section { padding: 3.5rem 0; border-top: 1px solid var(--line); }
.hub-section:first-of-type { border-top: 0; }
.hub-section .section-header p:not(.eyebrow) { max-width: 68ch; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.section-action { display: inline-flex; margin-top: .9rem; }
.empty-state { padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); color: var(--muted); }
.empty-state p { margin: 0; }
.editorial-hub-shell { padding-bottom: 5.5rem; }
.newsletter-editorial-hero.editorial-hub-hero { align-items: start; }
.editorial-hub-index { display: flex; flex-direction: column; justify-content: start; gap: .85rem; min-width: 0; padding: 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.editorial-hub-index nav { display: grid; gap: 0; border-block: 1px solid var(--line); }
.editorial-hub-index a { display: grid; gap: .25rem; padding: .8rem 0; color: var(--ink); text-decoration: none; }
.editorial-hub-index a + a { border-top: 1px solid var(--line); }
.editorial-hub-index a span { color: var(--accent-strong); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.editorial-hub-index a:hover,
.editorial-hub-index a:focus-visible { color: var(--accent-strong); }
.editorial-hub-rail { margin-top: 1.4rem; }
.editorial-hub-section { scroll-margin-top: 6rem; }
.editorial-route-card { border-top: 1px solid var(--line); padding-top: .9rem; }
.editorial-route-card .story-card__body { padding-top: 0; }
.editorial-hub-directory .empty-state { align-self: start; }
.newsletter-editorial-shell { padding-bottom: 5.5rem; }
.newsletter-editorial-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .46fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: end; padding: 5.5rem 0 3rem; border-bottom: 1px solid var(--line-strong); }
.newsletter-editorial-hero h1 { max-width: 12ch; }
.newsletter-form { display: flex; flex-direction: column; justify-content: center; gap: .85rem; padding: 1.5rem; }
.newsletter-form--compact { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 20px 50px rgb(0 0 0 / .22); }
.newsletter-form label { color: var(--accent-strong); font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.newsletter-form__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .75rem; align-items: center; }
.newsletter-form input { width: 100%; min-height: 46px; border: 1px solid var(--line-strong); border-radius: 999px; background: #080808; color: var(--ink); padding: .8rem 1rem; font: inherit; }
.newsletter-form input:focus { outline: 2px solid var(--accent); outline-offset: 3px; }
.newsletter-form p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.newsletter-section { padding: 3.4rem 0; border-top: 1px solid var(--line); }
.newsletter-section:first-of-type { border-top: 0; }
.newsletter-section__header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.3rem; }
.newsletter-section__header::after { content: ""; flex: 1 1 auto; height: 1px; min-width: 3rem; background: var(--line-strong); }
.newsletter-section__header h2 { margin: 0; font-size: clamp(2.25rem, 3rem, 3.5rem); line-height: 1; }
.newsletter-interstitial { margin: 1rem 0 3.2rem; }
.newsletter-cta-panel { position: relative; display: grid; justify-items: center; gap: 1.55rem; overflow: hidden; padding: 4.1rem 2rem; border: 1px solid rgb(54 228 209 / .28); border-radius: 26px; background: linear-gradient(135deg, #154752, #124c55 52%, #123e44); box-shadow: 0 24px 70px rgb(0 0 0 / .36), inset 0 0 0 1px rgb(255 255 255 / .04); text-align: center; }
.newsletter-cta-panel::before,
.newsletter-cta-panel::after { content: ""; position: absolute; width: 14rem; aspect-ratio: 1; border: 2px solid rgb(247 241 232 / .08); pointer-events: none; }
.newsletter-cta-panel::before { top: -1.2rem; left: 4rem; transform: rotate(16deg); }
.newsletter-cta-panel::after { right: -1.2rem; bottom: -3rem; transform: rotate(-12deg); }
.newsletter-cta-panel h2 { position: relative; z-index: 1; max-width: 18ch; margin: 0; font-size: clamp(2.2rem, 3.55rem, 4rem); line-height: 1.02; }
.newsletter-cta-panel .button { position: relative; z-index: 1; min-width: 220px; }
.newsletter-topic-rail { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin: .5rem 0 1.4rem; border-block: 1px solid var(--line-strong); }
.newsletter-topic-rail a { display: flex; align-items: center; justify-content: center; min-height: 52px; padding: .8rem 1rem; color: var(--ink-soft); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-align: center; text-decoration: none; text-transform: uppercase; }
.newsletter-topic-rail a + a { border-left: 1px solid var(--line); }
.newsletter-topic-rail a:hover,
.newsletter-topic-rail a:focus-visible { color: var(--accent-strong); background: rgb(255 255 255 / .035); }
.newsletter-issue-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; margin: 1rem 0 2.3rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.newsletter-issue-action { display: grid; gap: .28rem; min-width: 0; padding: .95rem 0; border-top: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.newsletter-issue-action span,
.newsletter-issue-archive__meta span { color: var(--accent-strong); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.newsletter-issue-action strong { max-width: 28ch; font-family: var(--serif); font-size: clamp(1.25rem, 1.6rem, 1.9rem); line-height: 1.06; }
.newsletter-issue-action:hover,
.newsletter-issue-action:focus-visible { color: var(--accent-strong); border-top-color: rgb(54 228 209 / .5); }
.newsletter-issue-archive__list { border-top: 1px solid var(--line-strong); }
.newsletter-issue-archive__row { display: grid; grid-template-columns: minmax(135px, .18fr) minmax(0, 1fr); gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.newsletter-issue-archive__meta { display: grid; align-content: start; gap: .35rem; color: var(--muted); font-size: .85rem; font-weight: 800; }
.newsletter-issue-archive__row h3 { margin: 0; font-size: clamp(1.4rem, 1.8rem, 2.1rem); line-height: 1.08; }
.newsletter-issue-archive__row h3 a { text-decoration: none; }
.newsletter-issue-archive__row h3 a:hover { color: var(--accent-strong); }
.newsletter-issue-archive__row p { max-width: 68ch; margin: .55rem 0 0; color: var(--muted); line-height: 1.55; }
.research-list { border-top: 1px solid var(--line-strong); }
.archive-section-header { align-items: end; }
.archive-section-header > div { display: grid; gap: .45rem; }
.archive-section-header p { margin: 0; color: var(--muted); font-size: .9rem; font-weight: 700; }
.archive-pagination { display: grid; grid-template-columns: minmax(110px, auto) 1fr minmax(110px, auto); gap: .75rem; align-items: center; margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line-strong); }
.archive-pagination__pages { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; }
.archive-pagination__page, .archive-pagination__step { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: .65rem .9rem; border: 1px solid var(--line); border-radius: 8px; color: var(--ink-soft); font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.archive-pagination__page[aria-current="page"], .archive-pagination__page:hover, .archive-pagination__page:focus-visible, .archive-pagination__step:hover, .archive-pagination__step:focus-visible { border-color: rgb(54 228 209 / .44); color: var(--accent-strong); background: rgb(54 228 209 / .07); }
.archive-pagination__page--ellipsis { border-color: transparent; pointer-events: none; }
.archive-pagination__step--disabled { opacity: .42; }
.research-row { display: grid; grid-template-columns: minmax(130px, .18fr) minmax(0, .62fr) minmax(170px, .2fr); gap: 1.25rem; align-items: start; padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.research-row__meta { display: grid; gap: .35rem; color: var(--muted); font-size: .82rem; line-height: 1.35; }
.research-row__meta p, .research-row__meta span { margin: 0; }
.research-row__meta p, .story-meta span:first-child { color: var(--accent-strong); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.research-row__body h3, .featured-story h3, .story-card h3, .compact-story h3, .news-lead h3 { margin: 0; font-family: var(--serif); line-height: 1.08; }
.research-row__body h3 { font-size: clamp(1.45rem, 1.9rem, 2.2rem); }
.research-row__body h3 a, .featured-story h3 a, .story-card h3 a, .compact-story h3 a, .news-lead h3 a { text-decoration: none; }
.research-row__body h3 a:hover, .featured-story h3 a:hover, .story-card h3 a:hover, .compact-story h3 a:hover, .news-lead h3 a:hover { color: var(--accent-strong); }
.research-row__body p:not(.story-author) { max-width: 62ch; color: var(--muted); line-height: 1.55; }
.story-author { margin: .75rem 0 0; color: var(--muted); font-size: .88rem; font-weight: 700; }
.research-row__thumb, .story-card__media, .featured-story__media, .news-lead__media { display: block; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.research-row__thumb img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.reviews-layout { display: grid; grid-template-columns: minmax(0, 4fr) minmax(210px, 1fr); gap: 1.4rem; align-items: start; }
.reviews-main { display: grid; gap: 1.2rem; }
.featured-story { display: grid; grid-template-columns: minmax(0, .48fr) minmax(320px, .52fr); gap: 1.5rem; align-items: stretch; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.featured-story__body { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.featured-story h3 { font-size: clamp(2.2rem, 3rem, 3.7rem); }
.featured-story p:not(.story-author) { color: var(--muted); font-size: 1.05rem; line-height: 1.58; }
.featured-story__media img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; }
.reviews-card-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .9rem; }
.reviews-card-row > .story-card:last-child:nth-child(4n + 1) { grid-column: 1 / -1; padding-top: 1rem; border-top: 1px solid var(--line); }
.reviews-card-row > .story-card:last-child:nth-child(4n + 1):has(.story-card__media) { display: grid; grid-template-columns: minmax(220px, .34fr) minmax(0, .66fr); gap: 1rem; align-items: stretch; }
.reviews-card-row > .story-card:last-child:nth-child(4n + 1) .story-card__body { display: flex; flex-direction: column; justify-content: center; padding-top: 0; }
.reviews-card-row > .story-card:last-child:nth-child(4n + 1) .story-card__media img { height: 100%; min-height: 190px; aspect-ratio: 16 / 9; }
.reviews-card-row > .story-card:last-child:nth-child(4n + 1) p:not(.story-author) { min-height: 0; }
.story-card { min-width: 0; }
.story-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .24s ease; }
.story-card:hover .story-card__media img, .featured-story:hover .featured-story__media img, .news-lead:hover .news-lead__media img { transform: scale(1.025); }
.story-card__body { padding-top: .8rem; }
.story-card h3 { font-size: 1.28rem; }
.story-card p:not(.story-author) { display: -webkit-box; min-height: 4.55em; overflow: hidden; color: var(--muted); font-size: .92rem; line-height: 1.5; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.story-meta { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; margin-bottom: .55rem; color: var(--muted); font-size: .76rem; line-height: 1.3; }
.editorial-sidebar { border-left: 1px solid var(--line); padding-left: 1rem; }
.compact-story { padding: 0 0 1rem; border-bottom: 1px solid var(--line); }
.compact-story + .compact-story { padding-top: 1rem; }
.compact-story h3 { font-size: 1.08rem; }
.compact-story p, .compact-story time { margin: .45rem 0 0; color: var(--muted); font-size: .82rem; line-height: 1.4; }
.news-comment-layout { display: grid; grid-template-columns: minmax(300px, .39fr) minmax(0, .61fr); gap: 1.25rem; align-items: stretch; }
.news-lead { display: grid; grid-template-rows: auto 1fr; border-right: 1px solid var(--line); padding-right: 1.25rem; }
.news-lead__media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.news-lead__body { padding-top: 1rem; }
.news-lead h3 { font-size: clamp(1.9rem, 2.45rem, 3rem); }
.news-lead p:not(.story-author) { color: var(--muted); line-height: 1.6; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.story-card--compact h3 { font-size: 1.08rem; }
.story-card--compact p:not(.story-author) { min-height: 3.1em; -webkit-line-clamp: 2; }
.newsletter-issue-navigation p { margin: 0 0 .75rem; color: var(--muted); font-weight: 800; }
.newsletter-issue-navigation nav { display: grid; gap: .65rem; }
.newsletter-issue-navigation a { display: grid; gap: .22rem; padding-top: .65rem; border-top: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.newsletter-issue-navigation a span { color: var(--accent-strong); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.newsletter-issue-navigation a:hover,
.newsletter-issue-navigation a:focus-visible { color: var(--accent-strong); }
.newsletter-issue-links ul { margin: 0; padding-left: 1rem; color: var(--muted); }
.newsletter-issue-links li + li { margin-top: .45rem; }
.newsletter-issue-links a { color: var(--ink); text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
.newsletter-issue-links a:hover { color: var(--accent-strong); }

@media (max-width: 1024px) {
  .content-hero { grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr); gap: 2.5rem; padding: 4rem 0 2.5rem; }
  h1 { font-size: 4.35rem; }
  .deck { font-size: 1.28rem; }
  .image-frame img { min-height: 380px; }
  .content-layout { grid-template-columns: minmax(0, 1fr) minmax(210px, 280px); gap: 2rem; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-layout { grid-template-columns: 1fr; }
  .editorial-sidebar { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; border-left: 0; border-top: 1px solid var(--line); padding: 1rem 0 0; }
  .reviews-card-row, .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsletter-cta-panel { padding: 3.25rem 1.5rem; }
  .newsletter-cta-panel h2 { font-size: clamp(2rem, 2.85rem, 3.25rem); }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .reviews-card-row > .story-card:last-child:nth-child(2n + 1) { grid-column: 1 / -1; padding-top: 1rem; border-top: 1px solid var(--line); }
  .reviews-card-row > .story-card:last-child:nth-child(2n + 1):has(.story-card__media) { display: grid; grid-template-columns: minmax(220px, .38fr) minmax(0, .62fr); gap: 1rem; align-items: stretch; }
  .reviews-card-row > .story-card:last-child:nth-child(2n + 1) .story-card__body { display: flex; flex-direction: column; justify-content: center; padding-top: 0; }
  .reviews-card-row > .story-card:last-child:nth-child(2n + 1) p:not(.story-author) { min-height: 0; }
}

@media (max-width: 900px) {
  .content-hero, .content-layout { grid-template-columns: 1fr; }
  .newsletter-editorial-hero, .featured-story, .news-comment-layout { grid-template-columns: 1fr; }
  .news-lead { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 1.25rem; }
  .content-hero__visual img { min-height: 0; aspect-ratio: 16 / 10; }
  .content-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  h1 { max-width: 14ch; }
}

@media (max-width: 860px) {
}

@media (max-width: 768px) {
  .content-shell { width: min(100% - 28px, 1220px); }
  h1 { font-size: 3.45rem; }
  .section-header h2, .closing-cta h2 { font-size: 2.55rem; }
  .prose { font-size: 1.08rem; }
  .prose h2 { font-size: 2.1rem; }
  .article-interstitial h2 { font-size: 2rem; }
  .article-interstitial--layer { padding: 1.55rem; border-radius: 18px; }
  .article-layer-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layer-stack span:last-child { grid-column: 1 / -1; }
  .article-interstitial--rail { grid-template-columns: 1fr; }
  .article-interstitial--rail span + span { border-left: 0; border-top: 1px solid var(--line); }
  .article-interstitial--split { grid-template-columns: 1fr; }
  .article-interstitial--split > div { min-height: 145px; }
  .content-rail { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .research-row { grid-template-columns: 1fr; gap: .8rem; }
  .research-row__thumb img { aspect-ratio: 16 / 9; }
  .reviews-card-row, .news-grid, .editorial-sidebar { grid-template-columns: 1fr; }
  .reviews-card-row > .story-card:last-child:nth-child(4n + 1):has(.story-card__media),
  .reviews-card-row > .story-card:last-child:nth-child(2n + 1):has(.story-card__media) { display: block; }
  .content-card__body { min-height: 210px; }
  .closing-cta { padding: 2rem; }
  .newsletter-section { padding: 2.5rem 0; }
  .newsletter-form__row { grid-template-columns: 1fr; }
  .newsletter-topic-rail, .archive-pagination, .newsletter-issue-actions, .newsletter-issue-archive__row { grid-template-columns: 1fr; }
  .newsletter-topic-rail a + a { border-left: 0; border-top: 1px solid var(--line); }
  .archive-pagination__pages { justify-content: start; }
}

@media (max-width: 640px) {
}

@media (max-width: 520px) {
  .content-shell { width: min(100% - 24px, 1220px); }
  .content-hero { padding: 3rem 0 2rem; }
  h1 { font-size: 2.72rem; }
  .deck { font-size: 1.12rem; }
  .button { width: 100%; }
  .closing-cta { padding: 1.25rem; }
  .article-interstitial h2 { font-size: 1.72rem; }
  .article-interstitial--layer,
  .article-interstitial--split { margin: 2rem 0 2.25rem; }
  .article-layer-stack { grid-template-columns: 1fr; }
  .article-layer-stack span:last-child { grid-column: auto; }
  .newsletter-editorial-hero { padding: 3rem 0 2rem; }
  .newsletter-interstitial { margin: .75rem 0 2.35rem; }
  .newsletter-section__header { align-items: flex-start; flex-direction: column; gap: .75rem; }
  .newsletter-section__header::after { width: 100%; min-width: 0; }
  .newsletter-cta-panel { border-radius: 18px; padding: 2.5rem 1.1rem; }
  .newsletter-cta-panel::before { left: -2rem; }
  .newsletter-cta-panel::after { right: -4rem; }
  .newsletter-cta-panel h2 { font-size: clamp(1.8rem, 2.35rem, 2.65rem); }
  .featured-story__media img { min-height: 0; aspect-ratio: 16 / 10; }
  .prose p:first-of-type::first-letter { float: none; margin: 0; font-size: inherit; line-height: inherit; }
}

@media (prefers-reduced-motion: reduce) {
  .story-card__media img,
  .featured-story__media img,
  .news-lead__media img {
    transition: none;
  }
  .story-card:hover .story-card__media img,
  .featured-story:hover .featured-story__media img,
  .news-lead:hover .news-lead__media img {
    transform: none;
  }
}
