:root {
  color-scheme: light;
  --paper: #f7f5ef;
  --surface: #fffdf8;
  --surface-warm: #f1ede3;
  --surface-muted: #ede8dc;
  --ink: #17140f;
  --muted: #675f54;
  --muted-soft: #8a8173;
  --line: #d6cebf;
  --line-strong: #b9ae9e;
  --accent: #9d2f24;
  --accent-strong: #6e1f19;
  --navy: #17324a;
  --forest: #244735;
  --teal: #0d6f67;
  --gold: #8a6d1f;
  --shadow: 0 1px 0 rgba(23, 20, 15, 0.06);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

a:hover,
a:focus-visible {
  color: var(--accent-strong);
}

button,
input {
  font: inherit;
}

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

.shell,
.topline {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 239, 0.96);
  backdrop-filter: blur(14px);
}

.topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.topline nav {
  display: flex;
  gap: 14px;
  font-weight: 760;
}

.mastnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.mastnav__tools {
  display: grid;
  grid-template-columns: auto minmax(280px, 420px);
  gap: 12px;
  align-items: end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 0.9;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 740;
  text-transform: uppercase;
}

.edition-nav,
.language-tabs {
  display: flex;
  gap: 8px;
}

.edition-nav a,
.language-tabs__link {
  display: grid;
  min-width: 52px;
  min-height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 820;
}

.edition-nav a[aria-current="page"],
.language-tabs__link--active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.language-search {
  display: grid;
  position: relative;
  width: min(100%, 420px);
}

.language-tabs__link {
  padding: 6px 8px;
}

.language-tabs__link small {
  display: none;
}

.search-box {
  display: grid;
  gap: 5px;
}

.search-box span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.search-box input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 0 12px;
}

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  display: grid;
  gap: 8px;
  width: min(560px, 92vw);
  max-height: min(360px, calc(100vh - 180px));
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 8px;
}

.search-hit {
  display: grid;
  gap: 2px;
  min-height: 74px;
  border-left: 3px solid var(--teal);
  background: var(--surface);
  padding: 8px 10px;
}

.search-hit--suggestion {
  min-height: 54px;
  border-left-color: var(--accent);
}

.search-hit__meta,
.story-meta,
.eyebrow,
.site-footer {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.search-hit strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.search-results__section {
  margin: 4px 2px 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 840;
  text-transform: uppercase;
}

.search-hit span:last-child,
.search-results__empty {
  color: var(--muted);
  font-size: 0.82rem;
}

.root-intro,
.edition,
.article,
.search-page {
  padding: 34px 0 58px;
}

.root-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 44px;
  align-items: end;
  min-height: 58vh;
}

.root-intro h1,
.edition-heading h1,
.page-head h1,
.article h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

.root-intro h1 {
  max-width: 760px;
  font-size: 5.4rem;
}

.edition-heading {
  display: grid;
  gap: 8px;
  padding-bottom: 20px;
}

.edition-heading h1 {
  font-size: 4.8rem;
}

.root-intro p:not(.eyebrow),
.edition-heading p,
.page-head p,
.article__dek {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.article__dek {
  max-width: 100%;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
}

.language-launcher {
  display: grid;
  border-top: 2px solid var(--ink);
}

.language-launcher a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.language-launcher span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-weight: 850;
}

.home {
  display: grid;
  gap: 28px;
  padding: 24px 0 64px;
}

.home-heading {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(300px, 4fr);
  gap: 28px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.home-heading h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 3.95rem);
  line-height: 1;
  letter-spacing: 0;
}

.home-heading > p {
  max-width: 440px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.02rem;
}

.topic-choice--home {
  margin: -8px 0 -6px;
}

.home-topline {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  border-top: 3px solid var(--ink);
  padding-top: 18px;
}

.lead-story--home {
  grid-column: span 6;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  box-shadow: none;
}

.lead-story__link {
  display: grid;
  align-content: start;
  gap: 14px;
}

.lead-story--home .lead-story__media img {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
  max-height: 340px;
  object-fit: cover;
}

.lead-story--home .lead-story__body {
  order: -1;
  align-content: start;
  gap: 12px;
  padding: 0;
}

.lead-story--home h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 4.2vw, 4.45rem);
  line-height: 0.98;
}

.story-summary {
  display: block;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.context-line {
  display: block;
  max-width: 700px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.context-line strong {
  color: var(--accent-strong);
  font-weight: 850;
}

.secondary-stack {
  grid-column: span 3;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.secondary-story {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.secondary-story a {
  display: grid;
  gap: 8px;
  padding: 14px 0;
}

.secondary-story img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--surface-muted);
}

.secondary-story h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.06;
}

.secondary-story p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.latest-rail--home {
  grid-column: span 3;
  border-top: 3px solid var(--accent);
  background: var(--surface);
}

.rail-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 12px 13px;
}

.latest-rail--home .rail-head h2 {
  padding: 0;
  border: 0;
  font-size: 1.12rem;
}

.latest-rail--home .rail-head a {
  display: inline-flex;
  min-height: auto;
  border: 0;
  padding: 0;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.latest-rail--home .latest-item {
  gap: 5px;
  padding: 11px 13px;
}

.latest-rail--home .latest-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.12;
}

.reader-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 13px 0;
}

.reader-notes h2 {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.reader-notes dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-left: 1px solid var(--line);
}

.reader-notes dl div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 9px;
  border-right: 1px solid var(--line);
  padding: 0 12px;
}

.reader-notes dt {
  color: var(--ink);
  font-weight: 850;
}

.reader-notes dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.editorial-visual {
  display: grid;
  min-height: 210px;
  place-items: end start;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(157, 47, 36, 0.1), transparent 42%),
    linear-gradient(90deg, rgba(23, 50, 74, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 50, 74, 0.08) 1px, transparent 1px),
    var(--surface-warm);
  background-size: auto, 26px 26px, 26px 26px, auto;
  padding: 16px;
}

.editorial-visual--lead {
  min-height: 360px;
}

.editorial-visual span {
  max-width: 220px;
  color: var(--accent-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.briefing-band {
  display: grid;
  gap: 16px;
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}

.section-head--editorial {
  align-items: start;
  margin-bottom: 0;
}

.section-head--editorial > p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.briefing-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.briefing-list article {
  min-height: 190px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.briefing-list a {
  display: grid;
  gap: 9px;
  height: 100%;
  padding: 15px;
}

.briefing-list h3,
.feature-primary h3,
.analysis-card h3,
.section-column h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.briefing-list h3 {
  font-size: 1.28rem;
}

.briefing-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.briefing-list p strong {
  color: var(--accent-strong);
}

.editorial-feature {
  display: grid;
  gap: 16px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 18px;
}

.feature-primary {
  border-bottom: 1px solid var(--line-strong);
}

.feature-primary a {
  display: grid;
  gap: 11px;
}

.feature-primary img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--surface-muted);
}

.feature-primary h3 {
  font-size: 2.05rem;
}

.feature-primary p,
.analysis-card p,
.section-column p {
  margin: 0;
  color: var(--muted);
}

.feature-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.analysis-card {
  min-height: 178px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.analysis-card a {
  display: grid;
  gap: 8px;
  height: 100%;
  padding: 14px;
}

.analysis-card h3 {
  font-size: 1.24rem;
}

.analysis-card p {
  font-size: 0.9rem;
}

.section-desk {
  display: grid;
  gap: 16px;
}

.section-desk__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.section-column {
  display: grid;
  align-content: start;
  gap: 12px;
  border-top: 3px solid var(--navy);
  background: var(--surface);
  padding: 13px;
}

.section-column:nth-child(even) {
  border-top-color: var(--forest);
}

.section-column__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.section-column h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-column__head a {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-column article a {
  display: grid;
  gap: 8px;
}

.section-column h4 {
  font-size: 1.28rem;
}

.section-column p {
  font-size: 0.9rem;
}

.section-column__latest {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.section-column__latest a {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  line-height: 1.12;
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.62fr) minmax(270px, 0.52fr);
  gap: 18px;
  align-items: start;
  border-top: 3px solid var(--ink);
  padding-top: 18px;
}

.topic-choice {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 24px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.topic-choice > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.topic-choice__links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
}

.topic-choice__links a {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  min-height: 28px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 820;
}

.topic-choice__links a:hover,
.topic-choice__links a:focus-visible {
  color: var(--accent-strong);
}

.topic-choice__links strong {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
}

.lead-story,
.side-story,
.story-card,
.latest-rail,
.empty-state,
.search-index-list article {
  background: var(--surface);
}

.lead-story {
  display: grid;
  box-shadow: var(--shadow);
}

.lead-story__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface-muted);
}

.lead-story__body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.lead-story h2,
.side-story h2,
.story-card h2,
.latest-rail h2,
.search-index-list h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.lead-story h2 {
  font-size: 2.7rem;
}

.lead-story p,
.side-story p,
.story-card p,
.search-index-list p {
  margin: 0;
  color: var(--muted);
}

.side-stack {
  display: grid;
  gap: 12px;
}

.empty-state {
  min-height: 260px;
  border-left: 4px solid var(--teal);
  padding: 18px;
}

.empty-state h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.08;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.side-story {
  border-top: 4px solid var(--teal);
  padding: 14px;
}

.side-story h2 {
  margin-top: 8px;
  font-size: 1.55rem;
}

.latest-rail {
  display: grid;
  gap: 0;
  border-top: 4px solid var(--accent);
}

.latest-rail h2 {
  padding: 12px;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.latest-rail a {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.latest-rail span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 820;
  text-transform: uppercase;
}

.section-band {
  margin-top: 32px;
  border-top: 2px solid var(--ink);
  padding-top: 14px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.section-head a {
  color: var(--accent-strong);
  font-weight: 820;
}

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

.story-card {
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-card a {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.story-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--surface-muted);
}

.story-card h2 {
  font-size: 1.35rem;
}

.section-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.section-list a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 12px;
}

.section-list span {
  font-weight: 820;
}

.article {
  max-width: 880px;
}

.article__header,
.page-head {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.article h1,
.page-head h1 {
  font-size: 4.2rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row a,
.tag-row span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--accent-strong);
  padding: 3px 9px;
  font-size: 0.8rem;
  font-weight: 780;
}

.article__image {
  margin: 0 0 30px;
  background: var(--surface-muted);
}

.article__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article__image figcaption {
  display: grid;
  gap: 4px;
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.article__image-credit {
  font-size: 0.78rem;
}

.article__image-credit a {
  color: inherit;
}

.article__content {
  display: grid;
  gap: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.article__content p {
  margin: 0;
}

.entity-link {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article__footer {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}

.article__related {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}

.article__related h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.related-list {
  display: grid;
  gap: 10px;
}

.related-list a {
  display: grid;
  gap: 5px;
  border-left: 3px solid var(--teal);
  background: var(--surface);
  padding: 12px;
}

.related-list span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 820;
  text-transform: uppercase;
}

.related-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.12;
}

.related-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.entity-page {
  display: grid;
  gap: 22px;
}

.entity-timeline {
  display: grid;
  gap: 12px;
}

.entity-timeline article a {
  display: grid;
  gap: 7px;
  border-left: 4px solid var(--teal);
  background: var(--surface);
  padding: 14px;
}

.entity-timeline span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.entity-timeline strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.12;
}

.entity-timeline p {
  margin: 0;
  color: var(--muted);
}

.article__footer h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

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

.legal-page {
  display: grid;
  max-width: 880px;
  gap: 22px;
  padding: 34px 0 58px;
}

.legal-page__updated {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.legal-page__content {
  display: grid;
  gap: 20px;
}

.legal-section {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.legal-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.legal-section p,
.legal-section ul {
  margin: 0;
  color: var(--muted);
}

.legal-section ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

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

.source-list a {
  display: block;
  border-left: 3px solid var(--teal);
  background: var(--surface);
  padding: 10px 12px;
  font-weight: 780;
}

.search-page {
  max-width: 960px;
}

.search-results-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
  margin-bottom: 12px;
}

.search-results-meta strong {
  color: var(--ink);
  font-size: 1rem;
}

.search-index-list {
  display: grid;
  gap: 12px;
}

.search-index-list article a {
  display: grid;
  gap: 8px;
  border-left: 4px solid var(--teal);
  padding: 14px;
}

.search-index-list h2 {
  font-size: 1.6rem;
}

.search-empty {
  margin-top: 12px;
}

.search-suggestion-groups {
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.search-suggestion-groups h2 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--muted);
}

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

.search-suggestion-grid h3 {
  margin: 0 0 8px;
  font-size: 0.84rem;
  text-transform: uppercase;
  color: var(--muted);
}

.facet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
}

.facet-grid h2 {
  margin: 0 0 8px;
  font-size: 0.84rem;
  text-transform: uppercase;
  color: var(--muted);
}

.facet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.facet-list a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 4px 9px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 780;
}

.facet-list span {
  color: var(--muted);
  font-size: 0.72rem;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.pager__pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pager a,
.pager span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px 12px;
  font-weight: 820;
}

.pager a[aria-current="page"] {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.source-profile dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 0;
}

.source-profile dl div {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px;
}

.source-profile dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.source-profile dd {
  margin: 4px 0 0;
  font-weight: 850;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding: 24px 0;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-weight: 780;
}

.site-footer p {
  margin: 0;
}

.site-footer span {
  display: block;
  max-width: 420px;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 520;
}

@media (max-width: 980px) {
  .news-grid,
  .root-intro,
  .home-heading,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .section-list,
  .facet-grid,
  .briefing-list,
  .section-desk__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-topline {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lead-story--home {
    grid-column: span 6;
  }

  .reader-notes {
    grid-column: span 6;
    grid-template-columns: 1fr;
  }

  .reader-notes dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 0;
  }

  .reader-notes dl div {
    border-top: 1px solid var(--line);
    border-right: 0;
    padding: 9px 0;
  }

  .secondary-stack,
  .latest-rail--home {
    grid-column: span 3;
  }

  .root-intro h1,
  .edition-heading h1 {
    font-size: 4rem;
  }

  .article h1,
  .page-head h1 {
    font-size: 3.4rem;
  }

  .topic-choice {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    backdrop-filter: none;
  }

  .shell,
  .topline {
    width: min(100% - 24px, 1240px);
  }

  .topline,
  .mastnav,
  .mastnav__tools,
  .site-footer__inner {
    display: grid;
  }

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

  .edition-nav {
    justify-content: stretch;
  }

  .edition-nav a {
    flex: 1;
  }

  .story-grid,
  .section-list,
  .facet-grid,
  .search-suggestion-grid,
  .source-profile dl,
  .home-topline,
  .briefing-list,
  .feature-support,
  .section-desk__grid {
    grid-template-columns: 1fr;
  }

  .home {
    gap: 26px;
    padding-top: 24px;
  }

  .home-heading {
    gap: 16px;
  }

  .home-heading h1 {
    font-size: 2.65rem;
    line-height: 1.03;
  }

  .lead-story--home,
  .secondary-stack,
  .latest-rail--home,
  .reader-notes {
    grid-column: auto;
  }

  .lead-story--home h2,
  .weekly-briefing h2 {
    font-size: 2rem;
  }

  .editorial-visual--lead {
    min-height: 250px;
  }

  .reader-notes dl {
    grid-template-columns: 1fr;
  }

  .section-head--editorial {
    display: grid;
  }

  .language-search {
    width: 100%;
  }

  .topic-choice__links {
    gap: 2px 12px;
  }

  .root-intro {
    min-height: auto;
  }

  .root-intro h1,
  .edition-heading h1,
  .article h1,
  .page-head h1 {
    font-size: 2.65rem;
    line-height: 1.03;
  }

  .lead-story h2 {
    font-size: 2rem;
  }
}
