:root {
  --ink: #16181f;
  --muted: #606878;
  --line: #d9dee7;
  --paper: #f7f8fa;
  --surface: #ffffff;
  --brand: #9f1f2f;
  --brand-dark: #711724;
  --gold: #c79b3b;
  --blue: #243c5a;
  --shadow: 0 18px 45px rgba(22, 24, 31, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--brand);
  font-size: 15px;
  letter-spacing: 0;
  border-radius: 6px;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.top-nav a,
.site-footer a {
  border-bottom: 1px solid transparent;
}

.top-nav a:hover,
.site-footer a:hover {
  border-color: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100vh - 76px));
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #111822;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 17, 25, 0.88), rgba(12, 17, 25, 0.56) 42%, rgba(12, 17, 25, 0.16)), url("/assets/newsroom-hero.png") center right / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(1120px, 100%);
  padding: 72px clamp(22px, 6vw, 72px) 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #f5d889;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--brand);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--brand);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button.outline {
  color: var(--brand);
  border-color: rgba(159, 31, 47, 0.35);
  background: #fff;
}

.section {
  padding: 58px clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section h2,
.legal-article h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.lead {
  max-width: 840px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.page-title {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.news-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.news-card,
.policy-card,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(22, 24, 31, 0.06);
}

.news-card {
  min-height: 220px;
  padding: 22px;
}

.news-card .tag {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-card {
  display: flex;
  flex-direction: column;
}

.story-meta,
.story-footer,
.article-meta,
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.story-meta time,
.story-footer,
.article-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.story-footer {
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
}

.story-footer a {
  color: var(--brand);
}

.listing-grid {
  margin-top: 24px;
}

.category-nav {
  margin-top: 24px;
}

.category-nav a {
  padding: 8px 12px;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.article-detail .lead {
  color: var(--ink);
  font-size: 21px;
}

.article-source {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.news-card h3,
.policy-card h3 {
  margin: 16px 0 10px;
  font-size: 22px;
}

.news-card p,
.policy-card p,
.contact-panel p,
.legal-article p,
.legal-article li {
  color: var(--muted);
  line-height: 1.7;
}

.policy-card {
  padding: 22px;
}

.legal-shell {
  padding: 56px clamp(18px, 4vw, 56px);
}

.legal-article {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-article h2 {
  margin-top: 34px;
  font-size: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 30px;
}

.contact-panel {
  padding: 26px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.site-footer {
  padding: 36px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.86);
  background: #151922;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-grid p {
  max-width: 680px;
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  font-weight: 700;
}

.not-found {
  min-height: 55vh;
  display: grid;
  place-items: center;
  padding: 40px 18px;
  text-align: center;
}

@media (max-width: 880px) {
  .site-header,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
    align-items: start;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .news-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 660px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(12, 17, 25, 0.9), rgba(12, 17, 25, 0.66)), url("/assets/newsroom-hero.png") center / cover no-repeat;
  }

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