.newsroom-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 211, 38, .08), transparent 28rem),
    var(--bg);
}

.newsroom-shell {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
}

.newsroom-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 211, 38, .08), transparent 42%),
    var(--bg-mid);
}

.newsroom-hero__inner {
  padding: clamp(88px, 13vw, 168px) 0 clamp(76px, 10vw, 128px);
}

.newsroom-kicker {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.newsroom-hero h1,
.newsroom-article__header h1 {
  max-width: 850px;
  margin: 0;
  color: var(--text);
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 850;
  letter-spacing: -.07em;
  line-height: .92;
}

.newsroom-hero__copy {
  max-width: 640px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.newsroom-text-link,
.newsroom-read-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-weight: 800;
}

.newsroom-text-link {
  margin-top: 30px;
  font-size: 15px;
}

.newsroom-text-link:hover,
.newsroom-text-link:focus-visible,
.newsroom-read-link:hover,
.newsroom-read-link:focus-visible {
  color: var(--text);
}

.newsroom-featured,
.newsroom-archive,
.newsroom-more {
  padding: 96px 0;
}

.newsroom-archive,
.newsroom-more {
  border-top: 1px solid var(--line);
}

.newsroom-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.newsroom-section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -.055em;
  line-height: .98;
}

.newsroom-section-heading__note {
  max-width: 330px;
  margin: 0 0 2px;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
}

.newsroom-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 21, 21, .72);
  transition: border-color .2s ease, transform .2s ease;
}

.newsroom-card:hover {
  border-color: var(--yellow-deep);
  transform: translateY(-3px);
}

.newsroom-card__image-link {
  display: block;
  overflow: hidden;
  background: #101010;
  aspect-ratio: 1.55 / 1;
}

.newsroom-card__image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.newsroom-card:hover .newsroom-card__image-link img {
  transform: scale(1.025);
}

.newsroom-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.newsroom-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.newsroom-meta span {
  color: var(--yellow);
}

.newsroom-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -.045em;
  line-height: 1;
}

.newsroom-card h2 a:hover,
.newsroom-card h2 a:focus-visible {
  color: var(--yellow);
}

.newsroom-card__dek {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.newsroom-card__excerpt {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.newsroom-read-link {
  margin-top: auto;
  font-size: 14px;
}

.newsroom-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
}

.newsroom-card--featured .newsroom-card__image-link {
  height: 100%;
  min-height: 420px;
  aspect-ratio: auto;
}

.newsroom-card--featured .newsroom-card__content {
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
}

.newsroom-card--featured h2 {
  font-size: clamp(32px, 4.2vw, 60px);
}

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

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

.newsroom-footer {
  padding-top: 0;
}

.newsroom-article {
  padding-top: clamp(58px, 8vw, 112px);
}

.newsroom-article__crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.newsroom-article__crumbs a {
  color: var(--yellow);
}

.newsroom-article__header {
  max-width: 900px;
}

.newsroom-article__header h1 {
  font-size: clamp(48px, 7vw, 90px);
}

.newsroom-article__dek {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.5vw, 28px);
  line-height: 1.4;
}

.newsroom-article__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.newsroom-article__hero {
  margin: 56px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
}

.newsroom-article__hero img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.newsroom-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(44px, 10vw, 140px);
  max-width: 940px;
  margin: 68px auto 0;
}

.newsroom-article__body {
  color: var(--text);
  font-size: 20px;
  line-height: 1.75;
}

.newsroom-article__body p {
  margin: 0 0 28px;
}

.newsroom-related {
  align-self: start;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.newsroom-related__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.newsroom-related__link:hover,
.newsroom-related__link:focus-visible {
  color: var(--yellow);
}

.newsroom-provenance {
  max-width: 940px;
  margin: 52px auto 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  background: rgba(21, 21, 21, .66);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.newsroom-provenance p {
  margin: 0;
}

.newsroom-provenance strong {
  color: var(--text);
}

.newsroom-provenance a {
  color: var(--yellow);
  font-weight: 700;
}

@media (max-width: 820px) {
  .newsroom-card--featured {
    grid-template-columns: 1fr;
  }

  .newsroom-card--featured .newsroom-card__image-link {
    min-height: 0;
    aspect-ratio: 1.55 / 1;
  }

  .newsroom-article__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsroom-related {
    max-width: 360px;
  }
}

@media (max-width: 720px) {
  .newsroom-shell {
    width: min(calc(100% - 32px), 1180px);
  }

  .newsroom-section-heading {
    display: block;
  }

  .newsroom-section-heading__note {
    max-width: 420px;
    margin-top: 18px;
    text-align: left;
  }

  .newsroom-featured,
  .newsroom-archive,
  .newsroom-more {
    padding: 68px 0;
  }

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

  .newsroom-card__content {
    padding: 24px;
  }

  .newsroom-article__hero {
    margin-top: 40px;
    border-radius: 16px;
  }

  .newsroom-article__body {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .newsroom-card,
  .newsroom-card__image-link img {
    transition: none;
  }
}
