:root {
  --news-ink: #111827;
  --news-muted: #64748b;
  --news-line: #e2e8f0;
  --news-brand: #172554;
  --news-accent: #dc147f;
  --news-success: #15803d;
  --news-surface: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--news-ink);
  background: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 300;
  padding: 10px 14px;
  color: #fff;
  background: var(--news-brand);
  transform: translateY(-150%);
}

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

.news-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 76px;
}

.news-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 48px;
  align-items: end;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--news-line);
}

.news-kicker,
.news-section-heading > div > p,
.news-curation > div > p,
.news-cta > div > p {
  margin: 0 0 12px;
  color: var(--news-accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-heading h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.news-heading > div > p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--news-muted);
  font-size: 18px;
  line-height: 1.65;
}

.news-heading-meta {
  display: grid;
  gap: 3px;
  padding: 18px 0 4px 24px;
  border-left: 3px solid var(--news-accent);
}

.news-heading-meta strong {
  color: var(--news-brand);
  font-size: 42px;
  line-height: 1;
}

.news-heading-meta span {
  color: var(--news-muted);
  font-size: 13px;
}

.news-featured {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  min-height: 420px;
  margin-top: 38px;
  overflow: hidden;
  background: var(--news-surface);
  border: 1px solid var(--news-line);
  border-radius: 8px;
}

.news-featured > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.news-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  align-items: center;
  color: var(--news-muted);
  font-size: 12px;
}

.news-status {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 9px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-status-current {
  color: #fff;
  background: var(--news-success);
}

.news-status-history {
  color: var(--news-brand);
  background: #eef2ff;
  border: 1px solid #c7d2fe;
}

.news-featured h2 {
  margin: 20px 0 14px;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: 0;
}

.news-featured h2 a,
.news-card h3 a,
.news-read-link {
  text-decoration: none;
}

.news-featured h2 a:hover,
.news-card h3 a:hover {
  color: #1745a3;
}

.news-featured-copy > p,
.news-card-body > p {
  color: var(--news-muted);
  line-height: 1.62;
}

.news-read-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--news-brand);
  font-size: 14px;
  font-weight: 800;
}

.historical-news {
  padding-top: 70px;
}

.news-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 26px;
}

.news-section-heading h2,
.news-curation h2,
.news-cta h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: 0;
}

.news-section-heading > p {
  margin: 0;
  color: var(--news-muted);
  line-height: 1.65;
}

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

.news-card {
  display: flex;
  min-height: 500px;
  overflow: hidden;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--news-line);
  border-radius: 8px;
}

.news-card > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.news-card h3 {
  margin: 16px 0 11px;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.news-card-body > p {
  display: -webkit-box;
  margin: 0 0 22px;
  overflow: hidden;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.news-curation,
.news-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  align-items: center;
  margin-top: 72px;
  padding: 32px 0;
  border-top: 1px solid var(--news-line);
  border-bottom: 1px solid var(--news-line);
}

.news-curation > p {
  margin: 0;
  color: var(--news-muted);
  line-height: 1.7;
}

.news-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 52px;
  border-bottom: 0;
}

@media (max-width: 980px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .news-featured > img {
    min-height: 300px;
    max-height: 420px;
  }
}

@media (max-width: 700px) {
  .news-main {
    width: calc(100% - 28px);
    padding: 30px 0 54px;
  }

  .news-heading,
  .news-section-heading,
  .news-curation,
  .news-cta {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-heading h1 {
    font-size: 36px;
  }

  .news-heading > div > p:last-child {
    font-size: 16px;
  }

  .news-heading-meta {
    grid-template-columns: auto 1fr;
    align-items: end;
  }

  .news-featured {
    min-height: 0;
  }

  .news-featured > img {
    min-height: 250px;
  }

  .news-featured-copy {
    padding: 25px;
  }

  .news-featured h2 {
    font-size: 25px;
  }

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

  .news-card {
    min-height: 0;
  }

  .news-cta .button {
    width: 100%;
  }
}

