:root {
  --navy: #10253f;
  --navy-deep: #070d16;
  --black: #070707;
  --red: #c51f2f;
  --gold: #f0bd3b;
  --yellow: #ffd34f;
  --cream: #f4efe4;
  --paper: #fbf9f4;
  --ink: #18202a;
  --muted: #626a72;
  --line: #d7d0c3;
  --white: #fff;
  --shell: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-160%);
}

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

.top-rule {
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0 58%, var(--gold) 58% 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(240, 189, 59, 0.38);
  background: rgba(7, 7, 7, 0.97);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: var(--shell);
  min-height: 112px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  width: clamp(180px, 24vw, 250px);
  color: var(--cream);
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.wordmark-main {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.wordmark-sub {
  margin-top: 5px;
  color: var(--cream);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.wordmark-sub b {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
  padding-block: clamp(60px, 9vw, 118px);
}

.home-feature {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(197, 31, 47, 0.16), transparent 42%),
    var(--navy-deep);
}

.home-feature::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--red) 0 64%, var(--gold) 64% 100%);
}

.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0 0 22px;
  color: #d9dde2;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-meta span {
  color: var(--gold);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead-copy h1,
.article-hero h1,
.archive-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.85rem, 6.6vw, 6.1rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.home-feature .lead-copy h1 {
  color: var(--cream);
}

.headline-accent {
  color: var(--yellow);
}

.home-feature .headline-accent {
  display: block;
  margin-top: 0.08em;
}

.standfirst {
  max-width: 650px;
  margin: 28px 0 30px;
  color: #424b55;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.home-feature .standfirst {
  color: #ece8df;
}

.home-feature .text-link {
  color: var(--cream);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.text-link span {
  color: var(--red);
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.lead-image {
  position: relative;
  isolation: isolate;
  margin: 0;
}

.lead-image::before {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: -1;
  width: 58%;
  height: 58%;
  content: "";
  background: var(--gold);
}

.site-photo {
  display: block;
  width: 100%;
  height: auto;
  background: var(--navy);
  object-fit: contain;
}

.lead-image .site-photo {
  aspect-ratio: auto;
}

.lead-image-portrait .site-photo {
  aspect-ratio: auto;
  max-height: 760px;
  background: transparent;
  object-fit: contain;
}

.card-image .site-photo {
  aspect-ratio: auto;
}

.card-image-portrait .site-photo {
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.lead-image figcaption {
  max-width: 560px;
  margin-top: 13px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-style: italic;
}

.home-feature .lead-image figcaption {
  color: #c9d0d8;
}

.editorial-identity {
  scroll-margin-top: 120px;
  background: var(--paper);
}

.identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr) minmax(220px, 0.55fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  padding-block: clamp(72px, 10vw, 126px);
}

.identity-heading .eyebrow {
  color: var(--red);
}

.identity-heading .eyebrow span {
  color: var(--gold);
}

.identity-heading h2 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.55rem, 5.2vw, 5.1rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.identity-copy > p {
  margin: 0 0 28px;
  color: #414a53;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.72;
}

.identity-principles {
  border-top: 4px solid var(--navy);
}

.identity-principles p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.identity-principles span {
  color: var(--red);
  font-family: var(--serif);
}

.latest {
  padding-block: 48px 110px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--navy);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading > a {
  color: var(--navy);
  font-weight: 800;
  text-underline-offset: 4px;
}

.story-card {
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.story-card-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.card-image {
  display: block;
  overflow: hidden;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-meta span {
  color: var(--red);
}

.card-copy h3 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.card-copy h3 a {
  text-decoration: none;
}

.card-copy h3 a:hover,
.card-copy h3 a:focus-visible {
  color: var(--red);
}

.card-copy > p:not(.card-meta) {
  max-width: 650px;
  margin: 20px 0 24px;
  color: #4e5760;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.empty-note {
  margin-top: 32px;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  background: var(--cream);
}

.empty-note p {
  margin: 0;
}

.editorial-note {
  color: var(--white);
  background: var(--navy);
}

.note-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.25fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  padding-block: clamp(68px, 9vw, 112px);
}

.eyebrow.light {
  color: var(--gold);
}

.note-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.note-grid h2 + p {
  margin: 27px 0 0;
  color: #dfe6ed;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.principles {
  align-self: end;
}

.principles p {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-weight: 700;
}

.principles span {
  color: var(--gold);
  font-family: var(--serif);
}

.site-footer {
  color: #cbd3dc;
  border-top: 7px solid var(--red);
  background: var(--black);
}

.footer-inner {
  min-height: 172px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(250px, 1fr) auto;
  align-items: center;
  gap: 30px;
  font-size: 0.85rem;
}

.footer-inner p {
  margin: 0;
}

.footer-identity {
  width: min(235px, 100%);
}

.footer-logo {
  width: 100%;
  height: auto;
}

.footer-identity p {
  margin-top: 7px;
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-identity p span {
  color: var(--gold);
}

.footer-note {
  max-width: 330px;
  color: #d8dde3;
  font-family: var(--serif);
  font-size: 1rem;
}

.footer-connect {
  display: grid;
  gap: 14px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-social a {
  color: var(--cream);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--gold);
}

/* Article archive */
.archive-banner {
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(197, 31, 47, 0.17), transparent 46%),
    var(--navy-deep);
  border-bottom: 7px solid var(--gold);
}

.archive-hero {
  padding-block: clamp(70px, 9vw, 118px) 58px;
}

.archive-hero h1 {
  max-width: 900px;
  color: var(--cream);
}

.archive-hero .headline-accent {
  display: block;
  margin-top: 0.08em;
  color: var(--yellow);
}

.archive-hero .standfirst {
  max-width: 760px;
  color: #e7e5df;
}

.archive-list {
  padding-block: 50px 110px;
}

.archive-row {
  display: grid;
  grid-template-columns: 150px 128px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.archive-thumb {
  display: block;
  width: 150px;
}

.archive-thumb .site-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.archive-row:last-child {
  border-bottom: 1px solid var(--line);
}

.archive-date {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.archive-row h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.archive-row h2 a {
  text-decoration: none;
}

.archive-row h2 a:hover,
.archive-row h2 a:focus-visible {
  color: var(--red);
}

.archive-row p {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
  font-family: var(--serif);
}

.category-pill {
  padding: 5px 9px;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Long-form article */
.article-banner {
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(197, 31, 47, 0.17), transparent 46%),
    var(--navy-deep);
  border-bottom: 7px solid var(--gold);
}

.article-hero {
  max-width: 1080px;
  padding-block: clamp(68px, 8vw, 110px) 50px;
}

.article-hero h1 {
  font-size: clamp(3rem, 7.5vw, 6.7rem);
  color: var(--cream);
}

.article-hero .headline-accent {
  display: block;
  margin-top: 0.08em;
  color: var(--yellow);
}

.article-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0 0 22px;
  color: #d5dbe1;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-kicker span:first-child {
  color: var(--gold);
}

.article-standfirst {
  max-width: 840px;
  margin: 30px 0 0;
  color: #e9e6df;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.72rem);
  line-height: 1.48;
}

.article-byline {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
}

.article-figure {
  width: var(--shell);
  margin: clamp(42px, 6vw, 72px) auto 42px;
}

.article-figure .site-photo {
  aspect-ratio: auto;
  object-fit: contain;
}

.article-figure-portrait {
  width: min(820px, calc(100% - 40px));
}

.article-figure-portrait .site-photo {
  aspect-ratio: auto;
}

.article-figure figcaption {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.82rem;
}

.evidence-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 78px);
  margin-bottom: clamp(60px, 8vw, 94px);
  padding: clamp(34px, 5vw, 58px);
  color: var(--cream);
  background: var(--navy);
  border-top: 7px solid var(--red);
}

.evidence-intro .eyebrow {
  color: var(--gold);
}

.evidence-intro h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.evidence-intro > p:last-child {
  margin: 24px 0 0;
  color: #dce2e8;
  font-size: 0.94rem;
  line-height: 1.65;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  margin: 0;
}

.evidence-grid > div {
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.evidence-grid dt {
  color: var(--yellow);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.evidence-grid dd {
  margin: 9px 0 0;
  color: #e1e6eb;
  font-size: 0.9rem;
  line-height: 1.55;
}

.article-layout {
  width: min(1060px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 720px);
  gap: clamp(30px, 7vw, 85px);
  justify-content: center;
  padding-bottom: 110px;
}

.article-layout-single {
  grid-template-columns: minmax(0, 760px);
}

.article-aside {
  position: sticky;
  top: 130px;
  align-self: start;
  padding-top: 9px;
  border-top: 3px solid var(--gold);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-aside p {
  margin: 0 0 7px;
}

.article-body {
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.82;
}

.article-body > p:first-child::first-letter {
  float: left;
  margin: 9px 10px 0 0;
  color: var(--red);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 0.72;
}

.article-body h2 {
  margin: 2.5em 0 0.65em;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

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

.article-body li + li {
  margin-top: 0.55em;
}

.newspaper-schedule {
  margin: 1.8em 0 2.2em;
  padding: 8px 28px;
  border-top: 5px solid var(--gold);
  background: var(--navy);
}

.newspaper-schedule p {
  margin: 0;
  padding: 15px 0;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.newspaper-schedule p:last-child {
  border-bottom: 0;
}

.series-note {
  margin-top: 3.5em;
  padding-top: 0.2em;
  border-top: 7px solid var(--red);
}

.article-body table {
  display: block;
  width: 100%;
  margin: 2.2em 0;
  overflow-x: auto;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.45;
}

.article-body th,
.article-body td {
  min-width: 170px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  text-align: left !important;
  vertical-align: top;
}

.article-body th {
  color: var(--white);
  background: var(--navy);
}

.article-body tbody tr:nth-child(even) {
  background: var(--cream);
}

.article-body hr {
  margin: 3em 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.article-body .footnotes {
  margin-top: 1.25em;
  padding-top: 0;
  border-top: 0;
  color: #444d56;
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.62;
}

.article-body .footnotes > hr {
  display: none;
}

.article-body .footnotes ol {
  padding-left: 1.4em;
}

.article-body .footnotes li + li {
  margin-top: 0.9em;
}

.article-body .footnote-ref,
.article-body .footnote-back {
  color: var(--red);
  font-family: var(--sans);
  font-weight: 800;
  text-decoration: none;
}

.article-body blockquote {
  margin: 2.2em 0;
  padding: 0 0 0 24px;
  border-left: 5px solid var(--gold);
  color: var(--navy);
  font-size: 1.45em;
  font-style: italic;
  line-height: 1.45;
}

.article-body .source-note {
  margin-top: 3.2em;
  padding: 26px 28px;
  border-top: 4px solid var(--navy);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.65;
}

.article-body .source-note h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.65rem;
}

.article-body .source-note p {
  margin: 0;
}

.reader-question {
  margin-top: 3.5em;
  padding: clamp(28px, 5vw, 46px);
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(197, 31, 47, 0.24), transparent 62%),
    var(--navy-deep);
  border-bottom: 7px solid var(--gold);
}

.reader-question .eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--sans);
}

.reader-question h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.back-link {
  display: inline-flex;
  margin-top: 40px;
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 800;
  text-underline-offset: 5px;
}

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
}

.not-found p {
  max-width: 520px;
  margin: 20px auto 28px;
}

.not-found-logo {
  display: block;
  width: min(320px, 80vw);
  margin: 0 auto 44px;
  padding: 16px;
  background: var(--black);
}

.not-found-logo img {
  width: 100%;
  height: auto;
}

@media (max-width: 850px) {
  .header-inner {
    min-height: 104px;
  }

  .wordmark {
    width: 180px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 8px 0;
    border: 0;
    color: var(--cream);
    background: transparent;
    font: 800 0.82rem/1 var(--sans);
    text-transform: uppercase;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before,
  .menu-lines::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-lines::before { top: -7px; }
  .menu-lines::after { top: 7px; }

  .site-nav {
    position: absolute;
    top: 104px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    border-bottom: 1px solid rgba(240, 189, 59, 0.38);
    background: var(--navy-deep);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .site-nav a::after {
    display: none;
  }

  .lead-story,
  .story-card-featured,
  .note-grid,
  .identity-grid,
  .evidence-panel {
    grid-template-columns: 1fr;
  }

  .lead-copy {
    max-width: 720px;
  }

  .lead-image {
    width: calc(100% - 12px);
  }

  .note-grid {
    gap: 28px;
  }

  .principles {
    max-width: 620px;
  }

  .archive-row {
    grid-template-columns: 112px 1fr auto;
    gap: 12px 20px;
  }

  .archive-thumb {
    width: 112px;
    grid-row: 1 / 3;
  }

  .archive-date {
    grid-column: 2;
  }

  .archive-row > div {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .archive-row .category-pill {
    grid-column: 3;
    grid-row: 1;
  }

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

  .article-aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
  }

  .article-aside p {
    margin: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 92px;
  }

  .wordmark {
    width: 148px;
  }

  .wordmark-sub {
    font-size: 0.48rem;
    letter-spacing: 0.1em;
  }

  .site-nav {
    top: 92px;
  }

  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .lead-story {
    padding-block: 46px 65px;
    gap: 42px;
  }

  .lead-copy h1 {
    font-size: clamp(2.65rem, 13.6vw, 4.25rem);
  }

  .lead-image::before {
    top: -10px;
    right: -10px;
  }

  .latest {
    padding-bottom: 72px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-block: 30px;
  }

  .footer-identity {
    width: 200px;
  }

  .archive-hero,
  .article-hero {
    padding-top: 55px;
  }

  .archive-row {
    grid-template-columns: 94px 1fr;
    align-items: start;
  }

  .archive-thumb {
    width: 94px;
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .archive-date,
  .archive-row > div,
  .archive-row .category-pill {
    grid-column: 2;
  }

  .archive-date {
    grid-row: 1;
  }

  .archive-row > div {
    grid-row: 2;
  }

  .archive-row .category-pill {
    grid-row: 3;
    justify-self: start;
  }

  .evidence-panel {
    width: min(100% - 28px, 1180px);
  }

  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .article-layout {
    width: min(100% - 28px, 1060px);
    padding-bottom: 75px;
  }

  .article-figure {
    width: min(100% - 28px, 1180px);
  }

  .article-figure-portrait {
    width: min(100% - 28px, 820px);
  }

  .article-body blockquote {
    margin-inline: 0;
    font-size: 1.25em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* Liverpool and the World */
.world-map-banner {
  color: var(--cream);
  border-bottom: 7px solid var(--gold);
  background:
    linear-gradient(112deg, rgb(197 31 47 / 20%), transparent 44%),
    var(--navy-deep);
}

.world-map-hero {
  padding-block: clamp(44px, 6vw, 76px) clamp(38px, 5vw, 64px);
}

.world-map-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.4rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.world-map-hero .headline-accent {
  display: block;
  margin-top: 0.08em;
}

.world-map-hero .standfirst {
  max-width: 880px;
  margin-bottom: 18px;
  color: #ebe8e1;
}

.map-evidence-note {
  max-width: 820px;
  margin: 0;
  color: #c7ced5;
  font-size: 0.92rem;
}

.world-map-tools {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(320px, 1.65fr) auto;
  gap: 18px;
  align-items: end;
  padding-block: 34px 24px;
}

.world-map-search {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-map-search input {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-bottom: 4px solid var(--gold);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font: 700 1rem/1.2 var(--sans);
}

.world-map-search input:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.world-map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.world-map-filters button,
.world-map-reset {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--navy);
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font: 800 0.76rem/1.15 var(--sans);
}

.world-map-filters button[aria-pressed="true"] {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.world-map-filters button:hover,
.world-map-filters button:focus-visible,
.world-map-reset:hover,
.world-map-reset:focus-visible {
  color: var(--navy-deep);
  background: var(--gold);
  border-color: var(--gold);
  outline: 0;
}

.world-map-reset {
  border-color: var(--red);
  color: var(--red);
}

.world-map-workspace {
  padding-bottom: clamp(68px, 8vw, 104px);
}

.world-map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.world-map-heading h2,
.world-map-list-section .section-heading h2,
.map-method h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4.2vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.world-map-heading > p {
  margin: 0;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-map-frame {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(280px, 0.9fr);
  min-height: 610px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 50px rgb(7 13 22 / 13%);
}

.world-map-canvas-wrap {
  position: relative;
  min-height: 610px;
  background: #dbe3e7;
}

.world-map-canvas {
  width: 100%;
  height: 100%;
  min-height: 610px;
  z-index: 1;
}

.world-map-status {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(360px, calc(100% - 40px));
  margin: 0;
  padding: 16px 18px;
  color: var(--cream);
  background: var(--navy-deep);
  border-bottom: 4px solid var(--gold);
  font-weight: 750;
  text-align: center;
  transform: translate(-50%, -50%);
}

.world-map-detail {
  min-width: 0;
  padding: clamp(26px, 4vw, 44px);
  color: var(--cream);
  border-top: 7px solid var(--red);
  background:
    linear-gradient(145deg, rgb(197 31 47 / 20%), transparent 55%),
    var(--navy-deep);
}

.world-map-detail .eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
}

.world-map-detail h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.6vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.world-map-detail h3 {
  margin: 28px 0 10px;
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.18;
}

.world-map-detail > p {
  color: #dde3e8;
}

.world-map-detail .map-detail-place {
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-map-detail > small {
  display: block;
  margin-top: 25px;
  padding-top: 18px;
  color: #bdc7d0;
  border-top: 1px solid rgb(255 255 255 / 22%);
  font-size: 0.78rem;
  line-height: 1.5;
}

.map-detail-links {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.map-detail-links a {
  display: grid;
  gap: 3px;
  padding: 13px 0;
  color: var(--cream);
  border-block: 1px solid rgb(255 255 255 / 22%);
  text-decoration: none;
}

.map-detail-links a + a {
  border-top: 0;
}

.map-detail-links a:hover,
.map-detail-links a:focus-visible {
  color: var(--gold);
}

.map-detail-links span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-detail-links strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.map-number-marker-shell,
.map-home-marker-shell {
  border: 0;
  background: transparent;
}

.map-number-marker-shell span,
.map-home-marker-shell span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--marker-colour, var(--red));
  box-shadow: 0 3px 12px rgb(7 13 22 / 42%);
  font: 900 0.78rem/1 var(--sans);
}

.map-home-marker-shell span {
  width: 42px;
  height: 42px;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
  background: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.map-popup {
  display: grid;
  gap: 4px;
  min-width: 190px;
  font-family: var(--sans);
}

.map-popup small {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-popup strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.1;
}

.map-popup span {
  color: #4b5560;
  font-size: 0.8rem;
  line-height: 1.35;
}

.leaflet-control-zoom a:focus-visible,
.leaflet-marker-icon:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.world-map-list-section {
  padding-bottom: clamp(72px, 9vw, 118px);
}

.world-map-list-section .section-heading {
  align-items: end;
}

.world-map-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.map-location-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--navy);
  background: var(--white);
}

.map-location-card.active {
  border-top-color: var(--red);
  box-shadow: 0 11px 28px rgb(7 13 22 / 12%);
}

.map-location-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.map-location-heading:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}

.map-location-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-bottom: 5px solid var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.map-location-heading > span:last-child {
  display: grid;
}

.map-location-heading small {
  color: var(--red);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.map-location-heading strong {
  margin-top: 3px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.map-location-heading em {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 750;
}

.map-location-card > p {
  margin: 20px 0;
  color: #4c5660;
}

.map-location-articles {
  display: grid;
  gap: 7px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.map-location-articles a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  color: var(--navy);
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.map-location-articles span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-location-articles strong {
  font-size: 0.86rem;
  line-height: 1.35;
}

.map-method-section {
  color: var(--cream);
  background: var(--navy);
  border-top: 7px solid var(--red);
}

.map-method {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(300px, 1.2fr) auto;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding-block: clamp(52px, 7vw, 82px);
}

.map-method .eyebrow {
  color: var(--gold);
}

.map-method h2 {
  color: var(--cream);
}

.map-method > p {
  margin: 0;
  color: #dce3e9;
}

.home-world-map {
  color: var(--cream);
  background:
    radial-gradient(circle at 76% 42%, rgb(240 189 59 / 13%) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 55%, rgb(197 31 47 / 25%) 0 3px, transparent 4px),
    linear-gradient(115deg, rgb(197 31 47 / 17%), transparent 48%),
    var(--navy-deep);
  background-size: 84px 84px, 118px 118px, auto, auto;
  border-block: 7px solid var(--gold);
}

.home-world-map-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 0.9fr) auto;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding-block: clamp(58px, 8vw, 92px);
}

.home-world-map .eyebrow {
  color: var(--gold);
}

.home-world-map h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.home-world-map p {
  margin: 0;
  color: #dce3e9;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.home-world-map-links {
  display: grid;
  gap: 9px;
  justify-items: start;
}

@media (max-width: 980px) {
  .world-map-tools {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .world-map-reset {
    justify-self: start;
  }

  .world-map-frame {
    grid-template-columns: 1fr;
  }

  .world-map-canvas-wrap,
  .world-map-canvas {
    min-height: 520px;
  }

  .map-method,
  .home-world-map-inner {
    grid-template-columns: 1fr;
  }

  .map-method .primary-link,
  .home-world-map .primary-link {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .world-map-heading,
  .world-map-list-section .section-heading {
    display: grid;
    align-items: start;
  }

  .world-map-list {
    grid-template-columns: 1fr;
  }

  .world-map-canvas-wrap,
  .world-map-canvas {
    min-height: 455px;
  }

  .world-map-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-map-filters button {
    width: 100%;
  }

  .map-location-articles a {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* September 2026 editorial and performance refresh */
picture {
  display: block;
}

.primary-link,
.secondary-link,
.action-links a,
.action-links button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 2px solid var(--gold);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.primary-link,
.action-links a {
  color: var(--navy-deep);
  background: var(--gold);
}

.secondary-link,
.action-links button {
  color: var(--cream);
  background: transparent;
}

.primary-link:hover,
.primary-link:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible,
.action-links a:hover,
.action-links a:focus-visible,
.action-links button:hover,
.action-links button:focus-visible {
  border-color: var(--white);
  color: var(--navy-deep);
  background: var(--white);
}

.lead-story {
  align-items: start;
  padding-block: clamp(42px, 5.5vw, 76px);
}

.home-feature .lead-copy h1 {
  font-size: clamp(2.75rem, 5.7vw, 5.25rem);
}

.home-feature .lead-copy h1 a {
  color: inherit;
  text-decoration: none;
}

.home-feature .lead-copy h1 a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
}

.lead-image-link {
  color: inherit;
  text-decoration: none;
}

.lead-image-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 8px;
}

.lead-image-portrait .site-photo {
  max-height: 640px;
}

.latest-section {
  padding-block: clamp(70px, 8vw, 104px);
}

.resurface-section {
  color: var(--ink);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(240, 189, 59, 0.1), transparent 46%),
    var(--cream);
}

.resurface-inner {
  padding-block: clamp(60px, 7vw, 92px);
}

.resurface-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
}

.resurface-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.8vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.resurface-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.resurface-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(34px, 5vw, 54px);
}

.resurface-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom: 6px solid var(--gold);
  background: var(--white);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.resurface-card:hover,
.resurface-card:focus-visible {
  border-color: var(--gold);
  border-bottom-color: var(--red);
  box-shadow: 0 14px 30px rgba(7, 13, 22, 0.12);
  transform: translateY(-4px);
}

.resurface-card:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.resurface-story {
  min-height: 500px;
  grid-row: 1 / 3;
  grid-template-columns: minmax(210px, 0.78fr) minmax(0, 1.22fr);
}

.resurface-place,
.resurface-subject {
  min-height: 238px;
  grid-template-columns: 145px minmax(0, 1fr);
}

.resurface-media {
  display: grid;
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  place-items: center;
  border-right: 1px solid rgba(244, 239, 228, 0.16);
  background: var(--navy-deep);
}

.resurface-media picture {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.resurface-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.resurface-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 36px);
}

.resurface-overline {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.resurface-copy strong {
  margin-top: 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.resurface-story .resurface-copy strong {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.resurface-copy small {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.resurface-meta {
  margin-top: auto;
  padding-top: 22px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.resurface-index-link {
  display: inline-block;
  margin-top: 28px;
}

.home-discovery {
  color: var(--cream);
  border-top: 7px solid var(--gold);
  background:
    linear-gradient(118deg, rgba(197, 31, 47, 0.2), transparent 48%),
    var(--navy-deep);
}

.home-discovery-inner {
  padding-block: clamp(58px, 7vw, 88px);
}

.home-discovery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
}

.home-discovery-heading .eyebrow {
  color: var(--gold);
}

.home-discovery-heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5.4vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.home-discovery-heading > p {
  max-width: 540px;
  margin: 0;
  color: #dce3e9;
  font-size: 1.04rem;
  line-height: 1.7;
}

.home-gateway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(36px, 5vw, 58px);
}

.home-gateway-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 254px;
  overflow: hidden;
  grid-template-columns: 190px minmax(0, 1fr);
  color: var(--cream);
  border: 1px solid rgba(244, 239, 228, 0.18);
  border-bottom: 7px solid var(--gold);
  background: #101c2b;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.home-gateway-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  grid-template-columns: 230px minmax(0, 1fr);
}

.home-gateway-card:hover,
.home-gateway-card:focus-visible {
  color: var(--white);
  border-color: var(--gold);
  border-bottom-color: var(--red);
  background: #162b43;
  transform: translateY(-5px);
}

.home-gateway-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

.home-gateway-media {
  display: grid;
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  place-items: center;
  border-right: 1px solid rgba(244, 239, 228, 0.16);
  background: var(--navy-deep);
}

.home-gateway-media picture {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.home-gateway-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-gateway-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 34px);
}

.home-gateway-copy strong {
  max-width: 390px;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.home-gateway-copy small {
  max-width: 410px;
  margin-top: 12px;
  color: #cfd7df;
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-gateway-overline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-gateway-overline > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--cream);
  border: 1px solid var(--red);
  border-radius: 50%;
  font-family: var(--serif);
  letter-spacing: 0;
}

.home-gateway-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 800;
}

.home-gateway-action span {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 160ms ease;
}

.home-gateway-card:hover .home-gateway-action span,
.home-gateway-card:focus-visible .home-gateway-action span {
  transform: translateX(4px);
}

.home-discovery-index-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--cream);
}

.home-discovery-index-link:hover,
.home-discovery-index-link:focus-visible {
  color: var(--gold);
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  margin-top: 32px;
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
}

.article-card .card-image {
  height: 360px;
  padding: 18px;
  background: var(--navy-deep);
}

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

.article-card .card-image img {
  object-fit: contain;
}

.article-card .card-copy {
  padding: 25px 25px 28px;
}

.card-label,
.archive-series {
  margin: 0 0 10px !important;
  color: var(--red) !important;
  font-family: var(--sans) !important;
  font-size: 0.72rem !important;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.article-card .card-copy h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.7vw, 2.2rem);
  line-height: 1.08;
}

.article-card .card-copy > p:not(.card-label) {
  margin: 15px 0 0;
  font-size: 1rem;
  line-height: 1.6;
}

.series-feature {
  color: var(--cream);
  border-top: 7px solid var(--red);
  background: var(--navy);
}

.series-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  padding-block: clamp(56px, 7vw, 88px);
}

.series-feature .eyebrow,
.community-section .eyebrow {
  color: var(--gold);
}

.series-feature h2,
.community-section h2,
.archive-series-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.series-grid > p {
  margin: 0;
  color: #dce3e9;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.series-links {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.series-links a {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--cream);
  font-weight: 750;
  text-decoration: none;
}

.series-links a:hover,
.series-links a:focus-visible {
  color: var(--gold);
}

.series-links span {
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 800;
}

.community-section {
  color: var(--cream);
  background: var(--navy-deep);
}

.community-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.8fr) auto;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding-block: clamp(58px, 7vw, 86px);
}

.community-inner > p {
  margin: 0;
  color: #dce3e9;
}

.community-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-list {
  padding-bottom: 60px;
}

.archive-thumb picture {
  width: 100%;
}

.archive-series-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) auto;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  margin-bottom: 96px;
  padding: clamp(28px, 4vw, 46px);
  border-top: 7px solid var(--red);
  background: var(--cream);
}

.archive-series-panel > p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.article-hero {
  padding-block: clamp(50px, 6vw, 82px) 42px;
}

.article-figure picture {
  width: 100%;
}

.source-summary {
  margin-top: 3.5em;
  padding: clamp(25px, 4vw, 38px);
  border-top: 7px solid var(--gold);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.94rem;
  line-height: 1.65;
}

.source-summary .eyebrow {
  margin-bottom: 8px;
}

.source-summary h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.source-summary a,
.article-body .footnotes a {
  color: #9f1423;
  text-underline-offset: 3px;
}

.source-caveat {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #4f5861;
}

.source-code {
  padding: 2px 5px;
  background: var(--white);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.9em;
}

.series-navigation {
  display: grid;
  gap: 8px;
  margin-top: 2.5em;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  font-family: var(--sans);
}

.series-navigation > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.series-navigation a {
  color: var(--navy);
  font-weight: 850;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.article-actions {
  margin-top: 3.5em;
  padding: clamp(28px, 5vw, 44px);
  color: var(--cream);
  border-top: 7px solid var(--red);
  background: var(--navy-deep);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
}

.article-actions .eyebrow {
  margin-bottom: 8px;
  color: var(--gold);
}

.article-actions h2,
.related-section h2 {
  margin: 0 0 14px;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.article-actions > p:not(.eyebrow, .share-status) {
  max-width: 600px;
}

.action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.action-links button {
  cursor: pointer;
}

.share-status {
  min-height: 1.5em;
  margin: 10px 0 0;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 750;
}

.related-section {
  margin-top: 3.25em;
  font-family: var(--sans);
}

.related-section h2 {
  color: var(--navy);
}

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

.related-grid a {
  display: grid;
  gap: 8px;
  min-height: 145px;
  align-content: end;
  padding: 22px;
  color: var(--cream);
  border-bottom: 6px solid var(--gold);
  background: var(--navy);
  text-decoration: none;
}

.related-grid a:hover,
.related-grid a:focus-visible {
  background: var(--red);
}

.related-grid span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-grid strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .article-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-discovery-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .resurface-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .resurface-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .resurface-story,
  .resurface-place,
  .resurface-subject {
    min-height: 230px;
    grid-row: auto;
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .home-gateway-grid {
    grid-template-columns: 1fr;
  }

  .home-gateway-card,
  .home-gateway-card:last-child:nth-child(odd) {
    min-height: 230px;
    grid-column: auto;
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .series-grid,
  .community-inner,
  .archive-series-panel {
    grid-template-columns: 1fr;
  }

  .community-links {
    justify-content: start;
  }
}

@media (max-width: 620px) {
  .article-card-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-card .card-image {
    height: 330px;
  }

  .latest-section {
    padding-block: 58px;
  }

  .home-discovery-heading h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .resurface-heading h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .resurface-story,
  .resurface-place,
  .resurface-subject {
    min-height: 176px;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .resurface-media {
    padding: 8px;
  }

  .resurface-copy {
    padding: 17px;
  }

  .resurface-copy strong,
  .resurface-story .resurface-copy strong {
    margin-top: 8px;
    font-size: clamp(1.25rem, 5.8vw, 1.6rem);
  }

  .resurface-copy small {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .resurface-meta {
    margin-top: auto;
    padding-top: 12px;
    font-size: 0.64rem;
  }

  .home-gateway-card,
  .home-gateway-card:last-child:nth-child(odd) {
    min-height: 176px;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .home-gateway-media {
    padding: 8px;
  }

  .home-gateway-copy {
    padding: 17px;
  }

  .home-gateway-copy strong {
    margin-top: 10px;
    font-size: clamp(1.28rem, 6vw, 1.65rem);
  }

  .home-gateway-copy small {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .home-gateway-overline {
    gap: 7px;
    font-size: 0.64rem;
  }

  .home-gateway-overline > span {
    width: 25px;
    height: 25px;
  }

  .home-gateway-action {
    display: none;
  }

  .action-links,
  .community-links {
    display: grid;
  }

  .action-links > *,
  .community-links > * {
    width: 100%;
  }
}

/* Merch holding page */
.merch-banner {
  color: var(--cream);
  border-bottom: 7px solid var(--gold);
  background:
    linear-gradient(115deg, rgba(197, 31, 47, 0.22), transparent 46%),
    var(--navy-deep);
}

.merch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
  padding-block: clamp(52px, 7vw, 88px);
}

.merch-intro h1 {
  max-width: 700px;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.merch-intro .headline-accent {
  display: block;
  margin-top: 0.08em;
}

.merch-intro .standfirst {
  color: #ece8df;
}

.merch-status {
  display: flex;
  width: fit-content;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0;
  padding: 11px 15px;
  border-left: 5px solid var(--red);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.merch-status strong {
  color: var(--gold);
  text-transform: uppercase;
}

.merch-brand-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(240, 189, 59, 0.45);
  background: var(--black);
}

.merch-brand-panel img {
  width: 100%;
  height: auto;
}

.merch-brand-panel p {
  margin: 16px 0 0;
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.merch-brand-panel p span {
  color: var(--gold);
}

.merch-examples {
  padding-block: clamp(64px, 8vw, 104px);
}

.merch-examples .section-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 42px);
  margin-top: 34px;
}

.merch-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 410px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--red);
  background: var(--white);
}

.merch-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  color: var(--cream);
  background: var(--navy-deep);
}

.merch-card header span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 800;
}

.merch-card header p,
.merch-type {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.merch-card > div {
  align-self: end;
  padding: clamp(30px, 5vw, 54px) 28px 28px;
}

.merch-type {
  color: var(--red);
}

.merch-card h2 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.merch-card > div > p:last-child {
  max-width: 520px;
  margin: 0;
  color: #4f5861;
}

.merch-card-status {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 16px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.merch-card-status strong {
  color: var(--navy);
}

@media (max-width: 850px) {
  .merch-hero,
  .merch-grid {
    grid-template-columns: 1fr;
  }

  .merch-brand-panel {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .merch-hero {
    padding-block: 46px 58px;
  }

  .merch-intro h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .merch-examples .section-heading > p {
    text-align: left;
  }

  .merch-card {
    min-height: 360px;
  }
}

/* September 2026 site refinement */
.header-inner {
  min-height: 94px;
}

.wordmark {
  width: clamp(205px, 22vw, 240px);
}

.wordmark-sub {
  white-space: nowrap;
}

.lead-story {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(36px, 4.5vw, 58px);
}

.home-feature .lead-copy h1 {
  font-size: clamp(2.65rem, 4.8vw, 4.6rem);
}

.lead-image {
  width: 100%;
}

.lead-image .site-photo,
.article-figure .site-photo {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.lead-image-portrait .site-photo {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 560px;
  margin-inline: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.lead-image-preview picture {
  display: grid;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: clamp(12px, 2vw, 22px);
  overflow: hidden;
  place-items: center;
  background: var(--navy-deep);
}

.lead-image-preview picture .site-photo {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
}

.article-card .card-image {
  height: auto;
  aspect-ratio: 3 / 4;
  padding: 0;
  background: var(--navy-deep);
}

.article-card .card-image picture,
.article-card .card-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.article-card .card-image img {
  object-fit: contain;
}

.article-card .card-image-contain {
  padding: 14px;
  background: var(--navy-deep);
}

.article-card .card-image-contain img {
  object-fit: contain;
}

.card-label,
.archive-series {
  font-size: 0.78rem !important;
  letter-spacing: 0.075em;
}

.identity-links {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.archive-row {
  grid-template-columns: 190px 112px minmax(0, 1fr) auto;
  gap: 30px;
}

.archive-thumb {
  width: 190px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--navy-deep);
}

.archive-thumb picture {
  width: 100%;
  height: 100%;
}

.archive-thumb .site-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.archive-thumb-contain .site-photo {
  object-fit: contain;
}

.article-figure {
  width: min(100% - 40px, 1080px);
}

.article-figure-portrait {
  width: min(100% - 40px, 820px);
}

.article-figure-portrait .site-photo {
  aspect-ratio: auto;
  object-fit: contain;
}

.article-supporting-images {
  display: grid;
  gap: 18px;
  margin-block: 2.4em;
  font-family: var(--sans);
}

.article-supporting-images-wide {
  width: min(1080px, calc(100vw - 40px));
  margin-left: 50%;
  transform: translateX(-50%);
}

.article-supporting-images-pair {
  width: min(920px, calc(100vw - 40px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: 50%;
  transform: translateX(-50%);
}

.article-supporting-figure {
  min-width: 0;
  margin: 0;
}

.article-supporting-figure picture,
.article-supporting-figure img {
  display: block;
  width: 100%;
}

.article-supporting-figure img {
  height: auto;
  object-fit: contain;
}

.article-supporting-figure figcaption {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.article-supporting-figure figcaption span {
  color: var(--ink);
}

.article-supporting-figure figcaption small {
  font-size: 0.72rem;
}

.article-body h3 {
  margin: 2em 0 0.55em;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.article-byline a {
  color: var(--cream);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.article-byline a:hover,
.article-byline a:focus-visible {
  color: var(--gold);
}

.footer-inner {
  min-height: 0;
  grid-template-columns: minmax(190px, 0.62fr) minmax(0, 1.7fr) auto;
  align-items: start;
  gap: clamp(30px, 5vw, 70px);
  padding-block: 46px;
}

.footer-connect {
  gap: 20px;
}

.footer-link-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: clamp(20px, 4vw, 44px);
}

.footer-link-group {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-link-group > span {
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-link-group a {
  width: fit-content;
  color: var(--cream);
  font-weight: 750;
  line-height: 1.45;
  text-decoration-color: rgba(240, 189, 59, 0.7);
  text-underline-offset: 4px;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible {
  color: var(--gold);
}

.footer-copyright {
  color: #aeb7c0;
  white-space: nowrap;
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 26px;
}

/* About and editorial standards */
.about-banner {
  color: var(--cream);
  border-bottom: 7px solid var(--gold);
  background:
    linear-gradient(115deg, rgba(197, 31, 47, 0.2), transparent 48%),
    var(--navy-deep);
}

.about-hero {
  padding-block: clamp(46px, 6vw, 76px);
}

.about-hero .eyebrow {
  color: var(--gold);
}

.about-hero h1 {
  max-width: 970px;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.about-hero .headline-accent {
  display: block;
  margin-top: 0.08em;
}

.about-hero .standfirst {
  max-width: 780px;
  color: #e7e5df;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 8vw, 110px);
  padding-block: clamp(66px, 8vw, 106px);
}

.about-intro h2,
.about-detail h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.about-prose {
  color: #414a53;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.72;
}

.about-prose p:first-child {
  margin-top: 0;
}

.standards-section {
  padding-block: clamp(64px, 8vw, 104px);
  border-block: 1px solid var(--line);
  background: var(--cream);
}

.standards-section .section-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.standards-grid article {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
}

.standards-grid article > span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
}

.standards-grid h3 {
  margin: 22px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.standards-grid p {
  margin: 0;
  color: #4f5861;
  font-size: 0.94rem;
  line-height: 1.65;
}

.about-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 42px);
  padding-block: clamp(64px, 8vw, 104px);
}

.about-detail article {
  padding: clamp(30px, 5vw, 50px);
  border-top: 7px solid var(--red);
  background: var(--cream);
}

.about-detail article:last-child {
  color: var(--cream);
  border-top-color: var(--gold);
  background: var(--navy-deep);
}

.about-detail article:last-child h2 {
  color: var(--cream);
}

.about-detail article:last-child .eyebrow {
  color: var(--gold);
}

.about-detail article > p:last-of-type {
  margin: 24px 0 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

@media (max-width: 1020px) {
  .footer-inner {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }

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

@media (max-width: 850px) {
  .header-inner {
    min-height: 88px;
  }

  .site-nav {
    top: 88px;
  }

  .lead-story,
  .about-intro,
  .about-detail {
    grid-template-columns: 1fr;
  }

  .archive-row {
    grid-template-columns: 140px 1fr auto;
    gap: 14px 22px;
  }

  .archive-thumb {
    width: 140px;
    grid-row: 1 / 3;
  }

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

@media (max-width: 620px) {
  .header-inner {
    min-height: 82px;
  }

  .wordmark {
    width: 168px;
  }

  .wordmark-sub {
    font-size: 0.55rem;
    letter-spacing: 0.065em;
  }

  .site-nav {
    top: 82px;
  }

  .lead-story {
    gap: 34px;
    padding-block: 34px 50px;
  }

  .home-feature .lead-copy h1 {
    font-size: clamp(2.55rem, 12.6vw, 3.7rem);
  }

  .article-card .card-image {
    height: auto;
  }

  .archive-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 28px;
  }

  .archive-thumb {
    width: 100%;
    grid-column: 1;
    grid-row: 1;
  }

  .archive-date {
    grid-column: 1;
    grid-row: 2;
  }

  .archive-row > div {
    grid-column: 1;
    grid-row: 3;
  }

  .archive-row .category-pill {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-link-groups,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .footer-link-groups {
    gap: 22px;
  }

  .footer-copyright {
    grid-column: auto;
  }

  .standards-section .section-heading > p {
    text-align: left;
  }

  .about-actions {
    display: grid;
  }

  .about-actions > * {
    width: 100%;
  }
}

/* Searchable archive and article discovery */
.archive-hero .primary-link {
  margin-top: 26px;
}

.archive-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: end;
  padding-block: 54px 12px;
}

.archive-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.archive-intro > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.archive-intro a {
  color: var(--navy);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.archive-row .category-pill {
  text-decoration: none;
}

.archive-empty {
  padding: 38px 0;
  color: var(--muted);
}

.explore-banner {
  color: var(--cream);
  border-bottom: 7px solid var(--gold);
  background:
    linear-gradient(112deg, rgba(197, 31, 47, 0.24), transparent 52%),
    var(--navy-deep);
}

.explore-hero {
  padding-block: clamp(48px, 7vw, 82px);
}

.explore-hero h1 {
  max-width: 930px;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.6vw, 6.7rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.explore-hero .headline-accent {
  color: var(--yellow);
}

.explore-hero .standfirst {
  max-width: 780px;
  color: #e7e5df;
}

.discovery-tools {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 68px);
  margin-top: -1px;
  padding-block: clamp(38px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.discovery-search label {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.search-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 2px solid var(--navy);
  background: #fff;
}

.search-field:focus-within {
  outline: 4px solid rgba(240, 189, 59, 0.45);
  outline-offset: 2px;
}

.search-field input {
  min-width: 0;
  padding: 17px 18px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: 1rem;
}

.search-field input:focus {
  outline: none;
}

.search-field button,
.empty-results button {
  padding: 12px 18px;
  border: 0;
  color: var(--navy-deep);
  background: var(--gold);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.search-field button:hover,
.search-field button:focus-visible,
.empty-results button:hover,
.empty-results button:focus-visible {
  background: var(--yellow);
}

.discovery-search > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.filter-grid label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.filter-grid select {
  width: 100%;
  min-height: 50px;
  padding: 0 38px 0 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-size: 0.94rem;
  text-transform: none;
}

.active-filters {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 0;
}

.active-filters:empty {
  display: none;
}

.active-filters > span {
  margin-right: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.active-filters button {
  padding: 7px 10px;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 750;
  cursor: pointer;
}

.active-filters button:hover,
.active-filters button:focus-visible {
  color: #fff;
  background: var(--navy);
}

.index-section {
  padding-block: clamp(58px, 8vw, 96px);
}

.facet-stack {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.facet-index {
  border-bottom: 1px solid var(--line);
}

.facet-index summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.facet-index summary::-webkit-details-marker {
  display: none;
}

.facet-index summary::after {
  content: "+";
  margin-left: auto;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 800;
}

.facet-index[open] summary::after {
  content: "−";
}

.facet-index summary > span {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.facet-index summary > small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.alpha-index {
  display: grid;
  gap: 22px;
  padding: 4px 0 30px;
}

.alpha-group {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.alpha-group h3 {
  margin: 8px 0 0;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.index-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.index-links a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 11px;
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.index-links a:hover,
.index-links a:focus-visible {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.index-links small {
  color: inherit;
  opacity: 0.65;
}

.discovery-results {
  padding-block: clamp(60px, 8vw, 104px);
  border-top: 7px solid var(--red);
}

.results-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--navy);
}

.results-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.results-heading > p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.discovery-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-bottom: 6px solid var(--gold);
  background: var(--paper);
}

.discovery-image {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--navy-deep);
}

.discovery-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.discovery-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.discovery-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.discovery-copy h3 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.discovery-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.discovery-copy h3 a:hover,
.discovery-copy h3 a:focus-visible {
  color: var(--red);
}

.discovery-copy > p:not(.card-label) {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.discovery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.discovery-meta a {
  padding: 6px 8px;
  color: var(--navy);
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

.discovery-meta a:hover,
.discovery-meta a:focus-visible {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.empty-results {
  margin-top: 32px;
  padding: clamp(28px, 5vw, 52px);
  color: var(--cream);
  background: var(--navy-deep);
}

.empty-results h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
}

.empty-results p {
  margin: 10px 0 20px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}

.pagination:empty {
  display: none;
}

.pagination button {
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: var(--paper);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.pagination button[aria-current="page"] {
  color: #fff;
  background: var(--navy);
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.article-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  font-family: var(--sans);
}

.article-topics > span {
  margin-right: 3px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-topics a {
  padding: 7px 9px;
  color: var(--cream);
  border: 1px solid rgba(240, 189, 59, 0.58);
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
}

.article-topics a:hover,
.article-topics a:focus-visible {
  color: var(--navy-deep);
  background: var(--gold);
}

.article-breadcrumbs {
  max-width: 1080px;
  padding-top: clamp(20px, 2.8vw, 34px);
  font-family: var(--sans);
}

.article-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  color: #d5dbe1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.45;
  list-style: none;
  text-transform: uppercase;
}

.article-breadcrumbs li {
  display: flex;
  min-width: 0;
  align-items: center;
}

.article-breadcrumbs li + li::before {
  margin-inline: 0.62rem;
  color: var(--gold);
  content: "/";
  font-weight: 900;
}

.article-breadcrumbs a {
  color: var(--cream);
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.article-breadcrumbs a:hover,
.article-breadcrumbs a:focus-visible {
  color: var(--yellow);
  text-decoration-color: currentColor;
}

.article-breadcrumb-current {
  max-width: min(100%, 560px);
}

.article-breadcrumb-current [aria-current="page"] {
  overflow: hidden;
  color: #d5dbe1;
  letter-spacing: 0;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.article-breadcrumbs + .article-hero {
  padding-top: clamp(28px, 4vw, 48px);
}

.series-navigation {
  margin-top: 3.25em;
  padding: 24px;
  color: var(--cream);
  background: var(--navy-deep);
  font-family: var(--sans);
}

.series-navigation > p {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.series-navigation > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.series-navigation a {
  display: grid;
  gap: 5px;
  padding: 16px;
  color: var(--cream);
  border: 1px solid rgba(240, 189, 59, 0.5);
  text-decoration: none;
}

.series-navigation a:hover,
.series-navigation a:focus-visible {
  color: var(--navy-deep);
  background: var(--gold);
}

.series-navigation a > span {
  color: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
}

.series-navigation a > strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.25;
}

.series-next {
  grid-column: 2;
  text-align: right;
}

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

.related-grid .related-card {
  display: flex;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  flex-direction: column;
  align-content: initial;
  color: var(--navy);
  border: 1px solid var(--line);
  border-bottom: 6px solid var(--gold);
  background: var(--paper);
}

.related-grid .related-card:hover,
.related-grid .related-card:focus-visible {
  color: var(--navy);
  border-color: var(--red);
  background: var(--cream);
}

.related-card picture {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--navy-deep);
}

.related-card picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related-grid .related-card > span {
  margin: 18px 20px 0;
  color: var(--red);
}

.related-grid .related-card > strong {
  padding: 8px 20px 0;
  font-size: 1.2rem;
}

.related-grid .related-card > small {
  margin-top: auto;
  padding: 14px 20px 20px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

@media (max-width: 1020px) {
  .discovery-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .archive-intro,
  .discovery-tools {
    grid-template-columns: 1fr;
  }

  .discovery-tools {
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .explore-hero h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .filter-grid,
  .discovery-grid,
  .related-grid,
  .article-supporting-images-pair,
  .series-navigation > div {
    grid-template-columns: 1fr;
  }

  .search-field {
    grid-template-columns: 1fr;
  }

  .search-field button {
    min-height: 46px;
  }

  .facet-index summary > small {
    display: none;
  }

  .alpha-group {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
  }

  .index-links a {
    width: 100%;
    justify-content: space-between;
  }

  .results-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .series-next {
    grid-column: 1;
    text-align: left;
  }
}

/* World Map responsive correction */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.world-map-tools,
.world-map-workspace,
.world-map-frame,
.world-map-canvas-wrap,
.world-map-canvas,
.world-map-detail,
.world-map-list,
.map-location-card,
.map-location-heading,
.map-location-heading > span:last-child {
  min-width: 0;
  max-width: 100%;
}

.world-map-canvas-wrap {
  overflow: hidden;
  isolation: isolate;
}

.world-map-canvas.leaflet-container {
  max-width: 100%;
}

.world-map-filters button,
.world-map-reset,
.map-location-card,
.map-location-heading,
.map-location-articles a,
.world-map-detail {
  overflow-wrap: anywhere;
}

.leaflet-popup-content-wrapper {
  max-width: min(260px, calc(100vw - 64px));
}

.leaflet-popup-content {
  max-width: calc(100vw - 104px);
  margin: 13px 18px;
}

@media (max-width: 1024px) {
  .world-map-tools {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .world-map-reset {
    justify-self: start;
  }

  .world-map-frame {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .world-map-canvas-wrap,
  .world-map-canvas {
    height: clamp(440px, 58svh, 560px);
    min-height: 440px;
  }

  .map-method,
  .home-world-map-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .map-method .primary-link,
  .home-world-map .primary-link {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .world-map-heading,
  .world-map-list-section .section-heading {
    display: grid;
    align-items: start;
  }

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

  .world-map-detail {
    padding: clamp(26px, 6vw, 42px);
  }
}

@media (max-width: 620px) {
  .world-map-hero {
    padding-block: 36px 40px;
  }

  .world-map-hero h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
    line-height: 0.98;
  }

  .world-map-hero .standfirst {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .world-map-tools {
    gap: 16px;
    padding-block: 26px 20px;
  }

  .world-map-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-map-filters button,
  .world-map-reset {
    width: 100%;
    min-height: 48px;
  }

  .world-map-reset {
    justify-self: stretch;
  }

  .world-map-workspace {
    padding-bottom: 64px;
  }

  .world-map-heading {
    gap: 12px;
    margin-bottom: 16px;
  }

  .world-map-heading h2,
  .world-map-list-section .section-heading h2,
  .map-method h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .world-map-canvas-wrap,
  .world-map-canvas {
    height: clamp(360px, 58svh, 460px);
    min-height: 360px;
  }

  .world-map-detail {
    padding: 26px 22px 30px;
  }

  .world-map-detail h2 {
    font-size: clamp(2.45rem, 14vw, 3.6rem);
  }

  .world-map-list-section {
    padding-bottom: 68px;
  }

  .world-map-list {
    margin-top: 24px;
  }

  .map-location-card {
    padding: 22px 18px;
  }

  .map-location-heading {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .map-location-heading strong {
    font-size: clamp(1.6rem, 9vw, 2.15rem);
  }

  .map-method,
  .home-world-map-inner {
    gap: 24px;
    padding-block: 48px;
  }
}

@media (max-width: 420px), (min-resolution: 2dppx) and (max-width: 500px) {
  .world-map-filters {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Visitor Map */
.visitor-map-banner {
  color: var(--cream);
  border-bottom: 7px solid var(--gold);
  background:
    radial-gradient(circle at 82% 24%, rgb(31 95 168 / 24%), transparent 26%),
    linear-gradient(112deg, rgb(197 31 47 / 24%), transparent 48%),
    var(--navy-deep);
}

.visitor-map-hero {
  padding-block: clamp(42px, 6vw, 72px) clamp(36px, 5vw, 60px);
}

.visitor-map-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.2rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.visitor-map-hero .headline-accent {
  display: block;
  margin-top: 0.08em;
}

.visitor-map-hero .standfirst {
  max-width: 800px;
  margin-bottom: 0;
  color: #ebe8e1;
}

.visitor-map-dashboard {
  padding-block: clamp(38px, 6vw, 72px) clamp(72px, 9vw, 118px);
}

.visitor-map-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 24px;
}

.visitor-map-heading h2 {
  max-width: 740px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.visitor-map-counts {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.visitor-map-counts p {
  display: grid;
  gap: 2px;
  min-width: 0;
  margin: 0;
  padding: 13px 16px;
  text-align: center;
}

.visitor-map-counts p + p {
  border-left: 1px solid var(--line);
}

.visitor-map-counts strong {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.visitor-map-counts span {
  color: #4c5661;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.visitor-map-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.visitor-map-toolbar button {
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid var(--navy);
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font: 850 0.8rem/1.1 var(--sans);
}

.visitor-map-toolbar button[aria-pressed="true"] {
  color: var(--white);
  background: var(--navy);
}

.visitor-map-toolbar button:hover,
.visitor-map-toolbar button:focus-visible {
  color: var(--navy-deep);
  border-color: var(--gold);
  background: var(--gold);
  outline: 0;
}

.visitor-map-workspace {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(310px, 0.88fr);
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 50px rgb(7 13 22 / 13%);
}

.visitor-map-canvas-wrap {
  position: relative;
  min-width: 0;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
  background: #dbe3e7;
}

.visitor-map-canvas {
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 690px;
  max-width: 100%;
}

.visitor-map-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 500;
  width: min(380px, calc(100% - 36px));
  margin: 0;
  padding: 16px 18px;
  color: var(--cream);
  border-bottom: 4px solid var(--gold);
  background: var(--navy-deep);
  font-weight: 750;
  text-align: center;
  transform: translate(-50%, -50%);
}

.visitor-map-legend {
  position: absolute;
  right: 12px;
  bottom: 25px;
  z-index: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  max-width: calc(100% - 24px);
  padding: 9px 11px;
  color: var(--navy);
  border: 1px solid rgb(7 13 22 / 18%);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 4px 16px rgb(7 13 22 / 18%);
  font-size: 0.73rem;
  font-weight: 850;
}

.visitor-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.visitor-map-panel {
  min-width: 0;
  padding: clamp(26px, 3vw, 42px);
  color: var(--cream);
  border-top: 7px solid var(--red);
  background:
    linear-gradient(150deg, rgb(197 31 47 / 17%), transparent 44%),
    var(--navy-deep);
}

.visitor-map-panel .eyebrow {
  margin-bottom: 9px;
  color: var(--gold);
}

.visitor-map-panel h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.visitor-map-steps {
  display: grid;
  gap: 7px;
  margin: 22px 0;
  padding-left: 1.25rem;
  color: #dce3e9;
  font-size: 0.93rem;
  line-height: 1.45;
}

.visitor-map-steps li::marker {
  color: var(--gold);
  font-weight: 900;
}

.visitor-map-selection {
  margin: 0 0 22px;
  padding: 12px 13px;
  color: #d6dde4;
  border: 1px dashed rgb(255 255 255 / 36%);
  background: rgb(255 255 255 / 6%);
  font-size: 0.87rem;
  font-weight: 750;
}

.visitor-map-selection.has-selection {
  color: var(--navy-deep);
  border-style: solid;
  border-color: var(--gold);
  background: var(--gold);
}

.visitor-pin-form {
  display: grid;
  gap: 22px;
}

.visitor-pin-form fieldset {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.visitor-pin-form legend {
  margin-bottom: 9px;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 850;
}

.visitor-choice {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgb(255 255 255 / 25%);
  cursor: pointer;
}

.visitor-choice:has(input:checked) {
  border-color: var(--gold);
  background: rgb(241 194 50 / 10%);
}

.visitor-choice input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.visitor-choice span {
  display: grid;
  gap: 3px;
}

.visitor-choice strong {
  color: var(--cream);
  font-size: 0.92rem;
}

.visitor-choice small {
  color: #bfc8d0;
  font-size: 0.76rem;
  line-height: 1.35;
}

.visitor-colour-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.visitor-colour-choice {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
}

.visitor-colour-choice-red {
  color: var(--white);
  background: #c51f2f;
}

.visitor-colour-choice-blue {
  color: var(--white);
  background: #1f5fa8;
}

.visitor-colour-choice:has(input:checked) {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 2px var(--navy-deep);
}

.visitor-colour-choice input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--gold);
}

.visitor-colour-note {
  margin: 1px 0 0;
  color: #bfc8d0;
  font-size: 0.76rem;
  line-height: 1.4;
}

.visitor-pin-submit {
  min-height: 52px;
  padding: 12px 18px;
  border: 0;
  color: var(--navy-deep);
  background: var(--gold);
  cursor: pointer;
  font: 900 0.9rem/1 var(--sans);
}

.visitor-pin-submit:hover,
.visitor-pin-submit:focus-visible {
  color: var(--white);
  background: var(--red);
  outline: 3px solid var(--cream);
  outline-offset: 3px;
}

.visitor-pin-submit:disabled {
  color: #8d969f;
  background: #36414d;
  cursor: not-allowed;
  outline: 0;
}

.visitor-pin-status {
  min-height: 1.5em;
  margin: -10px 0 0;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.45;
}

.visitor-map-privacy {
  margin: 26px 0 0;
  padding-top: 20px;
  color: #aeb9c3;
  border-top: 1px solid rgb(255 255 255 / 22%);
  font-size: 0.76rem;
  line-height: 1.55;
}

.visitor-map-privacy strong {
  color: var(--cream);
}

.visitor-map-noscript {
  margin: 18px 0 0;
  padding: 14px;
  color: var(--cream);
  background: var(--red);
  font-weight: 750;
}

.visitor-map-marker-shell {
  border: 0;
  background: transparent;
}

.visitor-map-pin,
.visitor-pin-demo {
  display: grid;
  place-items: center;
  color: var(--white);
  border: 3px solid var(--white);
  background: var(--pin-colour);
  box-shadow: 0 3px 12px rgb(7 13 22 / 45%);
  font: 950 0.78rem/1 var(--sans);
}

.visitor-map-pin {
  width: 32px;
  height: 32px;
}

.visitor-map-pin-red,
.visitor-pin-red {
  --pin-colour: #c51f2f;
}

.visitor-map-pin-blue,
.visitor-pin-blue {
  --pin-colour: #1f5fa8;
}

.visitor-map-pin-visited,
.visitor-pin-visited {
  border-radius: 50%;
}

.visitor-map-pin-not-yet,
.visitor-pin-not-yet {
  border-radius: 5px;
  transform: rotate(45deg) scale(0.84);
}

.visitor-map-pin-not-yet b {
  transform: rotate(-45deg) scale(1.25);
}

.visitor-map-pin-preview {
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgb(241 194 50 / 34%), 0 3px 15px rgb(7 13 22 / 52%);
}

.visitor-pin-demo {
  width: 21px;
  height: 21px;
  border-width: 2px;
  font-size: 0.62rem;
  font-style: normal;
  box-shadow: none;
}

.visitor-colour-swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 5px rgb(7 13 22 / 25%);
}

.visitor-colour-swatch-red {
  background: #c51f2f;
}

.visitor-colour-swatch-blue {
  background: #1f5fa8;
}

.visitor-map-popup {
  display: grid;
  gap: 4px;
  min-width: 150px;
  font-family: var(--sans);
}

.visitor-map-popup strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.1;
}

.visitor-map-popup span {
  color: #4b5560;
  font-size: 0.8rem;
}

.visitor-map-popup small {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .visitor-map-heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .visitor-map-counts {
    width: min(100%, 560px);
  }

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

  .visitor-map-canvas-wrap,
  .visitor-map-canvas {
    height: clamp(440px, 58svh, 580px);
    min-height: 440px;
  }
}

@media (max-width: 620px) {
  .visitor-map-hero {
    padding-block: 36px 40px;
  }

  .visitor-map-hero h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.9rem);
    line-height: 0.98;
  }

  .visitor-map-hero .standfirst {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .visitor-map-dashboard {
    padding-block: 30px 68px;
  }

  .visitor-map-heading {
    gap: 20px;
  }

  .visitor-map-heading h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

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

  .visitor-map-counts p {
    grid-template-columns: 52px 1fr;
    align-items: center;
    text-align: left;
  }

  .visitor-map-counts p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .visitor-map-counts strong {
    text-align: center;
  }

  .visitor-map-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .visitor-map-toolbar button {
    width: 100%;
    min-height: 48px;
  }

  .visitor-map-canvas-wrap,
  .visitor-map-canvas {
    height: clamp(370px, 58svh, 470px);
    min-height: 370px;
  }

  .visitor-map-panel {
    padding: 27px 20px 32px;
  }

  .visitor-map-panel h2 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .visitor-map-legend {
    left: 10px;
    right: 10px;
    bottom: 24px;
    justify-content: center;
  }

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

@media (max-width: 620px) {
  .article-breadcrumbs {
    padding-top: 18px;
  }

  .article-breadcrumbs ol {
    font-size: 0.7rem;
    letter-spacing: 0.055em;
  }

  .article-breadcrumb-current {
    flex-basis: 100%;
    max-width: 100%;
    margin-top: 0.45rem;
  }

  .article-breadcrumbs .article-breadcrumb-current::before {
    display: none;
  }

  .article-breadcrumb-current [aria-current="page"] {
    max-width: 100%;
  }
}

/* Mobile and tablet hardening — September 2026 */
html {
  overflow-x: hidden;
  overflow-x: clip;
}

body,
main,
section,
article,
header,
footer,
nav,
form,
fieldset,
.shell {
  min-width: 0;
}

body {
  overflow-wrap: break-word;
}

img,
svg,
canvas,
iframe,
video {
  max-width: 100%;
}

.wordmark {
  min-width: 0;
  flex: 0 1 auto;
}

.menu-button {
  flex: 0 0 auto;
}

.lead-copy h1,
.article-hero h1,
.archive-hero h1,
.about-hero h1,
.explore-hero h1,
.world-map-hero h1,
.visitor-map-hero h1,
.merch-intro h1,
.section-heading h2,
.home-discovery-heading h2,
.resurface-heading h2,
.visitor-map-heading h2,
.world-map-heading h2,
.map-method h2,
.article-body h2,
.article-body h3,
.archive-row h2,
.discovery-copy h3,
.related-grid strong {
  overflow-wrap: break-word;
}

.search-field input,
.filter-grid select,
.world-map-filters button,
.world-map-reset,
.visitor-map-toolbar button,
.visitor-pin-submit,
.menu-button,
.site-nav a,
.action-links > *,
.community-links > * {
  min-height: 44px;
}

.text-link,
.category-pill,
.index-links a,
.article-topics a,
.discovery-meta a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.menu-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.archive-list,
.discovery-results {
  scroll-margin-top: 110px;
}

.article-body a,
.source-summary a {
  overflow-wrap: anywhere;
}

.article-body table {
  max-width: 100%;
}

.article-supporting-figure,
.article-supporting-figure picture,
.article-supporting-figure img {
  max-width: 100%;
}

@media (min-width: 621px) and (max-width: 1024px) {
  :root {
    --shell: min(100% - 56px, 1180px);
  }

  .header-inner {
    gap: 22px;
  }

  .site-nav {
    gap: clamp(16px, 2.4vw, 24px);
  }

  .article-hero h1,
  .archive-hero h1,
  .about-hero h1,
  .explore-hero h1,
  .world-map-hero h1,
  .visitor-map-hero h1 {
    font-size: clamp(3.4rem, 8vw, 5.2rem);
  }

  .article-layout {
    width: min(100% - 56px, 1060px);
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
  }

  .article-aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
  }

  .article-aside p {
    margin: 0;
  }

  .archive-row {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 14px 24px;
    align-items: start;
  }

  .archive-thumb {
    width: 150px;
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .archive-date {
    grid-column: 2;
    grid-row: 1;
  }

  .archive-row > div {
    grid-column: 2;
    grid-row: 2;
  }

  .archive-row .category-pill {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
  }

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

  .identity-principles {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 24px;
  }

  .footer-link-groups {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 850px) {
  .header-inner {
    gap: 16px;
  }

  .site-nav {
    top: 100%;
  }

  .site-nav.open {
    max-height: calc(100svh - 94px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav a {
    padding-block: 12px;
  }

  .article-aside {
    position: static;
  }

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

  .identity-principles {
    display: block;
    grid-column: auto;
  }

  .footer-link-group a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .footer-link-groups {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .wordmark {
    width: min(168px, calc(100vw - 92px));
  }

  .wordmark-sub {
    white-space: normal;
  }

  .site-nav.open {
    max-height: calc(100svh - 88px);
  }

  .lead-copy h1,
  .article-hero h1,
  .archive-hero h1,
  .about-hero h1,
  .explore-hero h1,
  .world-map-hero h1,
  .visitor-map-hero h1,
  .merch-intro h1 {
    font-size: clamp(2.35rem, 11.6vw, 3.65rem);
    letter-spacing: -0.045em;
    line-height: 0.98;
  }

  .standfirst,
  .article-standfirst,
  .world-map-hero .standfirst,
  .visitor-map-hero .standfirst {
    font-size: 1.08rem;
    line-height: 1.58;
  }

  .article-hero,
  .archive-hero,
  .about-hero,
  .explore-hero,
  .world-map-hero,
  .visitor-map-hero {
    padding-block: 38px 42px;
  }

  .article-breadcrumbs + .article-hero {
    padding-top: 28px;
  }

  .article-figure,
  .article-figure-portrait,
  .article-layout {
    width: var(--shell);
  }

  .article-layout {
    padding-bottom: 76px;
  }

  .article-body {
    font-size: 1.05rem;
    line-height: 1.76;
  }

  .article-body > p:first-child::first-letter {
    margin-top: 8px;
    font-size: 4.5rem;
  }

  .article-supporting-images-wide,
  .article-supporting-images-pair {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .article-actions,
  .series-navigation,
  .evidence-panel {
    padding: 22px 18px;
  }

  .archive-thumb {
    width: min(100%, 420px);
    justify-self: center;
  }

  .archive-date,
  .archive-row > div,
  .archive-row .category-pill {
    width: 100%;
  }

  .filter-grid,
  .world-map-filters {
    grid-template-columns: minmax(0, 1fr);
  }

  .filter-grid select {
    font-size: 1rem;
  }

  .article-breadcrumbs a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .facet-index summary {
    gap: 12px;
    align-items: center;
  }

  .facet-index summary > span {
    min-width: 0;
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .index-links a,
  .active-filters button {
    min-height: 44px;
  }

  .world-map-canvas-wrap,
  .world-map-canvas,
  .visitor-map-canvas-wrap,
  .visitor-map-canvas {
    height: clamp(350px, 56svh, 440px);
    min-height: 350px;
  }

  .leaflet-control-zoom a {
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .visitor-map-legend {
    max-height: 88px;
    justify-content: flex-start;
    overflow-y: auto;
    font-size: 0.68rem;
  }

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

@media (max-width: 420px) {
  :root {
    --shell: min(100% - 24px, 1180px);
  }

  .header-inner {
    gap: 10px;
  }

  .wordmark {
    width: min(158px, calc(100vw - 78px));
  }

  .home-gateway-card,
  .home-gateway-card:last-child:nth-child(odd),
  .resurface-story,
  .resurface-place,
  .resurface-subject {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-gateway-media,
  .resurface-media {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 239, 228, 0.16);
  }

  .home-gateway-copy small,
  .resurface-copy small {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .article-actions h2,
  .related-section h2,
  .visitor-map-panel h2,
  .world-map-detail h2 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }
}
