:root {
  --paper: #f4f1ea;
  --paper-deep: #ebe6dc;
  --surface: #ffffff;
  --surface-soft: #faf8f3;
  --ink: #101b2a;
  --ink-soft: #27384a;
  --muted: #52606d;
  --line: #d7d2c8;
  --line-strong: #b9b2a6;
  --accent: #006a72;
  --accent-hover: #004e56;
  --accent-soft: #dceff0;
  --signal: #a75d00;
  --signal-soft: #f8e9d2;
  --night: #0d1928;
  --night-soft: #17283b;
  --danger: #a22c35;
  --radius-sm: 0.45rem;
  --radius: 0.85rem;
  --radius-lg: 1.35rem;
  --shadow-sm: 0 1px 2px rgba(13, 25, 40, 0.06), 0 7px 18px rgba(13, 25, 40, 0.05);
  --shadow: 0 18px 48px rgba(13, 25, 40, 0.1);
  --content: 74rem;
  --reading: 47rem;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 8% 2%, rgba(0, 106, 114, 0.055), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
input[type="submit"] {
  cursor: pointer;
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--accent-hover);
}

:focus-visible {
  outline: 3px solid #c96f00;
  outline-offset: 3px;
}

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

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--night);
  box-shadow: var(--shadow);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p,
ul,
ol,
blockquote {
  margin-top: 0;
}

.content-shell,
.article-shell,
.policy-page,
.site-footer-inner,
.header-inner,
.hero-inner,
.launcher-shell {
  width: min(var(--content), calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow,
.kicker,
.section-kicker {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header,
.launcher-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 4.5rem;
  padding: 0.75rem max(1rem, calc((100vw - var(--content)) / 2));
  background: rgba(244, 241, 234, 0.94);
  border-bottom: 1px solid rgba(16, 27, 42, 0.13);
  backdrop-filter: blur(16px) saturate(130%);
}

.site-header,
.site-header .header-inner,
.launcher-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header .header-inner {
  width: 100%;
}

.brand-lockup,
.site-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  place-items: center;
  border-radius: 0.62rem;
  background: var(--night);
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-site-nav],
.top-nav {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

[data-site-nav] a,
.top-nav a {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.78rem;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 780;
  text-decoration: none;
}

[data-site-nav] a:hover,
[data-site-nav] a[aria-current="page"],
.top-nav a:hover,
.top-nav a[aria-current="page"] {
  background: #fff;
  color: var(--accent-hover);
  box-shadow: 0 0 0 1px var(--line);
}

.menu-toggle,
[data-menu-toggle] {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.publication-hero,
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(27rem, 61vw, 42rem);
  align-items: end;
  overflow: hidden;
  background: var(--night);
  color: #fff;
}

.publication-hero::before,
.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 17, 29, 0.94) 0%, rgba(7, 17, 29, 0.7) 54%, rgba(7, 17, 29, 0.3) 100%),
    linear-gradient(0deg, rgba(7, 17, 29, 0.75), transparent 60%);
}

.publication-hero::after,
.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.38rem;
  content: "";
  background: linear-gradient(90deg, #0bb7b1 0 56%, #e49a32 56% 73%, #f4f1ea 73%);
}

.hero-photo,
.publication-hero > picture,
.hero > picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.publication-hero > picture img,
.hero > picture img,
.hero-photo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero-copy,
.hero-inner {
  position: relative;
  width: min(var(--content), calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(4rem, 10vw, 7rem) clamp(2.5rem, 7vw, 4.5rem);
}

.hero-copy {
  margin-left: max(1rem, calc((100vw - var(--content)) / 2));
  margin-right: 1rem;
}

.hero-copy .eyebrow,
.hero .eyebrow {
  color: #80eee7;
}

.hero-copy h1,
.hero h1 {
  max-width: 10.5ch;
  color: #fff;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  letter-spacing: -0.055em;
}

.hero-copy p:last-child,
.hero-summary,
.hero-deck {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: #e3eaf1;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.55;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero-stat {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.5);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.content-shell,
.launcher-shell {
  padding-block: clamp(2.25rem, 6vw, 5rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading.compact h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.section-intro {
  max-width: 42rem;
  color: var(--muted);
}

.homepage-grid,
.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.55fr);
  gap: 1.15rem;
  align-items: stretch;
}

.featured-panel,
.watchlist-panel,
.post-card,
.video-card,
.photo-card,
.related-panel,
.article-detail,
.policy-card,
.editorial-note,
.newsletter-panel,
.source-section,
.article-media,
.error-hero {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.featured-link,
.post-card-link {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.featured-link {
  grid-template-columns: minmax(16rem, 1.05fr) minmax(18rem, 0.95fr);
}

.featured-link > img,
.featured-link > picture,
.featured-link > picture img {
  width: 100%;
  height: 100%;
  min-height: 31rem;
  object-fit: cover;
}

.featured-copy,
.post-card-copy,
.media-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.featured-copy {
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.featured-copy h2 {
  margin-block: 0.75rem 0.9rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.featured-copy > p:last-child,
.post-card-copy > p:last-child,
.media-copy > p,
.watch-item p,
.related-item p {
  margin: 0;
  color: var(--muted);
}

.post-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.post-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.post-meta > * + *::before {
  margin-right: 0.45rem;
  color: var(--line-strong);
  content: "•";
}

.tag-row span,
.source-chip,
.media-badge,
.score-badge,
.source-link {
  display: inline-flex;
  min-height: 1.75rem;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.watchlist-panel,
.related-panel {
  padding: 1.3rem;
}

.watchlist-panel h2,
.related-panel h2 {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.watch-item,
.related-item {
  display: block;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.watch-item:first-of-type,
.related-item:first-of-type {
  border-top: 0;
}

.watch-item h3,
.related-item h3 {
  margin-bottom: 0.35rem;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.watch-item:hover h3,
.related-item:hover h3 {
  color: var(--accent);
}

.archive-section,
.media-section,
.photo-feature-section,
.newsletter-section {
  margin-top: clamp(2.75rem, 7vw, 5.5rem);
}

.search-box {
  display: grid;
  width: min(100%, 21rem);
  gap: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.search-box input,
[data-search] {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.search-box input:focus,
[data-search]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 106, 114, 0.17);
}

.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.25rem;
  margin-bottom: 1.25rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.filter-toolbar .filter-row {
  margin-bottom: 0;
}

.filter-row button,
[data-filter] {
  min-height: 2.55rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 820;
  white-space: nowrap;
}

.filter-row button:hover,
[data-filter]:hover,
.filter-row button.is-active,
[data-filter].is-active,
[data-filter][aria-pressed="true"] {
  border-color: var(--night);
  background: var(--night);
  color: #fff;
}

.results-count,
[data-results-count] {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 760;
}

.post-grid,
.video-grid,
.photo-grid,
.policy-grid,
.site-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.post-card {
  min-width: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.post-card-link {
  grid-template-rows: auto 1fr;
}

.post-card-link > img,
.post-card-link > picture,
.post-card-link > picture img,
.post-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card-copy {
  gap: 0.7rem;
  padding: 1.15rem;
}

.post-card h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
}

.card-image-credit {
  margin: 0;
  padding: 0.55rem 0.8rem;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 680;
  line-height: 1.45;
}

.card-image-credit a {
  color: var(--accent);
  font-weight: 800;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 1.5rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--muted);
  font-weight: 760;
}

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

.video-frame,
[data-video-frame] {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--night);
}

.video-frame iframe,
[data-video-frame] iframe,
.video-frame img,
[data-video-frame] img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.youtube-player {
  display: block;
  background: #050a10;
}

.media-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.playable-badge {
  display: inline-flex;
  min-height: 1.75rem;
  align-items: center;
  padding: 0.3rem 0.58rem;
  border: 1px solid rgba(54, 211, 153, 0.34);
  border-radius: 999px;
  background: rgba(54, 211, 153, 0.12);
  color: #9df0cd;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-facade,
.video-frame > [data-youtube-id],
[data-video-frame] > [data-youtube-id] {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--night);
  color: #fff;
  text-align: left;
}

.video-facade::after,
.video-frame > [data-youtube-id]::after,
[data-video-frame] > [data-youtube-id]::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(4, 12, 22, 0.72));
}

.video-play {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  color: var(--night);
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.27);
  font-size: 0.79rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-play::before {
  content: "▶";
  color: var(--accent);
  font-size: 0.75rem;
}

.video-card:hover .video-play,
.video-facade:hover .video-play {
  background: var(--accent);
  color: #fff;
}

.video-card:hover .video-play::before,
.video-facade:hover .video-play::before {
  color: #fff;
}

.media-copy {
  gap: 0.65rem;
  padding: 1.15rem;
}

.media-copy h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.media-link,
.source-link,
.article-source-list a,
.source-list a {
  color: var(--accent);
  font-weight: 850;
}

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

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--night);
  color: #e7edf4;
}

.newsletter-panel h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.newsletter-panel p {
  margin: 0.75rem 0 0;
  color: #c5d0dc;
}

[data-newsletter-form] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
}

[data-newsletter-form] input {
  min-width: 0;
  min-height: 3rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid #708095;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}

[data-newsletter-form] button,
.button-link,
.primary-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

[data-newsletter-form] button:hover,
.button-link:hover,
.primary-button:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  color: #fff;
}

[data-newsletter-status] {
  grid-column: 1 / -1;
  min-height: 1.5em;
  margin: 0;
  color: #d9e1e9;
  font-size: 0.84rem;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 19rem;
  gap: 1.25rem;
  align-items: start;
  padding-block: clamp(1.5rem, 5vw, 4rem);
}

.back-link {
  grid-column: 1 / -1;
  width: fit-content;
  font-weight: 850;
}

.article-detail {
  min-width: 0;
}

.article-hero-image,
.article-detail > picture,
.article-detail > picture img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.article-body {
  padding: clamp(1.35rem, 5vw, 3.6rem);
}

.article-body h1 {
  max-width: 17ch;
  margin-block: 0.65rem 1rem;
  font-size: clamp(2.25rem, 6vw, 4.75rem);
}

.article-body .standfirst {
  max-width: var(--reading);
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.3vw, 1.42rem);
  line-height: 1.52;
}

.article-body > p,
.article-body > ul,
.article-body > ol,
.article-body > blockquote,
.article-body > h2,
.article-body > h3,
.article-body > .article-source-list,
.article-body > .article-author,
.article-body > .article-disclaimer,
.article-body > .editorial-note,
.article-body > .update-note,
.article-body > .article-media {
  max-width: var(--reading);
}

.article-body > p,
.article-body li {
  font-size: 1.05rem;
}

.article-body h2 {
  margin-block: 2.25rem 0.85rem;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
}

.article-body h3 {
  margin-block: 1.65rem 0.65rem;
  font-size: 1.35rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.35rem;
}

.article-body li {
  margin-bottom: 0.55rem;
}

.article-body blockquote {
  margin-left: 0;
  padding: 0.2rem 0 0.2rem 1.25rem;
  border-left: 4px solid var(--accent);
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.article-source-list {
  color: var(--muted);
  font-size: 0.9rem;
}

.article-source-list span {
  margin-inline: 0.4rem;
  color: var(--line-strong);
}

.article-media {
  margin-block: 1.75rem 2rem;
  box-shadow: none;
}

.article-media > div:last-child:not(.video-frame) {
  padding: 1rem;
}

.article-author,
.article-disclaimer,
.editorial-note,
.update-note {
  margin-block: 1.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.update-note {
  border-left: 4px solid var(--signal);
  background: var(--signal-soft);
}

.article-author p,
.article-disclaimer p,
.editorial-note p,
.update-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.related-panel {
  position: sticky;
  top: 5.8rem;
}

.policy-page {
  padding-block: clamp(2.5rem, 7vw, 5rem);
}

.policy-hero {
  max-width: 49rem;
  margin-bottom: 2rem;
}

.policy-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.policy-hero p:last-child {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.policy-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.policy-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.65rem;
}

.policy-card p,
.policy-card li {
  color: var(--ink-soft);
}

.site-footer {
  padding: 2.25rem max(1rem, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
  color: var(--muted);
}

.site-footer,
.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.footer-links a {
  color: var(--ink-soft);
  font-weight: 760;
}

.error-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
}

.error-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.error-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  object-fit: cover;
}

@media (max-width: 62rem) {
  .homepage-grid,
  .lead-grid,
  .article-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .related-panel {
    position: static;
  }

  .post-grid,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 47.5rem) {
  html {
    scroll-padding-top: 5rem;
  }

  .site-header,
  .launcher-header {
    min-height: 4.2rem;
    flex-wrap: wrap;
    padding: 0.65rem 1rem;
  }

  .site-header .header-inner {
    flex-wrap: wrap;
  }

  .menu-toggle,
  [data-menu-toggle] {
    display: inline-flex;
  }

  [data-site-nav],
  .top-nav {
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.35rem;
    border-top: 1px solid var(--line);
  }

  .menu-ready [data-site-nav]:not(.is-open) {
    display: none;
  }

  [data-site-nav] a,
  .top-nav a {
    flex: 1 1 calc(50% - 0.25rem);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.68);
  }

  .publication-hero,
  .hero {
    min-height: 30rem;
  }

  .publication-hero::before,
  .hero::before {
    background: linear-gradient(0deg, rgba(7, 17, 29, 0.96) 0%, rgba(7, 17, 29, 0.68) 70%, rgba(7, 17, 29, 0.35));
  }

  .hero-copy,
  .hero-inner {
    padding-bottom: 2.6rem;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .featured-link,
  .newsletter-panel,
  .error-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .featured-link > img,
  .featured-link > picture,
  .featured-link > picture img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

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

  [data-newsletter-form] {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-newsletter-status] {
    grid-column: auto;
  }
}

@media (max-width: 35rem) {
  .content-shell,
  .article-shell,
  .policy-page,
  .site-footer-inner,
  .header-inner,
  .hero-inner,
  .launcher-shell {
    width: min(100% - 1.25rem, var(--content));
  }

  .brand-copy small {
    display: none;
  }

  .hero-copy {
    margin-inline: 0.625rem;
  }

  .hero-copy h1,
  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.25rem);
  }

  .filter-row {
    width: 100%;
  }

  .filter-row button,
  [data-filter] {
    flex: 1 1 auto;
  }

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

  .article-body {
    padding: 1.15rem;
  }

  .article-body h1 {
    font-size: clamp(2.1rem, 12vw, 3.25rem);
  }

  .site-footer,
  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .post-card:hover {
    transform: none;
  }
}

@media (forced-colors: active) {
  :focus-visible {
    outline-color: Highlight;
  }

  .publication-hero::after,
  .hero::after {
    background: CanvasText;
  }
}

@media print {
  .site-header,
  .site-footer,
  .related-panel,
  .newsletter-section,
  .article-media,
  .skip-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .article-shell {
    display: block;
    width: 100%;
    padding: 0;
  }

  .article-detail {
    border: 0;
    box-shadow: none;
  }

  a {
    color: #000;
  }
}

/* Shared static-generator contract */
.shell {
  width: min(var(--content), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header .header-inner {
  width: min(var(--content), 100%);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
}

.brand > span:last-child {
  display: grid;
  gap: 0.16rem;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.brand small {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.nav-rss {
  margin-left: 0.2rem;
  border: 1px solid var(--line-strong);
}

.hero-section {
  padding-block: clamp(2rem, 6vw, 4.75rem);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  gap: 1.5rem 3rem;
  align-items: end;
  max-width: none;
  margin-bottom: 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line-strong);
}

.hero-intro h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 5vw, 4.3rem);
}

.hero-intro > p {
  max-width: 34rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  min-height: 34rem;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--night);
  box-shadow: var(--shadow);
}

.lead-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  color: #e7eef5;
}

.lead-copy .eyebrow {
  color: #82eee8;
}

.lead-copy .story-meta {
  color: #b9c8d6;
}

.lead-copy .story-meta span:first-child {
  color: #fff;
}

.lead-copy h1 {
  max-width: 14ch;
  margin-block: 0.8rem 1rem;
  color: #fff;
  font-size: clamp(2.4rem, 5.4vw, 4.9rem);
  letter-spacing: -0.05em;
}

.lead-dek {
  max-width: 43rem;
  margin-bottom: 1.1rem;
  color: #dce5ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.48;
}

.watch-note {
  max-width: 42rem;
  margin-bottom: 1.45rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #bfcbd6;
  font-size: 0.92rem;
}

.watch-note strong {
  color: #fff;
}

.lead-visual {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: var(--night-soft);
}

.lead-visual picture,
.lead-visual img {
  width: 100%;
  height: 100%;
}

.lead-visual img {
  min-height: 34rem;
  object-fit: cover;
  transition: transform 400ms ease;
}

.lead-visual:hover img {
  transform: scale(1.025);
}

.image-credit {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.82);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 750;
}

.latest-section,
.video-section,
.related-section {
  padding-block: clamp(2.75rem, 7vw, 5.5rem);
}

.latest-section {
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.section-heading > p,
.archive-heading > p {
  max-width: 31rem;
  margin: 0;
  color: var(--muted);
}

.story-grid {
  display: grid;
  gap: 1.15rem;
}

.story-grid-top {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-grid-archive,
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-deep);
}

.story-grid .post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.card-image picture,
.card-image img {
  width: 100%;
}

.card-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 260ms ease;
}

.post-card:hover .card-image img {
  transform: scale(1.025);
}

.rank-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: grid;
  min-width: 2.15rem;
  min-height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(7, 17, 29, 0.88);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}

.card-body {
  display: flex;
  min-height: 16.5rem;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.15rem;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.story-meta > * + *::before {
  margin-right: 0.4rem;
  color: var(--line-strong);
  content: "/";
}

.story-meta span:first-child {
  color: var(--accent-hover);
  font-weight: 900;
}

.card-body h3 {
  margin-block: 0.7rem 0.65rem;
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
}

.story-grid-top .card-body h3 {
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
}

.card-body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.card-body h3 a:hover {
  color: var(--accent-hover);
}

.card-body > p {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.card-footer {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.card-footer a {
  font-weight: 900;
}

.archive-section {
  margin-top: 0;
  padding-block: clamp(2.75rem, 7vw, 5.5rem);
}

.archive-tools {
  display: grid;
  grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1.35fr);
  gap: 0.85rem 1.25rem;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.search-field {
  position: relative;
  display: block;
}

.search-field input {
  width: 100%;
  min-height: 3rem;
  padding: 0.65rem 2.6rem 0.65rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.search-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 106, 114, 0.17);
}

.search-field > span:last-child {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.filter-list {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.42rem;
}

.filter-button {
  min-height: 2.5rem;
  padding: 0.48rem 0.78rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 820;
  white-space: nowrap;
}

.filter-button:hover,
.filter-button.is-active,
.filter-button[aria-pressed="true"] {
  border-color: var(--night);
  background: var(--night);
  color: #fff;
}

.results-count {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.no-results {
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-soft);
  text-align: center;
}

.no-results h3 {
  margin-bottom: 0.4rem;
  font-size: 1.55rem;
}

.no-results p {
  margin: 0;
  color: var(--muted);
}

.video-section {
  background: var(--night);
  color: #d8e1ea;
}

.video-section .section-heading h2,
.video-section .video-card-body h3 {
  color: #fff;
}

.video-section .eyebrow {
  color: #82eee8;
}

.video-section .section-heading > p {
  color: #b8c6d3;
}

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

.video-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--night-soft);
  box-shadow: none;
}

.video-facade,
[data-video-facade] {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #07111d;
}

.video-facade picture,
.video-facade img,
[data-video-facade] picture,
[data-video-facade] img,
.video-facade iframe,
[data-video-facade] iframe {
  width: 100%;
  height: 100%;
}

.video-facade img,
[data-video-facade] img {
  object-fit: cover;
}

.video-facade iframe,
[data-video-facade] iframe {
  border: 0;
}

.video-facade::after,
[data-video-facade]::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(4, 12, 22, 0.68));
  pointer-events: none;
}

.video-facade.is-playing::after,
[data-video-facade].is-playing::after {
  display: none;
}

.video-play {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  display: inline-flex;
  width: auto;
  height: auto;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.48rem;
  padding: 0.55rem 0.82rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--night);
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.27);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-play::before {
  display: none;
}

.play-icon {
  color: var(--accent);
  font-size: 0.72rem;
}

.video-play:hover {
  background: var(--accent);
  color: #fff;
}

.video-play:hover .play-icon {
  color: #fff;
}

.video-card-body {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  padding: 1.15rem;
}

.video-card-body h3 {
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
}

.video-card-body > p:not(.eyebrow) {
  margin-bottom: 1rem;
  color: #bcc9d5;
  font-size: 0.91rem;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #c9d4df;
  font-size: 0.78rem;
  font-weight: 760;
}

.video-meta a {
  color: #82eee8;
  font-weight: 850;
}

.privacy-note {
  margin: 1rem 0 0;
  color: #aebdca;
  font-size: 0.8rem;
}

.privacy-note a {
  color: #82eee8;
}

.standards-section {
  margin-top: 0;
  padding-block: clamp(2.75rem, 7vw, 5.5rem);
}

.standards-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: 1.5rem 3rem;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(0, 78, 86, 0.13);
}

.standards-card h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.standards-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding-left: 1.25rem;
  color: var(--ink-soft);
}

.standards-card .text-link {
  grid-column: 1 / -1;
  width: fit-content;
  font-weight: 900;
}

.site-footer {
  display: block;
  padding: 0;
  background: var(--paper-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(9rem, 0.65fr) minmax(9rem, 0.65fr);
  gap: 2rem 3rem;
  align-items: start;
  padding-block: 2.75rem;
}

.footer-grid > div > p {
  max-width: 35rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 400;
}

.footer-grid nav {
  display: grid;
  gap: 0.55rem;
}

.footer-grid nav h2 {
  margin-bottom: 0.2rem;
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 740;
}

.footer-brand {
  width: fit-content;
}

.footer-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem 1.5rem;
  padding-block: 1rem 1.5rem;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-note p {
  margin: 0;
}

.article-shell {
  display: block;
  width: min(var(--content), calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(1.5rem, 5vw, 4.5rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: clamp(2rem, 6vw, 4rem);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.breadcrumbs a {
  color: var(--ink-soft);
}

.article-header {
  max-width: 62rem;
  margin-inline: auto;
}

.article-header h1 {
  max-width: 17ch;
  margin-block: 0.65rem 1rem;
  font-size: clamp(2.65rem, 7vw, 5.7rem);
  letter-spacing: -0.05em;
}

.article-dek {
  max-width: 48rem;
  margin-bottom: 1.35rem;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  line-height: 1.5;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 740;
}

.article-byline a {
  font-weight: 850;
}

.article-header .update-note {
  max-width: 48rem;
  margin-top: 1.25rem;
}

.article-hero {
  max-width: 70rem;
  margin: clamp(2rem, 6vw, 4rem) auto;
}

.article-hero picture,
.article-hero img {
  width: 100%;
}

.article-hero img {
  aspect-ratio: 16 / 8.5;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.article-hero figcaption {
  max-width: 54rem;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  max-width: 64rem;
  margin-inline: auto;
}

.article-content {
  min-width: 0;
}

.signal-box {
  margin-bottom: 2rem;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--accent-soft);
}

.signal-box p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

.article-content .article-body {
  padding: 0;
}

.article-content .article-body > p,
.article-content .article-body > ul,
.article-content .article-body > ol,
.article-content .article-body > blockquote,
.article-content .article-body > h2,
.article-content .article-body > h3 {
  max-width: none;
}

.article-content .article-body > p,
.article-content .article-body li {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.article-content blockquote {
  margin-block: 1.6rem;
}

.article-content blockquote p {
  margin-bottom: 0.45rem;
}

.article-content blockquote cite {
  color: var(--muted);
  font-family: inherit;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 760;
}

.article-content .article-media {
  max-width: none;
  margin-block: 2.5rem;
  padding: 1.25rem;
  box-shadow: none;
}

.article-content .article-media > h2 {
  margin-bottom: 0.65rem;
  font-size: 1.75rem;
}

.article-content .article-media > p:not(.eyebrow) {
  color: var(--muted);
}

.article-content .article-media .video-card {
  margin-top: 1rem;
  background: var(--night-soft);
}

.source-callout.article-media {
  border-left: 4px solid var(--signal);
  background: var(--signal-soft);
}

.secondary-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.secondary-button:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.article-sources,
.method-note {
  margin-top: 2.5rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.article-sources h2,
.method-note h2 {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}

.article-sources > p:last-child,
.method-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-source-list {
  display: grid;
  gap: 0.6rem;
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}

.method-note {
  border-top: 4px solid var(--accent);
}

.method-note a {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 850;
}

.article-rail {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 0.9rem;
}

.article-rail > div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
}

.article-rail p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.tag {
  display: inline-flex;
  margin: 0.15rem 0.08rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 0.7rem;
  font-weight: 820;
}

.related-section {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.policy-main {
  padding-block: clamp(2.5rem, 7vw, 5.5rem);
}

.policy-shell {
  width: min(52rem, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(1.4rem, 5vw, 3.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.policy-shell > h1 {
  max-width: 17ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.45rem, 7vw, 4.8rem);
  letter-spacing: -0.045em;
}

.policy-body {
  color: var(--ink-soft);
}

.policy-body h2 {
  margin-block: 2rem 0.7rem;
  font-size: clamp(1.6rem, 3.5vw, 2.15rem);
}

.policy-body h3 {
  margin-block: 1.5rem 0.55rem;
  font-size: 1.3rem;
}

.policy-body p,
.policy-body ul,
.policy-body ol {
  margin-bottom: 1rem;
}

.policy-body li {
  margin-bottom: 0.45rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-grid section {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.contact-grid h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.contact-grid p {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.error-main {
  display: grid;
  min-height: min(70vh, 44rem);
  place-items: center;
  padding: 2rem 1rem;
}

.error-card {
  width: min(42rem, 100%);
  padding: clamp(1.5rem, 6vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  line-height: 0.85;
}

.error-card h1 {
  margin-block: 0.7rem 1rem;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.error-card > p:not(.eyebrow):not(.error-code) {
  color: var(--muted);
}

@media (max-width: 68rem) {
  .story-grid-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid-archive,
  .related-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 15.5rem;
    gap: 2.5rem;
  }

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

@media (max-width: 50rem) {
  .hero-intro,
  .lead-story,
  .standards-card,
  .archive-tools,
  .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .lead-visual {
    min-height: 23rem;
  }

  .lead-visual img {
    min-height: 23rem;
  }

  .filter-list {
    justify-content: flex-start;
  }

  .article-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 37rem) {
  .shell,
  .article-shell,
  .policy-shell {
    width: min(var(--content), calc(100% - 1.25rem));
  }

  .brand small {
    display: none;
  }

  .story-grid-top,
  .story-grid-archive,
  .related-grid,
  .video-grid,
  .article-rail,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .lead-copy {
    padding: 1.35rem;
  }

  .lead-copy h1 {
    font-size: clamp(2.3rem, 13vw, 3.5rem);
  }

  .lead-visual,
  .lead-visual img {
    min-height: 18rem;
  }

  .card-body {
    min-height: 0;
  }

  .filter-list {
    width: 100%;
  }

  .filter-button {
    flex: 1 1 auto;
  }

  .article-header h1 {
    font-size: clamp(2.4rem, 13vw, 3.65rem);
  }

  .article-hero img {
    aspect-ratio: 4 / 3;
  }

  .policy-shell {
    padding: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-visual img,
  .card-image img {
    transition: none;
  }

  .lead-visual:hover img,
  .post-card:hover .card-image img {
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .related-section,
  .article-media,
  .article-rail,
  .skip-link {
    display: none !important;
  }

  .article-shell,
  .article-layout,
  .article-content {
    display: block;
    width: 100%;
    max-width: none;
    padding: 0;
  }
}

/* Movie News Radar visual system and progressive-enhancement hooks. */
.movie-theme {
  --paper: #f4efe7;
  --paper-deep: #e9dfd4;
  --surface: #fffdf9;
  --surface-soft: #faf4ed;
  --ink: #1a1418;
  --ink-soft: #44383d;
  --muted: #706268;
  --line: #ded1c8;
  --line-strong: #baaaa3;
  --accent: #b51f43;
  --accent-hover: #88132f;
  --accent-soft: #f6dfe5;
  --signal: #94691d;
  --signal-soft: #f3e8cc;
  --night: #110d11;
  --night-soft: #211820;
  --content: 77rem;
  background:
    radial-gradient(circle at 6% 0%, rgba(181, 31, 67, 0.06), transparent 30rem),
    var(--paper);
}

.movie-theme .brand-mark {
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(181, 31, 67, 0.11);
}

.movie-theme .publication-hero {
  min-height: clamp(23rem, 44vw, 30rem);
}

.movie-theme .publication-hero::before {
  background:
    linear-gradient(90deg, rgba(14, 8, 12, 0.95) 0%, rgba(14, 8, 12, 0.7) 53%, rgba(14, 8, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(14, 8, 12, 0.75), transparent 62%);
}

.movie-theme .publication-hero::after {
  height: 0.26rem;
  background: var(--accent);
}

.movie-theme .hero-photo {
  filter: saturate(0.88) contrast(1.04);
}

.movie-theme .hero-copy {
  max-width: 48rem;
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
}

.movie-theme .hero-copy .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.64rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(17, 13, 17, 0.46);
  color: #f0ca78;
  backdrop-filter: blur(8px);
}

.movie-theme .hero-copy h1 {
  font-size: clamp(2.75rem, 6.4vw, 4.85rem);
  line-height: 0.95;
}

.movie-theme .content-shell {
  display: flex;
  flex-direction: column;
}

.movie-theme .content-shell > * {
  order: 10;
}

.movie-theme .content-shell > .filter-row {
  order: 20;
}

.movie-theme .content-shell > .results-status,
.movie-theme .content-shell > [data-results-count] {
  order: 25;
}

.movie-theme .content-shell > .homepage-grid {
  order: 30;
}

.movie-theme .content-shell > .photo-feature-section {
  order: 35;
}

.movie-theme .content-shell > #archive {
  order: 50;
}

.movie-theme .content-shell > #media {
  order: 40;
}

.movie-theme .search-box input {
  border-radius: 999px;
  box-shadow: 0 7px 22px rgba(42, 24, 31, 0.045);
}

.movie-theme .filter-row {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-block: 0.15rem 0.42rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(181, 31, 67, 0.46) transparent;
}

.movie-theme .filter-row::-webkit-scrollbar {
  display: block;
  height: 3px;
}

.movie-theme .filter-row::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(181, 31, 67, 0.46);
}

.movie-theme .filter-row button,
.movie-theme [data-filter] {
  min-height: 2.75rem;
  flex: 0 0 auto;
}

.movie-theme .filter-row button.is-active,
.movie-theme .filter-row button[aria-pressed="true"],
.movie-theme [data-filter].is-active,
.movie-theme [data-filter][aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent);
}

.results-status {
  min-height: 1.5rem;
  margin: -0.65rem 0 1.1rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 760;
}

.movie-theme .featured-panel,
.movie-theme .watchlist-panel,
.movie-theme .post-card,
.movie-theme .video-card,
.movie-theme .related-panel,
.movie-theme .article-detail {
  border-color: rgba(84, 57, 66, 0.17);
  box-shadow: 0 14px 40px rgba(40, 23, 29, 0.075);
}

.movie-theme .featured-link > img,
.movie-theme .featured-link > picture,
.movie-theme .featured-link > picture img {
  min-height: 26rem;
}

.movie-theme .featured-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.movie-theme .post-meta span:last-child {
  color: var(--accent);
}

.movie-theme .watchlist-panel h2 {
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--ink);
}

.movie-theme .watch-item,
.movie-theme .related-item,
.movie-theme .media-link,
.movie-theme .article-source-list a,
.movie-theme .footer-links a {
  min-height: 2.75rem;
}

.movie-theme .media-link,
.movie-theme .article-source-list a,
.movie-theme .footer-links a {
  display: inline-flex;
  align-items: center;
}

.watch-empty {
  margin: 0;
  padding: 1rem 0;
  color: var(--muted);
}

.movie-theme .archive-section {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.movie-theme .post-card {
  box-shadow: none;
  content-visibility: auto;
  contain-intrinsic-size: auto 30rem;
}

.movie-theme .post-card:hover {
  border-color: rgba(181, 31, 67, 0.38);
  box-shadow: 0 18px 42px rgba(40, 23, 29, 0.12);
}

.movie-theme .post-card-copy {
  gap: 0.62rem;
}

.movie-theme .media-section {
  padding: clamp(1.2rem, 4vw, 2.2rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(181, 31, 67, 0.28), transparent 30rem),
    var(--night);
  color: #fff;
}

.movie-theme .media-section h2,
.movie-theme .media-section h3 {
  color: #fff;
}

.movie-theme .media-section .section-intro {
  color: rgba(255, 255, 255, 0.76);
}

.movie-theme .media-section .eyebrow,
.movie-theme .media-section .media-link {
  color: #f0ca78;
}

.movie-theme .media-section .video-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--night-soft);
}

.movie-theme .media-section .media-copy {
  min-height: 12.25rem;
}

.movie-theme .media-section .media-copy > p {
  color: rgba(255, 255, 255, 0.67);
}

.movie-theme .media-section .source-chip {
  background: rgba(255, 255, 255, 0.1);
  color: #f0ca78;
}

.movie-theme .article-media .playable-badge {
  border-color: rgba(20, 122, 89, 0.28);
  background: rgba(20, 122, 89, 0.08);
  color: #0b7252;
}

.video-facade {
  cursor: pointer;
}

.video-facade img {
  transition: transform 320ms ease, opacity 180ms ease;
}

.video-facade:hover img {
  transform: scale(1.035);
  opacity: 0.88;
}

.video-facade:focus-visible {
  outline: 4px solid #f0ca78;
  outline-offset: -4px;
}

.video-frame.is-playing iframe {
  width: 100%;
  height: 100%;
}

.movie-theme .article-body {
  padding: clamp(1.4rem, 5vw, 3.2rem);
}

.movie-theme .article-body h1 {
  font-size: clamp(2.35rem, 5.7vw, 4.35rem);
  line-height: 1;
}

.movie-theme .article-body > p,
.movie-theme .article-body li {
  line-height: 1.75;
}

.movie-theme .site-footer {
  border-top: 0;
  background: var(--night);
  color: rgba(255, 255, 255, 0.66);
}

.movie-theme .footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.movie-theme .footer-links a:hover {
  color: #fff;
}

.root-movie-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.95fr);
  gap: 1rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.root-movie-hero > div,
.root-lead-story {
  min-height: 31rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.root-movie-hero > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(181, 31, 67, 0.38), transparent 25rem),
    var(--night);
  color: #fff;
}

.root-movie-hero > div h1 {
  max-width: 10ch;
  color: #fff;
  font-size: clamp(2.8rem, 6.6vw, 5.4rem);
  line-height: 0.93;
}

.root-movie-hero > div > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 1.2rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.73);
}

.root-lead-story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  isolation: isolate;
  color: #fff;
  text-decoration: none;
}

.root-lead-story::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent 36%, rgba(14, 8, 12, 0.92));
}

.root-lead-story img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.root-lead-story:hover img {
  transform: scale(1.025);
}

.root-lead-story span {
  width: fit-content;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.root-lead-story h2 {
  max-width: 16ch;
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
}

.root-latest {
  margin-bottom: clamp(2.8rem, 7vw, 5rem);
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.workflow-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.75);
}

.workflow-strip span {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.workflow-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 730;
}

@media (min-width: 73.75rem) {
  .movie-theme .video-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .movie-theme .video-grid > .video-card {
    grid-column: span 2;
  }

  .movie-theme .video-grid > .video-card:nth-child(4):nth-last-child(2),
  .movie-theme .video-grid > .video-card:nth-child(5):last-child {
    grid-column: span 3;
  }
}

@media (max-width: 47.5rem) {
  html {
    scroll-padding-top: 7.5rem;
  }

  :where([id]) {
    scroll-margin-top: 7.5rem;
  }

  .movie-theme .site-header,
  .movie-theme .launcher-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding-bottom: 0.4rem;
  }

  .movie-theme .top-nav {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.35rem;
    overflow-x: auto;
    padding: 0.3rem 1.8rem 0.35rem 0;
    border-top: 0;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(181, 31, 67, 0.52) transparent;
  }

  .movie-theme .top-nav.has-overflow {
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 1.8rem), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 1.8rem), transparent 100%);
  }

  .movie-theme .top-nav::-webkit-scrollbar {
    display: block;
    height: 3px;
  }

  .movie-theme .top-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(181, 31, 67, 0.52);
  }

  .movie-theme .top-nav a {
    min-height: 2.75rem;
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 999px;
  }

  .movie-theme .publication-hero {
    min-height: 24rem;
  }

  .movie-theme .featured-link > img,
  .movie-theme .featured-link > picture,
  .movie-theme .featured-link > picture img {
    min-height: 0;
  }

  .movie-theme .media-section {
    margin-inline: -0.625rem;
    border-radius: 0;
  }

  .root-movie-hero,
  .workflow-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .root-movie-hero > div,
  .root-lead-story {
    min-height: 25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .root-lead-story:hover img,
  .video-facade:hover img {
    transform: none;
  }
}

.movie-theme .article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 19rem;
  gap: 1.25rem;
  align-items: start;
}

.movie-theme .article-shell > .back-link {
  grid-column: 1 / -1;
}

.movie-theme .article-hero-figure {
  margin: 0;
}

.movie-theme .article-hero-figure .article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.movie-theme .article-hero-figure figcaption {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.movie-theme .article-hero-figure .image-credit {
  position: static;
  display: block;
  border-radius: 0;
  background: var(--surface-soft);
  color: var(--muted);
  font-weight: 680;
}

.movie-theme .article-hero-figure .image-credit a {
  color: var(--accent);
}

.movie-theme .article-end-note {
  margin-top: 2.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.movie-theme .related-panel {
  position: sticky;
  top: 5.8rem;
}

@media (max-width: 62rem) {
  .movie-theme .article-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .movie-theme .related-panel {
    position: static;
  }
}
