:root {
  --ink: #202020;
  --ink-soft: #3f3c38;
  --muted: #726e67;
  --muted-light: #a09a97;
  --blue: #0787ca;
  --blue-dark: #006aa2;
  --blue-deep: #004e77;
  --blue-pale: #e7f3ff;
  --paper: #ffffff;
  --paper-warm: #fbfaf7;
  --wash: #f7f6f5;
  --rule: #e7e3df;
  --yellow: #fbefbf;
  --yellow-deep: #ecdea6;
  --focus: #0b65a0;
  --display: "Libre Baskerville", Georgia, serif;
  --body: "Merriweather", Georgia, serif;
  --utility: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1230px;
  --gutter: 50px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--utility);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
}

p {
  margin-bottom: 1rem;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

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

[hidden] {
  display: none !important;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.announcement {
  position: relative;
  z-index: 50;
  background: var(--yellow);
  border-bottom: 1px solid var(--yellow-deep);
  font-size: 12px;
  line-height: 1.4;
}

.announcement__inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.announcement a {
  color: var(--blue-deep);
  font-weight: 600;
}

.announcement a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.nav-shell {
  position: relative;
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  position: absolute;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: clamp(20px, 2.05vw, 28px);
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.wordmark span {
  font-weight: 700;
}

.wordmark em {
  font-weight: 400;
}

.wordmark:hover {
  color: var(--blue-deep);
}

.primary-nav {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 23px;
  justify-self: start;
  font-size: 13px;
  color: var(--muted);
}

.primary-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.primary-nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.nav-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.icon-button,
.menu-toggle,
.category-filter {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 2px;
}

.icon-button:hover {
  background: var(--wash);
}

.icon-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.75;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border: 0;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 0 2px 0 rgba(32, 32, 32, 0.06);
  color: white;
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--blue-dark);
}

.button:active {
  background: var(--blue-deep);
  box-shadow: none;
  transform: translateY(2px);
}

.button--small {
  min-height: 38px;
  padding-inline: 18px;
  font-size: 13px;
}

.button--ink {
  background: var(--ink);
}

.button--ink:hover {
  background: #000;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.category-rail {
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 3px 7px rgba(32, 32, 32, 0.035);
}

.category-rail__inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-rail__inner::-webkit-scrollbar {
  display: none;
}

.category-filter {
  position: relative;
  padding: 15px 0 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.category-filter::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.category-filter:hover,
.category-filter.is-active {
  color: var(--ink);
}

.category-filter.is-active::after {
  transform: scaleX(1);
}

.section {
  padding-block: 80px;
}

.section--lead {
  padding-block: 40px 64px;
}

.section--no-top {
  padding-top: 0;
}

.section--tinted {
  background: var(--wash);
}

.section--blue {
  background: var(--blue);
  color: white;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  gap: 48px;
  align-items: start;
}

.image-link,
.lead-story__image,
.latest-story__image,
.story-card__image,
.compact-story__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--wash);
}

.lead-story__image {
  aspect-ratio: 3 / 2;
  margin-bottom: 22px;
}

.image-link img,
.latest-story__image img,
.story-card__image img,
.compact-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 250ms ease, transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.image-link:hover img,
.latest-story__image:hover img,
.story-card__image:hover img,
.compact-story__image:hover img {
  opacity: 0.9;
  transform: scale(1.015);
}

.image-link__cue {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.image-link:hover .image-link__cue,
.image-link:focus-visible .image-link__cue {
  opacity: 1;
  transform: translateY(0);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.story-category {
  color: var(--blue);
  font-weight: 600;
}

.lead-story h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.2;
}

.lead-story h1 a,
.compact-story h2 a,
.latest-story h3 a,
.story-card h3 a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: color 180ms ease, background-size 250ms ease;
}

.lead-story h1 a:hover,
.compact-story h2 a:hover,
.latest-story h3 a:hover,
.story-card h3 a:hover {
  color: var(--ink-soft);
  background-size: 100% 1px;
}

.story-dek,
.latest-story__copy > p:not(.story-layer),
.story-card > p,
.brief-card > p,
.depth-banner__intro > p,
.newsletter-panel__copy > p,
.footer-brand > p {
  font-family: var(--body);
  font-weight: 300;
}

.story-dek {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.under-note {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 11px 14px 11px 0;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  transition: background-color 180ms ease, padding-left 180ms ease;
}

.under-note:hover {
  padding-left: 12px;
  background: var(--blue-pale);
}

.under-note__label {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-inline: 13px;
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.under-note__text {
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.5;
}

.under-note__arrow {
  color: var(--blue);
  font-size: 18px;
}

.lead-sidebar {
  display: flex;
  flex-direction: column;
}

.brief-card {
  margin-bottom: 26px;
  padding: 27px;
  background: var(--wash);
  border: 1px solid var(--rule);
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--utility) !important;
  font-size: 10px;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #d8effa;
}

.brief-card h2 {
  margin-bottom: 9px;
  font-size: 24px;
  line-height: 1.35;
}

.brief-card > p:not(.eyebrow) {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.inline-signup {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid #d6d3cb;
  border-radius: 2px;
  background: white;
  color: var(--ink);
  font-size: 14px;
}

input::placeholder {
  color: var(--muted-light);
}

input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(7, 135, 202, 0.15);
}

.form-message {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--blue-deep);
  font-size: 12px;
}

.inline-signup .form-message {
  grid-column: 1 / -1;
}

.inline-signup .form-message:empty {
  display: none;
}

.compact-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 20px;
  align-items: center;
  padding-block: 18px;
  border-top: 1px solid var(--rule);
  transition: transform 200ms ease;
}

.compact-story:last-child {
  border-bottom: 1px solid var(--rule);
}

.compact-story:hover {
  transform: translateY(-3px);
}

.compact-story h2 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.45;
}

.compact-story__image {
  aspect-ratio: 1.25 / 1;
}

.compact-takeaway {
  margin: 0;
  color: var(--muted);
  font-family: var(--body);
  font-size: 10px;
  line-height: 1.55;
}

.depth-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(450px, 1.25fr);
  gap: 62px;
  padding: 38px 42px;
  background: var(--yellow);
  border: 1px solid var(--yellow-deep);
}

.depth-banner::after {
  position: absolute;
  top: -116px;
  right: -92px;
  width: 260px;
  height: 260px;
  border: 42px solid rgba(7, 135, 202, 0.1);
  border-radius: 50%;
  content: "";
}

.depth-banner__intro {
  position: relative;
  z-index: 1;
}

.depth-banner__intro h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.25;
}

.depth-banner__intro > p:not(.eyebrow) {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.depth-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.depth-step {
  position: relative;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px 19px;
}

.depth-step + .depth-step {
  border-left: 1px solid rgba(32, 32, 32, 0.28);
}

.depth-step span {
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.depth-step strong {
  max-width: 120px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  padding-block: 22px 18px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-heading .eyebrow {
  margin-bottom: 5px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 31px;
  line-height: 1.3;
}

.section-heading__note {
  max-width: 355px;
  margin-bottom: 2px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}

.section-heading--compact {
  margin-bottom: 34px;
}

.latest-list {
  display: grid;
}

.latest-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 42px;
  padding-block: 32px;
  border-bottom: 1px solid var(--rule);
}

.latest-story:first-child {
  padding-top: 0;
}

.latest-story__image {
  aspect-ratio: 3 / 2;
}

.latest-story__copy {
  align-self: center;
}

.latest-story h3 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.35;
}

.latest-story__copy > p:not(.story-layer) {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.story-layer {
  max-width: 620px;
  margin: 0;
  padding: 11px 0 0 14px;
  border-top: 1px solid var(--rule);
  border-left: 3px solid var(--blue);
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 12px;
  line-height: 1.55;
}

.story-layer span {
  display: block;
  margin-bottom: 3px;
  color: var(--blue);
  font-family: var(--utility);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.story-card {
  transition: transform 200ms ease;
}

.story-card:hover {
  transform: translateY(-3px);
}

.story-card__image {
  aspect-ratio: 3 / 2;
  margin-bottom: 18px;
}

.story-card h3 {
  margin-bottom: 11px;
  font-size: 21px;
  line-height: 1.45;
}

.story-card > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.empty-state {
  margin: 28px 0 0;
  padding: 28px;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--muted);
  font-family: var(--body);
  text-align: center;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(420px, 1.05fr);
  gap: 70px;
  align-items: end;
}

.newsletter-panel__copy h2 {
  max-width: 580px;
  margin-bottom: 13px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.2;
}

.newsletter-panel__copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.7;
}

.newsletter-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
}

.newsletter-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.form-message--light {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding-block: 64px 46px;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.65fr) repeat(3, minmax(120px, 0.65fr));
  gap: 50px;
}

.wordmark--footer {
  position: static;
  margin-bottom: 22px;
  transform: none;
  font-size: 25px;
}

.footer-brand > p {
  max-width: 390px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.footer-brand .copyright {
  margin: 28px 0 0;
  color: var(--muted-light);
  font-family: var(--utility);
  font-size: 10px;
}

.site-footer h2 {
  margin: 4px 0 15px;
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer > .footer-grid > div:not(.footer-brand) a {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer > .footer-grid > div:not(.footer-brand) p {
  color: var(--muted);
  font-family: var(--body);
  font-size: 11px;
  line-height: 1.85;
}

.article-page {
  padding-block: 58px 88px;
}

.article-header {
  max-width: 1080px;
}

.article-back {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.article-back:hover {
  color: var(--blue);
}

.article-meta {
  margin-bottom: 18px;
}

.article-header h1 {
  max-width: 1010px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.13;
}

.article-dek {
  max-width: 870px;
  margin-bottom: 44px;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 300;
  line-height: 1.7;
}

.article-hero {
  margin: 0 0 58px;
}

.article-hero img {
  width: 100%;
  max-height: 650px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-hero figcaption {
  max-width: 800px;
  margin-top: 12px;
  color: var(--muted-light);
  font-family: var(--body);
  font-size: 10px;
  line-height: 1.6;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 680px);
  gap: 74px;
  justify-content: center;
  align-items: start;
}

.article-rail {
  position: sticky;
  top: 150px;
}

.article-takeaway {
  margin-bottom: 26px;
  padding: 21px;
  border-top: 3px solid var(--blue);
  background: var(--yellow);
}

.article-takeaway > p:last-child {
  margin: 0;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.65;
}

.article-lens {
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.article-lens span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-lens p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.article-body p {
  margin-bottom: 25px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.article-body .article-opening {
  font-size: 19px;
  line-height: 1.85;
}

.article-body .article-opening::first-letter {
  float: left;
  margin: 10px 9px 0 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.7;
}

.article-rule {
  width: 74px;
  height: 1px;
  margin: 34px 0;
  background: var(--blue);
}

.article-close {
  margin-top: 42px !important;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  font-family: var(--utility) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-body .article-subhead {
  margin: 46px 0 18px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.article-body .article-subhead:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.article-pullquote {
  margin: 38px 0;
  padding: 4px 0 4px 26px;
  border-left: 3px solid var(--blue);
}

.article-pullquote blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
  line-height: 1.55;
}

.article-pullquote figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-sources {
  margin-top: 46px;
  padding: 28px 30px 30px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--wash);
}

.article-sources h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-sources .article-sources__note {
  margin: 10px 0 20px !important;
  color: var(--muted);
  font-family: var(--utility) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

.article-sources ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 13px;
  line-height: 1.6;
}

.article-sources li {
  margin-bottom: 12px;
}

.article-sources li:last-child {
  margin-bottom: 0;
}

.article-sources a {
  color: var(--blue-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(7, 135, 202, 0.35);
}

.article-sources a:hover {
  border-bottom-color: var(--blue-dark);
}

.article-sources li span {
  display: block;
  color: var(--muted-light);
  font-size: 12px;
}

.feed-card {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.feed-card__label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 8px;
  color: #ffffff;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feed-card__label svg {
  flex: none;
  fill: currentColor;
}

.feed-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--utility);
  font-size: 14px;
  line-height: 1.6;
}

.feed-card__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.feed-card__url {
  flex: 1 1 240px;
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  overflow-x: auto;
  white-space: nowrap;
}

.feed-card__actions {
  display: flex;
  gap: 10px;
}

.feed-copy {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  background: transparent;
  color: #ffffff;
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.feed-copy:hover {
  background: rgba(255, 255, 255, 0.16);
}

.feed-card__open {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 3px;
  background: #ffffff;
  color: var(--blue-deep);
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.feed-card__open:hover {
  background: var(--blue-pale);
}

.feed-card__note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
}

.footer-rss {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-rss svg {
  flex: none;
  fill: currentColor;
}

@media (max-width: 600px) {
  .article-body .article-subhead {
    font-size: 18px;
  }

  .article-pullquote blockquote {
    font-size: 18px;
  }

  .article-sources {
    padding: 22px 20px 24px;
  }

  .feed-card__row {
    flex-direction: column;
  }

  .feed-card__actions {
    justify-content: flex-start;
  }
}

.article-body .article-figure {
  margin: 40px 0;
  padding: 24px 26px 20px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper-warm);
}

.article-figure__head h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.article-body .article-figure__head p {
  margin: 8px 0 18px !important;
  color: var(--ink-soft);
  font-family: var(--utility) !important;
  font-size: 13.5px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

.article-figure__plot {
  position: relative;
  width: 100%;
}

.article-figure__source {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  color: var(--muted-light);
  font-family: var(--utility);
  font-size: 11.5px;
  line-height: 1.55;
}

.article-body .article-figure__fallback {
  margin: 0 !important;
  color: var(--muted);
  font-family: var(--utility) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.article-figure__image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.rank-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.rank-column h4 {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rank-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.rank-row__name {
  flex: none;
  width: 116px;
  overflow: hidden;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 13px;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row__track {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 18px;
  border-radius: 3px;
  background: #ece8e2;
  overflow: hidden;
}

.rank-row__fill {
  display: block;
  height: 100%;
  border-radius: 3px;
}

.rank-row__value {
  flex: none;
  width: 46px;
  font-family: var(--utility);
  font-size: 12.5px;
  font-weight: 700;
}

.article-body .rank-column__note {
  margin: 12px 0 0 !important;
  color: var(--muted-light);
  font-family: var(--utility) !important;
  font-size: 11.5px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

@media (min-width: 700px) {
  .rank-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .article-body .article-figure {
    padding: 20px 16px 16px;
  }

  .rank-row__name {
    width: 88px;
    font-size: 12px;
  }
}

/* Whole-card click targets.
   Previously only the image and the headline were links, so clicking the dek
   or the "below the headline" line — most of a card's surface — did nothing.
   The headline anchor is stretched over the card instead of wrapping it, which
   keeps one link per card for screen readers and keeps the markup unchanged. */
.lead-story,
.latest-story,
.compact-story,
.story-card {
  position: relative;
}

.lead-story h1 a::after,
.latest-story h3 a::after,
.compact-story h2 a::after,
.story-card h3 a::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
}

/* Keep the genuinely separate links above the stretched overlay. */
.lead-story .under-note,
.lead-story__image,
.latest-story__image,
.compact-story__image,
.story-card__image {
  position: relative;
  z-index: 2;
}

.related-section {
  border-top: 1px solid var(--rule);
  background: var(--wash);
}

.site-footer--article {
  padding-block: 42px;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.article-footer .wordmark {
  margin: 0;
}

.article-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--body);
  font-size: 10px;
}

.search-dialog {
  width: min(640px, calc(100% - 32px));
  margin: auto;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(32, 32, 32, 0.22);
  color: var(--ink);
}

.search-dialog::backdrop {
  background: rgba(32, 32, 32, 0.64);
  backdrop-filter: blur(3px);
}

.search-dialog__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 28px 30px 23px;
  border-bottom: 1px solid var(--rule);
}

.search-dialog__header h2 {
  margin: 0;
  font-size: 26px;
}

.search-form {
  padding: 27px 30px 18px;
}

.search-form label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
}

.search-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.search-help {
  margin: 0;
  padding: 0 30px 27px;
  color: var(--muted-light);
  font-family: var(--body);
  font-size: 11px;
}

.filterable-story {
  animation: story-in 620ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.filterable-story.search-hit {
  animation: search-pulse 800ms ease 2;
}

@keyframes story-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes search-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(7, 135, 202, 0);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(7, 135, 202, 0.18);
  }
}

@media (max-width: 1080px) {
  :root {
    --gutter: 36px;
  }

  .primary-nav {
    gap: 15px;
  }

  .lead-grid {
    gap: 34px;
  }

  .compact-story {
    grid-template-columns: minmax(0, 1fr) 102px;
    gap: 15px;
  }

  .depth-banner {
    gap: 35px;
  }
}

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

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

  .brief-card {
    display: none;
  }

  .compact-story {
    grid-template-columns: 1fr;
    align-content: start;
    padding-block: 0;
    border-top: 0;
  }

  .compact-story:last-child {
    border-bottom: 0;
  }

  .compact-story__image {
    grid-row: 1;
    aspect-ratio: 3 / 2;
    margin-bottom: 15px;
  }

  .compact-story__copy {
    grid-row: 2;
  }

  .compact-takeaway {
    font-size: 11px;
  }

  .depth-banner {
    grid-template-columns: 1fr;
  }

  .newsletter-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 0.6fr);
    gap: 28px;
  }

  .article-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 45px;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 28px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
  }

  .wordmark {
    position: static;
    transform: none;
    font-size: 21px;
  }

  .primary-nav {
    position: absolute;
    inset: 70px 0 auto;
    z-index: 20;
    height: calc(100vh - 70px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 32px var(--gutter);
    overflow-y: auto;
    background: var(--paper);
    font-family: var(--display);
    font-size: 25px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding-block: 18px;
    border-bottom: 1px solid var(--rule);
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .button--small {
    display: none;
  }

  .category-rail {
    display: none;
  }

  .section {
    padding-block: 58px;
  }

  .section--lead {
    padding-block: 30px 52px;
  }

  .section--no-top {
    padding-top: 0;
  }

  .lead-sidebar {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .compact-story {
    grid-template-columns: minmax(0, 1fr) 118px;
    grid-template-rows: auto;
    padding-block: 18px;
    border-top: 1px solid var(--rule);
  }

  .compact-story:last-child {
    border-bottom: 1px solid var(--rule);
  }

  .compact-story__image {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    aspect-ratio: 1.2 / 1;
  }

  .compact-story__copy {
    grid-column: 1;
    grid-row: 1;
  }

  .depth-banner {
    padding: 31px 27px;
  }

  .depth-steps {
    grid-template-columns: 1fr;
  }

  .depth-step {
    min-height: 82px;
  }

  .depth-step + .depth-step {
    border-top: 1px solid rgba(32, 32, 32, 0.28);
    border-left: 0;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading__note {
    max-width: 250px;
  }

  .latest-story {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .latest-story__image {
    aspect-ratio: 16 / 9;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
  }

  .article-page {
    padding-block: 38px 64px;
  }

  .article-back {
    margin-bottom: 30px;
  }

  .article-header h1 {
    font-size: clamp(35px, 8vw, 52px);
  }

  .article-hero {
    margin-bottom: 40px;
  }

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

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

  .article-rail {
    position: static;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 18px;
  }

  .article-takeaway {
    margin: 0;
  }

  .article-lens {
    padding: 16px;
    border: 1px solid var(--rule);
  }

  .article-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 20px;
  }

  .announcement__inner span:first-child {
    display: none;
  }

  .lead-story h1 {
    font-size: 30px;
  }

  .image-link__cue {
    display: none;
  }

  .under-note {
    grid-template-columns: 1fr auto;
    padding: 14px;
  }

  .under-note__label {
    grid-column: 1 / -1;
    align-self: auto;
    justify-self: start;
    padding: 4px 7px;
  }

  .compact-story {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 14px;
  }

  .compact-takeaway {
    display: none;
  }

  .depth-banner {
    padding: 28px 22px;
  }

  .section-heading {
    display: block;
  }

  .section-heading__note {
    margin-top: 12px;
    text-align: left;
  }

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

  .newsletter-form__row,
  .inline-signup,
  .search-form__row {
    grid-template-columns: 1fr;
  }

  .newsletter-form__row .button,
  .inline-signup .button,
  .search-form__row .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
  }

  .search-dialog__header,
  .search-form {
    padding-inline: 21px;
  }

  .search-help {
    padding-inline: 21px;
  }

  .article-header h1 {
    font-size: 34px;
  }

  .article-dek {
    margin-bottom: 30px;
    font-size: 16px;
  }

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

  .article-body p,
  .article-body .article-opening {
    font-size: 15px;
    line-height: 1.85;
  }
}

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