@font-face {
  font-family: "Archivo Narrow";
  src: url("../fonts/ArchivoNarrow-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/SourceSans3-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --graphite: #111315;
  --paper: #f7f7f2;
  --white: #ffffff;
  --muted: #687078;
  --line: #d2d5d3;
  --soft: #ecece7;
  --blue: #1467d8;
  --blue-on-dark: #73a7ff;
  --turquoise: #1b9aaa;
  --green: #2e7d5b;
  --gold: #c69214;
  --wine: #8e3143;
  --content: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  background: var(--graphite);
  color: var(--paper);
  transform: translateY(-180%);
}

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

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

.utility-bar {
  background: var(--graphite);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.utility-bar .shell {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.utility-label::before {
  width: 9px;
  height: 9px;
  background: var(--blue);
  content: "";
}

.utility-links {
  display: flex;
  gap: 18px;
}

.utility-links a {
  color: var(--paper);
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgb(247 247 242 / 96%);
  border-bottom: 1px solid var(--graphite);
  backdrop-filter: blur(8px);
}

.primary-nav {
  min-height: 86px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: block;
  width: 230px;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 3px;
}

.nav-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border: 1px solid var(--graphite);
  background: transparent;
  font-weight: 800;
  text-decoration: none;
}

.nav-action:hover {
  background: var(--graphite);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--graphite);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--graphite);
}

.edition-strip {
  border-bottom: 1px solid var(--line);
}

.edition-strip .shell {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  white-space: nowrap;
}

.edition-name {
  padding-right: 18px;
  border-right: 1px solid var(--graphite);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  text-transform: uppercase;
}

.edition-status {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.lead-band {
  padding: 32px 0 46px;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(280px, 0.95fr);
  gap: 38px;
  align-items: start;
}

.lead-story figure {
  position: relative;
  margin: 0 0 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--graphite);
}

.lead-story figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--blue);
  content: "";
}

.lead-story figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-meta,
.update-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 3px 8px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.status-confirmed {
  background: var(--green);
}

.status-investigating {
  background: var(--gold);
  color: var(--graphite);
}

.status-updated {
  background: var(--wine);
}

.status-demo {
  background: var(--blue);
}

.lead-story h1 {
  max-width: 930px;
  margin: 0 0 14px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.lead-summary {
  max-width: 850px;
  margin: 0;
  color: #3f454a;
  font-size: 1.24rem;
  line-height: 1.45;
}

.story-source {
  margin-top: 17px;
  font-size: 0.88rem;
  font-weight: 700;
}

.latest-panel {
  border-top: 8px solid var(--graphite);
}

.panel-heading {
  margin: 0;
  padding: 13px 0 12px;
  border-bottom: 1px solid var(--graphite);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.update-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.update-item {
  padding: 19px 0 20px;
  border-bottom: 1px solid var(--line);
}

.update-item h2 {
  margin: 0;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.update-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.editorial-rule {
  background: var(--graphite);
  color: var(--paper);
}

.editorial-rule .shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.rule-label {
  color: var(--blue-on-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rule-text {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.rule-link {
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 800;
}

.section-band {
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--graphite);
}

.section-heading h2 {
  margin: 0;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 2.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

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

.desk-card {
  min-height: 228px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 9px solid var(--desk-color);
  background: var(--white);
}

.desk-card h3 {
  margin: 0 0 30px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.desk-state {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.desk-description {
  margin: 0;
  color: #4b5156;
  font-size: 0.98rem;
}

.format-band {
  background: var(--graphite);
  color: var(--paper);
}

.format-band .section-heading {
  border-color: var(--paper);
}

.format-band .section-heading p {
  color: #bfc3c0;
}

.format-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1px;
  background: #41464a;
  border: 1px solid #41464a;
}

.format-item {
  min-height: 235px;
  padding: 28px;
  background: var(--graphite);
}

.format-kicker {
  display: block;
  margin-bottom: 28px;
  color: var(--blue-on-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.format-item h3 {
  margin: 0 0 12px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 2.15rem;
  line-height: 1;
  text-transform: uppercase;
}

.format-item p {
  max-width: 38ch;
  margin: 0;
  color: #cdd0ce;
}

.audio-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.audio-title {
  margin: 0 0 15px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 3.4rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.audio-copy {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.feed-status {
  padding: 20px 0;
  border-top: 8px solid var(--turquoise);
  border-bottom: 1px solid var(--graphite);
}

.feed-status strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.feed-status span {
  color: var(--muted);
}

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

.transparency-item {
  padding-top: 18px;
  border-top: 6px solid var(--item-color, var(--graphite));
}

.transparency-item h3 {
  margin: 0 0 9px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.transparency-item p {
  margin: 0 0 12px;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0 24px;
  background: var(--graphite);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 48px;
}

.footer-brand {
  width: 220px;
  height: auto;
  margin-bottom: 18px;
  padding: 10px 14px;
  background: var(--paper);
}

.footer-note {
  max-width: 52ch;
  color: #bfc3c0;
}

.footer-column h2 {
  margin: 0 0 12px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li + li {
  margin-top: 7px;
}

.footer-column a {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid #454a4e;
  color: #aeb3b0;
  font-size: 0.82rem;
}

.policy-main {
  padding: 52px 0 80px;
}

.policy-header {
  max-width: 930px;
  margin-bottom: 46px;
  padding-bottom: 28px;
  border-bottom: 8px solid var(--accent, var(--graphite));
}

.policy-kicker {
  margin: 0 0 12px;
  color: var(--accent, var(--blue));
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-header h1 {
  margin: 0 0 16px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 4rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.policy-header p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 70px;
  align-items: start;
}

.policy-content {
  max-width: 780px;
}

.policy-content h2 {
  margin: 42px 0 12px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: #3f454a;
}

.policy-content li + li {
  margin-top: 8px;
}

.policy-aside {
  padding-top: 16px;
  border-top: 6px solid var(--accent, var(--graphite));
}

.policy-aside strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.policy-aside p {
  margin: 0 0 14px;
  color: var(--muted);
}

.link-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--graphite);
  background: var(--graphite);
}

.directory-item {
  min-height: 150px;
  padding: 24px;
  background: var(--paper);
}

.directory-item h2 {
  margin: 0 0 8px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.directory-state {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .primary-nav {
    grid-template-columns: 220px auto auto;
  }

  .brand {
    width: 205px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: 86px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 22px;
    border: 1px solid var(--graphite);
    background: var(--paper);
    flex-direction: column;
    gap: 14px;
  }

  .nav-links[data-open="true"] {
    display: flex;
  }

  .nav-action {
    justify-self: end;
  }

  .lead-grid {
    grid-template-columns: 1.6fr 0.8fr;
  }

  .lead-story h1 {
    font-size: 3.25rem;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .utility-bar .shell {
    min-height: 38px;
  }

  .utility-links {
    display: none;
  }

  .primary-nav {
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand {
    width: 176px;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-action {
    display: none;
  }

  .nav-links {
    top: 70px;
    right: 14px;
    left: 14px;
  }

  .edition-strip .shell {
    min-height: 44px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    overflow-x: visible;
    padding-block: 7px;
    white-space: normal;
  }

  .edition-name {
    padding-right: 0;
    border-right: 0;
  }

  .lead-band {
    padding-top: 20px;
  }

  .lead-grid,
  .audio-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .lead-grid {
    gap: 36px;
  }

  .lead-story h1,
  .policy-header h1 {
    font-size: 2.55rem;
  }

  .lead-summary {
    font-size: 1.06rem;
  }

  .editorial-rule .shell {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-block: 18px;
  }

  .rule-text {
    font-size: 1.35rem;
  }

  .section-band {
    padding: 44px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }

  .desk-grid,
  .format-grid,
  .transparency-grid,
  .footer-grid,
  .link-directory {
    grid-template-columns: 1fr;
  }

  .format-item {
    min-height: auto;
  }

  .audio-layout {
    gap: 30px;
  }

  .audio-title {
    font-size: 2.6rem;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
