:root {
  color-scheme: light;
  --navy: #0c1b2b;
  --navy-soft: #142638;
  --navy-line: #2a3c4d;
  --gold: #d0aa3e;
  --gold-dark: #a87f18;
  --cream: #f4f0e8;
  --paper: #fffdf8;
  --ink: #142033;
  --muted: #687586;
  --line: #ddd5c7;
  --green: #16845b;
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: relative;
  z-index: 10;
  min-height: 62px;
  color: #fff;
  background: #172735;
  border-bottom: 3px solid var(--gold);
}

.header-inner,
.story-container,
.footer-inner {
  width: min(100% - 40px, 1060px);
  margin-inline: auto;
}

.header-inner {
  min-height: 59px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-brand img,
.footer-brand img {
  display: block;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  color: var(--gold);
  font-size: 1.22rem;
  letter-spacing: .045em;
}

.brand-copy small {
  margin-top: 4px;
  color: #98a9ba;
  font-size: .68rem;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  color: #bdc9d5;
  font-size: .76rem;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.latest-button {
  padding: 7px 16px;
  color: #f0d583;
  border: 1px solid #786522;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.latest-button:hover {
  color: var(--navy);
  background: var(--gold);
}

.mobile-menu { display: none; }

.story-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 62%, rgba(208, 170, 62, .11), transparent 28%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--navy);
  background-size: auto, 56px 56px, 56px 56px, auto;
}

.story-hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  bottom: -455px;
  border: 1px solid rgba(208, 170, 62, .2);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(208, 170, 62, .035),
    0 0 0 120px rgba(208, 170, 62, .025);
}

.story-hero .story-container {
  position: relative;
  z-index: 1;
  padding-top: 38px;
  padding-bottom: 58px;
}

.story-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #91a5b9;
  font-size: .76rem;
}

.story-breadcrumb a {
  color: #b8c7d5;
  text-decoration: none;
}

.story-breadcrumb a:hover { color: var(--gold); }

.story-kicker,
.section-label,
.panel-eyebrow {
  color: var(--gold);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-kicker {
  display: flex;
  gap: 10px;
  margin: 34px 0 12px;
}

.story-hero h1 {
  max-width: 890px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  line-height: .99;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 25px;
  color: #b6c4d1;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story-meta > * + *::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 12px 2px 0;
  border-radius: 50%;
  background: var(--gold);
}

.story-main {
  padding: 46px 0 64px;
  background: var(--cream);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 295px;
  align-items: start;
  gap: 34px;
}

.story-article {
  min-width: 0;
  padding: 18px 0 0;
}

.story-image {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin: -66px 0 38px;
  border: 8px solid var(--paper);
  border-radius: 3px;
  background: #e7e1d6;
  box-shadow: 0 16px 38px rgba(10, 25, 40, .17);
}

.briefing-block {
  padding: 0 8px;
}

.section-label {
  margin: 0 0 12px;
}

.story-summary {
  margin: 0;
  color: #253247;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.72;
}

.story-summary::first-letter {
  float: left;
  margin: .11em .09em 0 0;
  color: var(--navy);
  font-size: 3.35em;
  font-weight: 700;
  line-height: .75;
}

.original-headline {
  margin: 34px 8px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.original-headline span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.original-headline p {
  margin: 7px 0 0;
  color: #425064;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.5;
}

.source-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
  padding: 25px 26px;
  color: #fff;
  background: var(--navy);
  border-left: 4px solid var(--gold);
}

.source-card .section-label { margin-bottom: 7px; }

.source-card p:not(.section-label) {
  max-width: 470px;
  margin: 0;
  color: #b9c6d2;
  font-size: .89rem;
  line-height: 1.55;
}

.source-link {
  position: relative;
  display: grid;
  min-width: 205px;
  padding: 14px 44px 14px 16px;
  color: var(--navy);
  background: var(--gold);
  text-decoration: none;
}

.source-link span {
  font-size: .79rem;
  font-weight: 800;
  text-transform: uppercase;
}

.source-link small {
  margin-top: 2px;
  font-size: .72rem;
  font-weight: 600;
}

.source-link b {
  position: absolute;
  right: 15px;
  top: 17px;
  font-size: 1rem;
}

.source-link:hover { background: #e2c15b; }

.source-name {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
}

.story-sidebar {
  display: grid;
  gap: 16px;
}

.digest-card,
.share-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(30, 40, 50, .055);
}

.digest-card { padding: 23px; }

.panel-eyebrow { margin: 0 0 8px; }

.digest-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.23rem;
  line-height: 1.3;
}

.digest-card dl {
  display: grid;
  gap: 0;
  margin: 20px 0;
  border-top: 1px solid var(--line);
}

.digest-card dl div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.digest-card dt {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.digest-card dd {
  margin: 0;
  font-size: .78rem;
  font-weight: 700;
}

.digest-link {
  display: flex;
  justify-content: space-between;
  color: var(--gold-dark);
  font-size: .79rem;
  font-weight: 800;
  text-decoration: none;
}

.digest-link:hover { text-decoration: underline; }

.share-panel {
  padding: 23px;
}

.share-panel > p:not(.panel-eyebrow):not(.copy-status) {
  margin: 0;
  color: var(--muted);
  font-size: .81rem;
  line-height: 1.5;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}

.share-button {
  min-height: 36px;
  padding: 8px 12px;
  color: #344257;
  background: transparent;
  border: 1px solid #cbc3b5;
  border-radius: 2px;
  font: inherit;
  font-size: .75rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.share-button:hover {
  color: var(--navy);
  border-color: var(--gold-dark);
  background: #f3ead2;
}

.share-native {
  color: var(--navy);
  border-color: var(--gold);
  background: var(--gold);
}

.copy-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--green);
  font-size: .74rem;
}

.story-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid #cfc6b7;
}

.pagination-link {
  display: flex;
  flex-direction: column;
  min-height: 105px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  text-decoration: none;
}

.pagination-link span {
  margin-bottom: 7px;
  color: var(--gold-dark);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pagination-link strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.35;
}

.pagination-next { text-align: right; }

.pagination-link:hover {
  border-color: var(--gold);
  box-shadow: inset 3px 0 0 var(--gold);
}

.site-footer {
  color: #94a5b5;
  background: #172735;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
}

.footer-inner p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .83rem;
}

.footer-inner nav {
  display: flex;
  gap: 18px;
}

.footer-inner nav a {
  color: #b6c3ce;
  font-size: .75rem;
  text-decoration: none;
}

.footer-inner nav a:hover { color: #fff; }

@media (max-width: 900px) {
  .desktop-nav,
  .latest-button { display: none; }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    padding: 7px 12px;
    color: #ead486;
    border: 1px solid #6e5d28;
    border-radius: 2px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    list-style: none;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker { display: none; }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: calc(100% + 9px);
    display: grid;
    min-width: 210px;
    padding: 8px;
    color: #fff;
    background: #172735;
    border: 1px solid #405060;
    box-shadow: 0 14px 32px rgba(0,0,0,.3);
  }

  .mobile-menu nav a {
    padding: 10px 11px;
    color: #d1dbe4;
    font-size: .82rem;
    text-decoration: none;
  }

  .mobile-menu nav a:hover { background: #223647; }

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

  .story-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .story-article { padding-top: 0; }

  .story-image { margin-top: -66px; }
}

@media (max-width: 620px) {
  .header-inner,
  .story-container,
  .footer-inner {
    width: min(100% - 24px, 1060px);
  }

  .site-header,
  .header-inner { min-height: 58px; }

  .site-brand img { width: 34px; height: 34px; }
  .brand-copy strong { font-size: .98rem; }
  .brand-copy small { font-size: .58rem; }

  .story-hero .story-container {
    padding-top: 27px;
    padding-bottom: 48px;
  }

  .story-kicker {
    margin-top: 27px;
    font-size: .62rem;
  }

  .story-hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.35rem);
    line-height: 1.02;
  }

  .story-meta {
    display: grid;
    gap: 5px;
    margin-top: 20px;
  }

  .story-meta > * + *::before { display: none; }

  .story-main { padding-top: 28px; }

  .story-image {
    margin-top: -49px;
    margin-bottom: 28px;
    border-width: 5px;
  }

  .briefing-block { padding: 0; }

  .story-summary {
    font-size: 1.18rem;
    line-height: 1.65;
  }

  .original-headline { margin-inline: 0; }

  .source-card {
    grid-template-columns: 1fr;
    padding: 22px 19px;
  }

  .source-link { min-width: 0; }

  .story-sidebar { grid-template-columns: 1fr; }

  .story-pagination {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .pagination-spacer { display: none; }
  .pagination-link { min-height: 0; }
  .pagination-next { text-align: left; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 22px 0;
  }

  .footer-inner nav { margin-top: 4px; }
}

