:root {
  --red: #e60000;
  --red-deep: #ac1811;
  --charcoal: #25282b;
  --grey: #7e7e7e;
  --light: #f2f2f2;
  --white: #ffffff;
  --blue: #3860be;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  align-items: center;
  background: transparent;
  color: var(--white);
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 34px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, color 180ms ease;
  z-index: 20;
}

.site-header.is-solid,
.site-header.is-open {
  background: var(--white);
  color: var(--charcoal);
  border-bottom: 1px solid rgba(37, 40, 43, 0.1);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 154px;
}

.brand-mark {
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  height: 40px;
  position: relative;
  width: 40px;
}

.brand-mark::before {
  background: var(--white);
  border-radius: 60% 60% 60% 0;
  content: "";
  height: 17px;
  left: 12px;
  position: absolute;
  top: 8px;
  transform: rotate(-22deg);
  width: 17px;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
}

.site-logo {
  display: block;
  height: 42px;
  max-width: 220px;
  object-fit: contain;
  width: auto;
}

.footer-brand .site-logo {
  height: 46px;
}

.primary-nav {
  display: flex;
  gap: 24px;
}

.primary-nav a {
  font-size: 16px;
  line-height: 1;
  position: relative;
  transition: color 180ms ease;
}

.primary-nav a::after {
  background: var(--red);
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--red);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.icon-button,
.menu-button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 50%;
  color: var(--charcoal);
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.site-header.is-solid .icon-button,
.site-header.is-open .icon-button,
.site-header.is-solid .menu-button,
.site-header.is-open .menu-button {
  border-color: rgba(37, 40, 43, 0.18);
}

.has-search-open {
  overflow: hidden;
}

.search-overlay {
  align-items: start;
  background: rgba(37, 40, 43, 0.62);
  bottom: 0;
  display: none;
  left: 0;
  padding: calc(var(--header-height) + 24px) 6vw 32px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.search-overlay.is-open {
  display: flex;
}

.search-panel {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 20px;
  margin: 0 auto;
  max-height: calc(100vh - var(--header-height) - 56px);
  max-width: 760px;
  overflow: auto;
  padding: 28px;
  width: 100%;
}

.search-panel header {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.search-panel h2 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1;
  margin: 0;
}

.search-close {
  background: var(--charcoal);
  border: 0;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 26px;
  height: 40px;
  line-height: 1;
  width: 40px;
}

.search-input-wrap {
  display: grid;
  gap: 8px;
}

.search-input-wrap span {
  color: var(--grey);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-input-wrap input {
  border: 1px solid rgba(37, 40, 43, 0.2);
  border-radius: 5px;
  font: inherit;
  font-size: 18px;
  min-height: 52px;
  padding: 12px 14px;
}

.search-input-wrap input:focus {
  border-color: rgba(232, 0, 0, 0.62);
  box-shadow: 0 0 0 4px rgba(232, 0, 0, 0.1);
  outline: none;
}

.search-message {
  color: var(--grey);
  font-size: 14px;
  margin: -4px 0 0;
}

.search-results {
  display: grid;
  gap: 10px;
}

.search-result {
  border: 1px solid rgba(37, 40, 43, 0.1);
  border-radius: 6px;
  color: var(--charcoal);
  display: grid;
  gap: 6px;
  padding: 14px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.search-result:hover {
  border-color: rgba(232, 0, 0, 0.36);
  transform: translateY(-1px);
}

.search-result span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-result strong {
  font-size: 18px;
  line-height: 1.18;
}

.search-result p {
  color: var(--grey);
  line-height: 1.45;
  margin: 0;
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.menu-button span {
  background: currentColor;
  display: block;
  height: 2px;
  width: 18px;
}

.mobile-nav {
  background: var(--white);
  border-bottom: 1px solid rgba(37, 40, 43, 0.1);
  display: none;
  left: 0;
  padding: 74px 24px 18px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 15;
}

.mobile-nav a {
  border-top: 1px solid rgba(37, 40, 43, 0.1);
  display: block;
  font-size: 18px;
  padding: 16px 0;
  transition: color 180ms ease, padding-left 180ms ease;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--red);
  padding-left: 8px;
}

.hero {
  align-items: end;
  background-image: var(--hero-bg, url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=1800&q=85"));
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: 92vh;
  padding: 120px 6vw 78px;
  position: relative;
}

.hero-media {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
}

.hero-media iframe {
  border: 0;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 177.78vh;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
}

.hero::before {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.hero-copy {
  max-width: 980px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(56px, 12vw, 144px);
  font-weight: 800;
  line-height: 0.86;
  margin: 0;
  max-width: 1020px;
  text-transform: uppercase;
}

.hero p:not(.eyebrow) {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
  margin: 24px 0 0;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
}

.pill-red {
  background: var(--red);
  border-radius: 60px;
  color: var(--white);
  padding: 16px 20px;
}

.glass-pill {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: var(--white);
  padding: 8px 16px;
}

.white-rect {
  background: var(--white);
  border-color: var(--white);
  border-radius: 2px;
  color: var(--charcoal);
  padding: 12px 14px;
}

.rect-red {
  background: var(--red);
  border-color: var(--red);
  border-radius: 2px;
  color: var(--white);
  padding: 12px 14px;
}

.content-pill {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 60px;
  color: var(--red);
  padding: 15px 18px;
}

.breaking-strip {
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  gap: 22px;
  overflow: hidden;
  padding: 14px 6vw;
}

.breaking-strip strong {
  background: var(--red);
  border-radius: 2px;
  font-size: 12px;
  padding: 8px 10px;
}

.ticker {
  align-items: center;
  display: flex;
  gap: 34px;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.ticker-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.ticker span {
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
}

.ticker span.is-highlight {
  background: var(--red);
  border-radius: 2px;
  color: var(--white);
  font-weight: 800;
  padding: 7px 10px;
}

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

.red-band {
  align-items: center;
  background: var(--red);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 48px 6vw;
}

.red-band h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
  max-width: 900px;
}

.section {
  padding: 72px 6vw;
}

.ad-band {
  background: var(--white);
  padding: 34px 6vw 0;
}

.ad-band-footer {
  padding: 0 6vw 44px;
}

.ad-slot {
  align-items: center;
  background: var(--light);
  border: 1px solid rgba(37, 40, 43, 0.14);
  border-radius: 2px;
  color: var(--charcoal);
  display: grid;
  gap: 6px;
  justify-items: center;
  margin: 0 auto;
  min-height: 120px;
  max-width: 970px;
  padding: 18px;
  text-align: center;
}

.ad-slot span {
  color: var(--grey);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.ad-slot strong {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1;
}

.ad-slot p {
  color: var(--grey);
  font-size: 13px;
  margin: 0;
}

.ad-creative {
  display: block;
  height: 100%;
  width: 100%;
}

.ad-creative img {
  display: block;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  width: 100%;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.data-panel h2,
.newsletter h2,
.feature-block h2 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
}

.row-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.section-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.section-tabs a,
.tag {
  border: 1px solid var(--red);
  border-radius: 60px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 10px;
}

.top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 28px;
}

.top-grid .section-heading {
  grid-column: 1 / -1;
}

.lead-story,
.news-card,
.text-card,
.newsletter {
  background: var(--white);
  border-radius: 6px;
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  overflow: hidden;
}

.lead-story img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.lead-story-copy {
  align-content: end;
  background: var(--light);
  display: grid;
  padding: 32px;
}

.lead-story h3,
.text-card h3 {
  font-size: clamp(28px, 3.3vw, 40px);
  line-height: 1.1;
  margin: 12px 0;
}

.lead-story p,
.text-card p,
.feature-block p,
.newsletter p {
  color: var(--grey);
  font-size: 18px;
  line-height: 1.56;
  margin: 0;
}

.meta-row {
  align-items: center;
  color: var(--grey);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 10px;
}

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

.text-card {
  border-radius: 0 6px 0 0;
  padding: 28px;
}

.hot-card {
  background: var(--charcoal);
  color: var(--white);
}

.hot-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.hot-card li {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
  padding: 14px;
  width: 100%;
}

.hot-card li.is-highlight {
  background: var(--red);
  border-radius: 4px;
  color: var(--white);
}

.hot-card li a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
}

.hot-card li span {
  color: var(--white);
  font-weight: 700;
  margin-right: 8px;
}

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

.news-card {
  overflow: hidden;
}

.news-card img {
  aspect-ratio: 16 / 9;
  border-radius: 6px 6px 0 0;
  object-fit: cover;
}

.card-body {
  padding: 16px 16px 20px;
}

.card-body h3 {
  font-size: 24px;
  line-height: 1.08;
  margin: 12px 0 0;
}

.data-panel {
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
}

.vertical-label {
  align-items: center;
  color: var(--red);
  display: flex;
  font-size: clamp(42px, 8vw, 70px);
  font-weight: 800;
  justify-content: center;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.data-content {
  padding: 64px 6vw 64px 4vw;
}

.metric-updated {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.4;
  margin: 12px 0 0;
}

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

.metric-grid article {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0 24px;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.64);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.metric-grid strong {
  display: block;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.metric-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  margin: 14px 0 0;
}

.split-section {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
}

.feature-block {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
}

.feature-block img {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.feature-block .button {
  margin-top: 22px;
}

.newsletter {
  background: var(--light);
  padding: 30px;
}

.newsletter form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.newsletter label {
  color: var(--charcoal);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.newsletter-consent {
  align-items: start;
  display: flex;
  gap: 10px;
  line-height: 1.35;
  margin: 2px 0 0;
}

.newsletter-consent input {
  accent-color: var(--red);
  flex: 0 0 auto;
  margin-top: 2px;
}

.newsletter-consent label {
  cursor: pointer;
  display: block;
  line-height: 1.35;
  margin: 0;
  text-transform: none;
}

.newsletter-privacy,
.newsletter-message {
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.newsletter-privacy {
  color: var(--grey);
}

.newsletter-message {
  color: var(--red);
  font-weight: 700;
  min-height: 19px;
}

.newsletter-message[data-status="success"] {
  color: #126b33;
}

.newsletter-message[data-status="info"] {
  color: var(--charcoal);
}

.form-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.form-row input {
  border: 1px solid #333333;
  border-radius: 2px;
  min-height: 44px;
  min-width: 0;
  padding: 12px 10px;
}

.site-footer {
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.5fr);
  padding: 44px 6vw;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  margin: 18px 0 0;
  max-width: 360px;
}

.footer-links {
  display: grid;
  gap: 26px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-size: 14px;
  line-height: 1.35;
  margin-top: 10px;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-links h2 {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.footer-links-expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.static-page {
  background: #f7f7f4;
  color: var(--charcoal);
}

.static-page .site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(37, 40, 43, 0.1);
  color: var(--charcoal);
}

.static-main {
  padding-top: var(--header-height);
}

.static-hero {
  margin: 0 auto;
  max-width: 980px;
  padding: 76px 24px 34px;
}

.static-hero h1 {
  font-size: clamp(42px, 7vw, 92px);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 12px 0 20px;
}

.static-hero p:not(.eyebrow) {
  color: var(--grey);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  margin: 0;
  max-width: 760px;
}

.static-content {
  display: grid;
  gap: 22px;
  margin: 0 auto;
  max-width: 900px;
  padding: 0 24px 86px;
}

.static-card {
  background: var(--white);
  border: 1px solid rgba(37, 40, 43, 0.1);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
}

.static-card h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  margin: 0 0 16px;
}

.static-card h3 {
  font-size: 20px;
  line-height: 1.18;
  margin: 0 0 10px;
}

.static-card p,
.static-card li {
  color: #55585b;
  font-size: 17px;
  line-height: 1.72;
}

.static-card p {
  margin: 0 0 16px;
}

.static-card p:last-child,
.static-card ul:last-child {
  margin-bottom: 0;
}

.static-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

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

.contact-grid .static-card {
  background: #fafafa;
  padding: 24px;
}

.static-card a {
  color: var(--red);
  font-weight: 800;
}

.static-action {
  align-items: center;
  background: var(--red);
  border-radius: 999px;
  color: var(--white) !important;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-transform: uppercase;
}

.legal-note {
  background: rgba(230, 0, 0, 0.08);
  border-left: 4px solid var(--red);
  color: #4c4f52;
  font-size: 15px;
  line-height: 1.62;
  margin-top: 18px;
  padding: 16px 18px;
}

.cookie-settings-placeholder {
  border: 1px dashed rgba(37, 40, 43, 0.28);
  border-radius: 8px;
  color: var(--grey);
  margin-top: 18px;
  padding: 18px;
}

.article-page .site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(37, 40, 43, 0.1);
  color: var(--charcoal);
}

.article-shell {
  padding-top: var(--header-height);
}

.article-hero {
  margin: 0 auto;
  max-width: 1040px;
  padding: 58px 6vw 34px;
}

.article-back {
  color: var(--red);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.article-kicker,
.byline {
  align-items: center;
  color: var(--grey);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 10px;
}

.article-hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 800;
  line-height: 0.96;
  margin: 20px 0 22px;
  max-width: 980px;
  text-transform: uppercase;
}

.article-hero > p {
  color: var(--charcoal);
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.36;
  margin: 0 0 24px;
  max-width: 780px;
}

.article-main-image {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 6vw;
}

.article-main-image img {
  aspect-ratio: 16 / 8;
  border-radius: 6px;
  object-fit: cover;
}

.article-main-image figcaption {
  color: var(--grey);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 10px;
}

.article-layout {
  display: grid;
  gap: 46px;
  grid-template-columns: 170px minmax(0, 720px);
  justify-content: center;
  padding: 54px 6vw 72px;
}

.article-tools {
  align-self: start;
  display: grid;
  gap: 10px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.article-tools a {
  border-left: 2px solid rgba(37, 40, 43, 0.15);
  color: var(--grey);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 0 8px 12px;
}

.article-tools a:hover {
  border-left-color: var(--red);
  color: var(--red);
}

.article-body {
  min-width: 0;
}

.article-body p {
  font-size: 19px;
  line-height: 1.72;
  margin: 0 0 24px;
}

.article-body .article-lede {
  color: var(--charcoal);
  font-size: 22px;
  line-height: 1.5;
}

.article-body h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  margin: 44px 0 18px;
}

.article-body blockquote {
  border-left: 6px solid var(--red);
  color: var(--charcoal);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.16;
  margin: 42px 0;
  padding-left: 24px;
}

.article-callout {
  background: var(--charcoal);
  border-radius: 0 6px 0 0;
  color: var(--white);
  margin: 40px 0;
  padding: 28px;
}

.article-callout h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 36px);
  margin: 0 0 14px;
}

.article-callout p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.article-ad {
  padding: 34px 6vw 0;
}

.article-ad-inline {
  padding: 22px 0 42px;
}

.article-ad-inline .ad-slot {
  max-width: 728px;
  min-height: 90px;
}

.related-section {
  border-top: 1px solid rgba(37, 40, 43, 0.12);
  padding: 62px 6vw 72px;
}

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

@media (max-width: 1160px) {
  .primary-nav {
    gap: 14px;
  }

  .primary-nav a {
    font-size: 14px;
  }
}

.category-page .site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(37, 40, 43, 0.1);
  color: var(--charcoal);
}

.category-header {
  background:
    linear-gradient(rgba(25, 25, 25, 0.68), rgba(25, 25, 25, 0.68)),
    var(--category-bg, linear-gradient(var(--charcoal), var(--charcoal)));
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: calc(var(--header-height) + 58px) 6vw 58px;
  position: relative;
}

.category-header::before {
  background: rgba(20, 20, 20, 0.22);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.category-header > * {
  position: relative;
  z-index: 1;
}

.category-header h1 {
  font-size: clamp(58px, 12vw, 126px);
  font-weight: 800;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.category-header p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  margin: 22px 0 0;
  max-width: 720px;
}

.category-top-ad {
  background: var(--light);
  padding-bottom: 34px;
}

.category-layout {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) 300px;
  padding: 48px 6vw 72px;
}

.category-main {
  min-width: 0;
}

.category-featured {
  border-bottom: 3px solid var(--red);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 0.82fr) minmax(260px, 1fr);
  padding-bottom: 28px;
}

.category-featured img {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
}

.category-featured-copy {
  align-content: center;
  display: grid;
}

.category-featured h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.08;
  margin: 14px 0;
}

.category-featured p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 18px;
}

.article-list {
  display: grid;
}

.article-list-item {
  border-bottom: 1px solid rgba(37, 40, 43, 0.14);
  display: grid;
  gap: 18px;
  grid-template-columns: 168px minmax(0, 1fr);
  padding: 22px 0;
}

.article-list-item img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.article-list-item h3 {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.18;
  margin: 9px 0;
}

.article-list-item p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.category-empty-state {
  border-bottom: 1px solid rgba(37, 40, 43, 0.14);
  padding: 34px 0;
}

.category-empty-state h3 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.12;
  margin: 0 0 12px;
}

.category-empty-state p,
.sidebar-empty {
  color: var(--grey);
  line-height: 1.5;
  margin: 0;
}

.category-list-ad {
  padding: 28px 0 4px;
}

.category-list-ad .ad-slot {
  max-width: 728px;
  min-height: 90px;
}

.category-sidebar {
  display: grid;
  gap: 28px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.sidebar-panel {
  background: var(--charcoal);
  border-radius: 0 6px 0 0;
  color: var(--white);
  padding: 24px;
}

.sidebar-list {
  display: grid;
  margin-top: 10px;
}

.sidebar-list a {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  gap: 10px;
  grid-template-columns: 28px minmax(0, 1fr);
  padding: 16px 0;
}

.sidebar-list span {
  color: var(--red);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.sidebar-list strong {
  font-size: 16px;
  line-height: 1.25;
}

.sidebar-ad .ad-slot {
  max-width: none;
  min-height: 420px;
}

@media (max-width: 960px) {
  .primary-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .top-grid,
  .lead-story,
  .split-section,
  .feature-block {
    grid-template-columns: 1fr;
  }

  .lead-story img {
    min-height: 280px;
  }

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

  .article-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

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

  .category-featured {
    grid-template-columns: 1fr;
  }

  .category-sidebar {
    position: static;
  }

  .sidebar-ad .ad-slot {
    min-height: 160px;
  }

  .article-tools {
    border-bottom: 1px solid rgba(37, 40, 43, 0.12);
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 12px;
    position: static;
  }

  .article-tools a {
    border: 1px solid rgba(37, 40, 43, 0.15);
    border-radius: 60px;
    flex: 0 0 auto;
    padding: 8px 12px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 56px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    height: 34px;
    width: 34px;
  }

  .brand-mark::before {
    height: 15px;
    left: 10px;
    top: 7px;
    width: 15px;
  }

  .brand-name {
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
  }

  .site-logo {
    height: 36px;
    max-width: 176px;
  }

  .header-actions {
    gap: 8px;
  }

  .icon-button,
  .menu-button {
    height: 36px;
    width: 36px;
  }

  .hero {
    min-height: 82vh;
    padding: 92px 20px 42px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 64px);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .hero p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.48;
    margin-top: 18px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .red-band,
  .site-footer,
  .row-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .breaking-strip {
    gap: 12px;
    padding: 12px 20px;
  }

  .breaking-strip strong {
    flex: 0 0 auto;
    font-size: 11px;
    padding: 7px 9px;
  }

  .ticker {
    gap: 26px;
  }

  .ticker span {
    font-size: 13px;
  }

  .red-band {
    gap: 22px;
    padding: 38px 20px;
  }

  .red-band h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .red-band .button {
    width: 100%;
  }

  .section,
  .data-content {
    padding: 46px 20px;
  }

  .ad-band {
    padding: 28px 20px 0;
  }

  .ad-band-footer {
    padding: 0 20px 32px;
  }

  .ad-slot {
    min-height: 92px;
    padding: 14px;
  }

  .ad-slot strong {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .data-panel h2,
  .newsletter h2,
  .feature-block h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .eyebrow {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .card-grid,
  .metric-grid,
  .form-row,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .lead-story img {
    min-height: 220px;
  }

  .lead-story-copy,
  .text-card,
  .newsletter {
    padding: 22px;
  }

  .lead-story h3,
  .text-card h3 {
    font-size: 26px;
    line-height: 1.14;
  }

  .lead-story p,
  .text-card p,
  .feature-block p,
  .newsletter p {
    font-size: 16px;
    line-height: 1.5;
  }

  .card-grid {
    gap: 22px;
  }

  .card-body {
    padding: 14px 0 6px;
  }

  .news-card {
    border-bottom: 1px solid rgba(37, 40, 43, 0.12);
    border-radius: 0;
    padding-bottom: 18px;
  }

  .news-card img {
    border-radius: 6px;
  }

  .card-body h3 {
    font-size: 22px;
    line-height: 1.15;
  }

  .section-tabs {
    gap: 7px;
    width: 100%;
  }

  .section-tabs a,
  .tag {
    font-size: 13px;
  }

  .data-panel {
    grid-template-columns: 1fr;
  }

  .vertical-label {
    align-items: flex-start;
    font-size: 42px;
    justify-content: flex-start;
    padding: 30px 20px 0;
    writing-mode: horizontal-tb;
  }

  .metric-grid article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 20px 0 0;
  }

  .metric-grid strong {
    font-size: 34px;
  }

  .feature-block {
    gap: 22px;
  }

  .feature-block img {
    aspect-ratio: 16 / 10;
  }

	  .form-row .button,
	  .form-row input {
	    width: 100%;
	  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .search-overlay {
    padding: 82px 16px 18px;
  }

  .search-panel {
    max-height: calc(100vh - 100px);
    padding: 20px;
  }

	  .site-footer {
    padding: 38px 20px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .static-hero {
    padding: 46px 20px 24px;
  }

  .static-content {
    gap: 16px;
    padding: 0 20px 58px;
  }

  .static-card {
    padding: 22px;
  }

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

  .contact-grid .static-card {
    padding: 20px;
  }

  .article-shell {
    padding-top: var(--header-height);
  }

  .article-hero {
    padding: 34px 20px 24px;
  }

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

  .article-kicker,
  .byline {
    align-items: flex-start;
    flex-direction: column;
    font-size: 13px;
    gap: 8px;
  }

  .article-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1;
    margin: 18px 0;
    overflow-wrap: anywhere;
  }

  .article-hero > p {
    font-size: 18px;
    line-height: 1.48;
  }

  .article-main-image {
    padding: 0;
  }

  .article-main-image img {
    aspect-ratio: 4 / 3;
    border-radius: 0;
  }

  .article-main-image figcaption {
    padding: 0 20px;
  }

  .article-ad {
    padding: 26px 20px 0;
  }

  .article-layout {
    gap: 28px;
    padding: 34px 20px 48px;
  }

  .article-tools {
    margin: 0 -20px;
    padding: 0 20px 12px;
  }

  .article-body p {
    font-size: 18px;
    line-height: 1.68;
    margin-bottom: 22px;
  }

  .article-body .article-lede {
    font-size: 19px;
    line-height: 1.55;
  }

  .article-body h2 {
    font-size: 28px;
    line-height: 1.16;
    margin: 34px 0 16px;
  }

  .article-body blockquote {
    border-left-width: 4px;
    font-size: 25px;
    margin: 34px 0;
    padding-left: 16px;
  }

  .article-callout {
    margin: 32px 0;
    padding: 22px;
  }

  .article-callout h2 {
    font-size: 26px;
  }

  .article-ad-inline {
    padding: 12px 0 32px;
  }

  .related-section {
    padding: 44px 20px 52px;
  }

  .category-header {
    padding: calc(var(--header-height) + 36px) 20px 38px;
  }

  .category-header h1 {
    font-size: clamp(44px, 16vw, 68px);
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  .category-header p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.48;
  }

  .category-top-ad {
    padding-bottom: 28px;
  }

  .category-layout {
    gap: 34px;
    padding: 42px 20px 54px;
  }

  .category-featured {
    gap: 20px;
    grid-template-columns: 1fr;
    padding-bottom: 28px;
  }

  .category-featured img {
    aspect-ratio: 16 / 9;
  }

  .category-featured h2 {
    font-size: 26px;
    line-height: 1.12;
  }

  .category-featured p {
    font-size: 16px;
    line-height: 1.5;
  }

  .article-list-item {
    gap: 12px;
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 18px 0;
  }

  .article-list-item img {
    aspect-ratio: 1 / 1;
  }

  .article-list-item h3 {
    font-size: 18px;
    line-height: 1.18;
  }

  .article-list-item p {
    display: none;
  }

  .category-list-ad {
    padding: 22px 0 2px;
  }

  .sidebar-panel {
    padding: 22px;
  }

  .sidebar-ad .ad-slot {
    min-height: 110px;
  }
}
