:root {
  --page: #f4f1e8;
  --paper: #fffdfa;
  --paper-alt: #fff8f6;
  --ink: #171412;
  --muted: #5c5650;
  --line: #ddd3c3;
  --line-strong: #c8baa0;
  --accent: #b2342f;
  --accent-dark: #7d2420;
  --accent-soft: #f7e3df;
  --blue: #19375e;
  --shadow: 0 18px 44px rgba(8, 7, 5, 0.12);
  --shadow-soft: 0 8px 22px rgba(8, 7, 5, 0.08);
  --radius: 18px;
  --max: 1180px;
  --serif: "Fraunces", "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(1100px 500px at 8% -16%, rgba(178, 52, 47, 0.15), transparent 60%),
    radial-gradient(1000px 420px at 88% -14%, rgba(25, 55, 94, 0.12), transparent 62%),
    var(--page);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(25, 55, 94, 0.35);
  outline-offset: 2px;
  border-radius: 6px;
}

.wrap {
  width: min(var(--max), 95vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(248, 245, 239, 0.94);
  border-bottom: 1px solid var(--line-strong);
}

.util-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #6e665b;
  border-bottom: 1px solid var(--line);
}

.masthead {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 14px 0 12px;
}

.publication {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.publication .kicker {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.publication h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.4vw, 2.8rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.publication .dek {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.92rem;
  color: #443f38;
}

.header-links a {
  border-bottom: 2px solid transparent;
}

.header-links a:hover {
  border-bottom-color: var(--accent);
}

.section-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.96);
}

.section-nav .wrap {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0;
  scrollbar-width: thin;
}

.section-nav a {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3f3a34;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.section-nav a.active,
.section-nav a:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
}

.breaking-strip {
  margin: 20px auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow-soft);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
}

.breaking-strip strong {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.news-front {
  margin: 18px auto 30px;
  display: grid;
  gap: 16px;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  gap: 16px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.lead-story {
  padding: 18px 20px 20px;
}

.story-kicker {
  margin: 0 0 10px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--accent-dark);
}

.lead-story h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  line-height: 1.12;
}

.lead-story h2 a:hover {
  color: var(--accent-dark);
}

.story-dek {
  margin: 12px 0 14px;
  color: #3f3a34;
  font-size: 1.03rem;
  max-width: 66ch;
}

.lead-story-image {
  margin: 0 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #f8f3eb;
}

.lead-story-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lead-story-image figcaption {
  margin: 0;
  padding: 8px 10px;
  border-top: 1px solid var(--line);
  color: #695f52;
  font-size: 0.8rem;
}

.story-meta {
  margin: 0;
  color: #6b6358;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.96rem;
}

.read-link:hover {
  color: var(--accent-dark);
}

.lead-rail {
  padding: 14px;
}

.lead-rail h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.rail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.rail-item {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.rail-item:first-child {
  border-top: none;
  padding-top: 0;
}

.rail-item a {
  display: block;
}

.rail-item small {
  display: block;
  margin-bottom: 4px;
  color: #746c61;
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rail-item span {
  font-family: var(--serif);
  line-height: 1.28;
  font-size: 1.05rem;
}

.rail-item a:hover span {
  color: var(--accent-dark);
}

.coverage-block {
  padding: 16px;
}

.coverage-block.alert {
  background: var(--paper-alt);
  border-color: #e8c6c0;
}

.block-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.block-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.block-head p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 56ch;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.story-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px 12px 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.alert .story-card {
  background: #fffaf9;
  border-color: #eec7c1;
}

.story-card:hover {
  transform: translateY(-2px);
  border-color: #b3a692;
  box-shadow: 0 10px 20px rgba(8, 7, 5, 0.09);
}

.story-card h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.25;
}

.story-card h4 a:hover {
  color: var(--accent-dark);
}

.story-card .story-meta {
  margin: 0 0 8px;
}

.story-card p {
  margin: 10px 0 0;
  color: #38342e;
  font-size: 0.98rem;
}

.story-card-media {
  display: block;
  margin: -2px -2px 10px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d8ccba;
  background: #f8f3eb;
}

.story-card-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.story-card:hover .story-card-media img {
  transform: scale(1.03);
}

img.poster-thumb {
  object-fit: cover !important;
  background: #f3f1ec;
}

.site-footer {
  width: min(var(--max), 95vw);
  margin: 0 auto 26px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: #6f675c;
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer a {
  color: var(--blue);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--accent-dark);
}

/* Article pages */
.article-main {
  margin: 18px auto 30px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
  gap: 16px;
  align-items: start;
}

.article-shell {
  padding: 20px 22px;
}

.breadcrumbs {
  margin-bottom: 10px;
  color: #71695e;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--blue);
  font-weight: 700;
}

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

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.93rem;
}

.back-link:hover {
  color: var(--accent-dark);
}

.article-shell h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.12;
}

.article-dek {
  margin: 12px 0 14px;
  color: #3f3a34;
  font-size: 1.08rem;
}

.article-meta {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.71rem;
  color: #6e665b;
}

.article-hero {
  margin: 14px 0 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #f8f3eb;
}

.article-hero img {
  width: 100%;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.article-hero img.tall-poster {
  display: block;
  width: min(100%, 560px);
  margin: 0 auto;
  max-height: 760px;
  object-fit: contain;
  background: #f1eee8;
}

.article-hero figcaption {
  margin: 0;
  padding: 8px 10px;
  border-top: 1px solid var(--line);
  color: #695f52;
  font-size: 0.83rem;
}

.article-body {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.article-body p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #26231f;
}

.pull-quote {
  margin: 4px 0;
  padding: 14px 14px 14px 16px;
  border-left: 4px solid var(--accent);
  background: #faf3f1;
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.45;
  color: #2c231f;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.article-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid #e1d6c7;
  background: #fbf7ef;
  color: #544d43;
  font-size: 0.8rem;
}

.article-sidebar {
  display: grid;
  gap: 12px;
}

.sidebar-card {
  padding: 14px;
}

.sidebar-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.24rem;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.sidebar-list li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.sidebar-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.sidebar-list a {
  color: #2f2924;
  font-family: var(--serif);
  line-height: 1.35;
}

.sidebar-list a:hover {
  color: var(--accent-dark);
}

.newsletter {
  background: #fff3ef;
  border-color: #e8b8af;
}

.newsletter p {
  margin: 0;
  color: #4e453e;
  font-size: 0.96rem;
}

@media (max-width: 1020px) {
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .story-cards {
    grid-template-columns: 1fr;
  }

  .block-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .wrap,
  .site-footer {
    width: 96vw;
  }

  .util-bar {
    font-size: 0.66rem;
  }

  .masthead {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .header-links {
    justify-content: flex-start;
  }

  .lead-story,
  .coverage-block,
  .article-shell,
  .sidebar-card {
    padding: 14px;
  }

  .article-body p {
    font-size: 1rem;
  }
}

/* News home broadsheet front page */
.news-home {
  --news-ink: #111111;
  --news-paper: #f7f3eb;
  --news-paper-deep: #efe8dc;
  --news-rule: #d9d3c8;
  --news-muted: #5f594f;
  --news-accent: #b08a3c;
  --news-accent-dark: #8c6b2f;
  --news-focus: #8c6b2f;
  --news-max-width: 1280px;
  --news-gap: 20px;
  --news-section-gap: 24px;
  --news-font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --news-font-ui: "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--news-paper);
  color: var(--news-ink);
  font-family: var(--news-font-ui);
  line-height: 1.5;
}

.news-home img {
  display: block;
  max-width: 100%;
}

.news-home a {
  color: inherit;
  text-decoration: none;
}

.news-home a:hover {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.news-home a:focus-visible,
.news-home button:focus-visible,
.news-home [tabindex]:focus-visible {
  outline: 2px solid var(--news-focus);
  outline-offset: 3px;
  border-radius: 0;
}

.visually-hidden {
  position: absolute;
  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;
  left: 16px;
  top: 16px;
  z-index: 50;
  padding: 10px 14px;
  background: #fff;
  border: 2px solid #111111;
  color: #111111;
  transform: translateY(-220%);
}

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

.news-container {
  width: min(calc(100% - 40px), var(--news-max-width));
  margin-inline: auto;
}

.news-shell {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(247, 243, 235, 0.98) 0, rgba(247, 243, 235, 0.98) 96px, rgba(247, 243, 235, 0) 96px),
    url("graphics/halftone-top.svg") top center / 100% auto no-repeat,
    var(--news-paper);
}

.news-header {
  position: relative;
}

.news-breaking-bar {
  border-bottom: 1px solid rgba(247, 243, 235, 0.16);
  background: var(--news-ink);
  color: var(--news-paper);
}

.news-breaking-inner {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(300px, 360px);
  gap: 20px;
  align-items: center;
  min-height: 48px;
  padding-block: 4px;
}

.news-breaking-label img {
  width: 158px;
  height: auto;
}

.news-breaking-item {
  margin: 0;
  min-width: 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.news-breaking-link {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-market-strip {
  justify-self: end;
  width: 100%;
  max-width: 360px;
  height: 34px;
  object-fit: cover;
}

.news-utility-nav {
  border-bottom: 1px solid var(--news-rule);
  background: rgba(247, 243, 235, 0.94);
  backdrop-filter: blur(12px);
}

.news-utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 40px;
}

.news-utility-list,
.news-section-nav-list,
.news-footer-links,
.news-link-cluster-list,
.news-record-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-utility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  color: var(--news-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-utility-actions {
  justify-content: flex-end;
}

.news-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: -3px;
}

.news-link-icon img,
.news-component-title img,
.news-story-kicker img,
.news-live-note img,
.news-section-title img,
.news-tool-link img {
  width: 100%;
  height: 100%;
}

.news-utility-button,
.news-button {
  display: inline-block;
  padding: 9px 14px;
  border: 1px solid var(--news-ink);
  background: transparent;
  color: var(--news-ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-masthead {
  padding: 12px 0 6px;
}

.news-edition-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  color: var(--news-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-rule {
  margin: 12px 0;
}

.news-rule img,
.news-divider img {
  width: 100%;
  height: auto;
}

.news-rule--ornament {
  margin-bottom: 12px;
}

.news-rule--double {
  margin-top: 12px;
}

.news-masthead-main {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 84px;
  gap: 18px;
  align-items: center;
}

.news-badge-link {
  width: 64px;
}

.news-masthead-center {
  text-align: center;
}

.news-kicker,
.news-story-kicker,
.news-brief-meta,
.news-section-kicker,
.news-feature-meta,
.news-dossier-label,
.news-component-title,
.news-component-link,
.news-section-link {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-kicker {
  margin: 0;
  color: var(--news-accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.news-masthead-title {
  margin: 8px 0 0;
  font-family: var(--news-font-display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.news-masthead-note {
  margin: 8px 0 0;
  color: var(--news-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-masthead-tools {
  display: flex;
  justify-self: end;
  gap: 10px;
}

.news-tool-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--news-ink);
}

.news-section-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-top: 1px solid var(--news-rule);
  border-bottom: 2px solid var(--news-ink);
  background: rgba(247, 243, 235, 0.96);
  backdrop-filter: blur(12px);
}

.news-section-nav-list {
  display: flex;
  gap: 20px;
  align-items: center;
  overflow-x: auto;
  min-height: 52px;
  scrollbar-width: none;
}

.news-section-nav-list::-webkit-scrollbar {
  display: none;
}

.news-section-nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 3px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-section-nav-list a[aria-current="page"] {
  border-bottom-color: var(--news-accent);
  color: var(--news-accent-dark);
}

#news-main {
  padding: 20px 0 40px;
}

.news-lead-package,
.news-content-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--news-gap);
  align-items: start;
}

.news-lead-package {
  padding-bottom: 20px;
}

.news-story-header,
.news-section-body {
  min-width: 0;
}

.news-lead-rail,
.news-hero,
.news-brief-stack,
.news-section,
.news-rail-module {
  padding: 12px 16px 18px;
  border: 1px solid rgba(217, 211, 200, 0.9);
  border-top: 2px solid var(--news-ink);
  background: rgba(255, 255, 255, 0.38);
}

.news-lead-rail {
  grid-column: span 2;
}

.news-hero {
  grid-column: span 7;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.92fr);
  grid-template-areas:
    "header media"
    "support media";
  gap: 14px;
}

.news-brief-stack {
  grid-column: span 3;
}

.news-story-header {
  grid-area: header;
  order: initial;
}

.news-hero-media {
  grid-area: media;
  order: initial;
}

.news-story-support {
  grid-area: support;
  order: initial;
}

.news-component-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 12px;
}

.news-component-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--news-accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.news-component-title img,
.news-section-title img {
  width: 18px;
  height: 18px;
}

.news-component-link,
.news-section-link {
  color: var(--news-muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.news-newsletter-frame {
  width: 100%;
  border: 1px solid var(--news-rule);
}

.news-rail-text {
  margin: 16px 0 14px;
  color: var(--news-muted);
  font-size: 0.97rem;
}

.news-rail-links,
.news-brief-list,
.news-most-read-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-rail-links {
  margin-top: 18px;
  border-top: 1px solid var(--news-rule);
}

.news-rail-links li {
  border-bottom: 1px solid var(--news-rule);
}

.news-rail-links a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  font-size: 0.95rem;
}

.news-rail-links strong {
  font-weight: 700;
}

.news-rail-links span {
  color: var(--news-muted);
  font-size: 0.85rem;
  text-align: right;
}

.news-live-note {
  display: flex;
  gap: 10px;
  align-items: start;
  margin: 16px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--news-rule);
  color: var(--news-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-live-note img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.news-story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--news-accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.news-story-kicker img {
  width: 18px;
  height: 18px;
}

.news-hero-title {
  margin: 10px 0 10px;
  font-family: var(--news-font-display);
  font-size: clamp(1.95rem, 3.4vw, 3.8rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.news-hero-dek {
  margin: 0;
  max-width: 62ch;
  color: var(--news-muted);
  font-size: 1rem;
  line-height: 1.56;
}

.news-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--news-rule);
  color: var(--news-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-story-meta span,
.news-story-meta time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.news-story-meta img {
  width: 14px;
  height: 14px;
}

.news-hero-media {
  margin: 0;
}

.news-hero-media img,
.news-feature-media {
  width: 100%;
  border: 1px solid var(--news-rule);
  background: var(--news-paper-deep);
  object-fit: cover;
}

.news-hero-media img {
  aspect-ratio: 16 / 9;
}

.news-hero-media figcaption {
  margin-top: 6px;
  color: var(--news-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-story-support {
  display: grid;
  gap: 0;
  margin-top: 0;
  border-top: 1px solid var(--news-rule);
}

.news-story-support a {
  padding: 14px 0;
  border-bottom: 1px solid var(--news-rule);
  font-size: 1rem;
  font-weight: 700;
}

.news-brief-item {
  padding: 14px 0;
  border-top: 1px solid var(--news-rule);
}

.news-brief-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.news-brief-meta,
.news-section-kicker,
.news-feature-meta,
.news-dossier-label {
  margin: 0;
  color: var(--news-muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.news-brief-headline,
.news-feature-title,
.news-dossier-title {
  margin: 8px 0 0;
  font-family: var(--news-font-display);
  font-weight: 700;
  line-height: 1.02;
}

.news-brief-headline {
  font-size: 1.28rem;
}

.news-brief-summary {
  margin: 8px 0 0;
  color: var(--news-muted);
  font-size: 0.92rem;
}

.news-divider {
  padding: 0 0 20px;
}

.news-main-column {
  grid-column: span 9;
  display: grid;
  gap: var(--news-section-gap);
}

.news-right-rail {
  grid-column: span 3;
  display: grid;
  gap: 22px;
  align-content: start;
  position: sticky;
  top: 118px;
}

.news-section-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--news-ink);
  margin-bottom: 14px;
}

.news-section-kicker {
  margin-bottom: 6px;
}

.news-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--news-font-display);
  font-size: clamp(1.35rem, 1.75vw, 1.9rem);
  font-weight: 700;
  line-height: 0.96;
}

.news-section-title img {
  width: 22px;
  height: 22px;
}

.news-section-body--operator,
.news-section-body--dealmakers {
  display: grid;
  gap: 22px;
}

.news-section-body--operator {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
}

.news-section-body--dealmakers {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.news-feature-card,
.news-dossier-card,
.news-culture-card,
.news-rail-module {
  background: transparent;
}

.news-feature-body {
  padding-top: 10px;
}

.news-feature-title {
  font-size: clamp(1.34rem, 1.6vw, 1.75rem);
}

.news-feature-dek,
.news-compact-dek,
.news-culture-dek,
.news-subscribe-text {
  margin: 10px 0 0;
  color: var(--news-muted);
}

.news-feature-meta {
  margin-top: 12px;
}

.news-compact-stack {
  display: grid;
  align-content: start;
  gap: 16px;
}

.news-compact-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--news-rule);
}

.news-compact-stack .news-compact-card:first-child {
  padding-top: 0;
  border-top: 0;
}

.news-compact-media {
  width: 132px;
  aspect-ratio: 4 / 3;
}

.news-compact-headline {
  margin: 8px 0 0;
  font-family: var(--news-font-display);
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1.06;
}

.news-link-cluster {
  padding-left: 20px;
  border-left: 1px solid var(--news-rule);
}

.news-link-cluster-list li {
  padding: 14px 0;
  border-top: 1px solid var(--news-rule);
}

.news-link-cluster-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.news-link-cluster-list a {
  font-family: var(--news-font-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.08;
}

.news-dossier-grid,
.news-culture-grid {
  display: grid;
  gap: 18px;
}

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

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

.news-dossier-label {
  display: inline-block;
  padding: 4px 8px;
  background: var(--news-ink);
  color: var(--news-paper);
}

.news-dossier-title {
  font-size: 1.24rem;
}

.news-culture-dek {
  font-size: 0.95rem;
}

.news-most-read-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--news-rule);
}

.news-most-read-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.news-most-read-number {
  font-family: var(--news-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--news-accent-dark);
}

.news-most-read-item a {
  font-weight: 700;
  line-height: 1.3;
}

.news-record-card {
  padding: 12px 16px 16px;
  border-right: 1px solid var(--news-rule);
  border-bottom: 1px solid var(--news-rule);
  border-left: 1px solid var(--news-rule);
  background: linear-gradient(180deg, rgba(239, 232, 220, 0.72), rgba(247, 243, 235, 0.96));
}

.news-record-motif {
  width: 100%;
  max-width: 180px;
  margin-bottom: 16px;
  border: 1px solid var(--news-rule);
  background: var(--news-paper-deep);
}

.news-record-links li {
  padding: 12px 0;
  border-top: 1px solid var(--news-rule);
}

.news-record-links li:first-child {
  padding-top: 0;
  border-top: 0;
}

.news-record-links a {
  font-family: var(--news-font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.14;
}

.news-subscribe-card {
  padding: 12px 16px 18px;
  border-right: 1px solid var(--news-ink);
  border-bottom: 1px solid var(--news-ink);
  border-left: 1px solid var(--news-ink);
  background: var(--news-ink);
  color: var(--news-paper);
}

.news-subscribe-card .news-component-title,
.news-subscribe-card .news-component-link {
  color: var(--news-paper);
}

.news-subscribe-title {
  margin: 0;
  font-family: var(--news-font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 0.98;
}

.news-button--inverse {
  border-color: var(--news-paper);
  color: var(--news-paper);
}

.news-home .site-footer.news-footer {
  display: block;
  margin-top: 0;
  padding: 0;
  border-top: 2px solid var(--news-ink);
  background: var(--news-paper);
}

.news-footer-inner {
  display: grid;
  gap: 18px;
  padding: 26px 0 42px;
}

.news-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.news-footer-title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--news-font-display);
  font-size: clamp(1.6rem, 2vw, 2.6rem);
  font-weight: 700;
  line-height: 0.98;
}

.news-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-footer-note {
  margin: 0;
  max-width: 72ch;
  color: var(--news-muted);
  font-size: 0.94rem;
}

@media (max-width: 1180px) {
  .news-lead-rail {
    grid-column: span 3;
  }

  .news-hero {
    grid-column: span 9;
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "header"
      "support";
  }

  .news-brief-stack {
    grid-column: 1 / -1;
  }

  .news-brief-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
  }

  .news-main-column {
    grid-column: span 8;
  }

  .news-right-rail {
    grid-column: span 4;
  }

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

@media (max-width: 960px) {
  .news-container {
    width: min(calc(100% - 28px), var(--news-max-width));
  }

  .news-breaking-inner {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .news-market-strip {
    display: none;
  }

  .news-utility-inner,
  .news-edition-line,
  .news-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-masthead-main {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .news-badge-link,
  .news-masthead-tools {
    justify-self: center;
  }

  .news-lead-package,
  .news-content-grid {
    gap: 20px;
  }

  .news-lead-rail,
  .news-hero,
  .news-brief-stack,
  .news-main-column,
  .news-right-rail {
    grid-column: 1 / -1;
  }

  .news-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "header"
      "support";
  }

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

  .news-section-body--operator,
  .news-section-body--dealmakers,
  .news-dossier-grid,
  .news-culture-grid {
    grid-template-columns: 1fr;
  }

  .news-link-cluster {
    padding-left: 0;
    padding-top: 8px;
    border-left: 0;
    border-top: 1px solid var(--news-rule);
  }
}

@media (max-width: 720px) {
  .news-breaking-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: start;
    padding: 10px 0 12px;
  }

  .news-breaking-link {
    white-space: normal;
  }

  .news-masthead-center {
    text-align: left;
  }

  .news-masthead-main {
    justify-items: start;
  }

  .news-badge-link,
  .news-masthead-tools {
    justify-self: start;
  }

  .news-section-header,
  .news-component-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-brief-list,
  .news-right-rail {
    grid-template-columns: 1fr;
  }

  .news-compact-card {
    grid-template-columns: 1fr;
  }

  .news-compact-media {
    width: 100%;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .news-container {
    width: min(calc(100% - 24px), var(--news-max-width));
  }

  .news-utility-list {
    gap: 10px 14px;
    font-size: 0.72rem;
  }

  .news-section-nav-list {
    gap: 16px;
  }

  .news-masthead-title {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .news-hero-title {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .news-subscribe-title {
    font-size: 1.75rem;
  }
}
