.news-page,
.article-page {
  background: var(--bg);
}

.news-page {
  padding: 142px 0 110px;
}

.news-hero,
.news-grid,
.news-source-note,
.article-shell {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}

.news-hero {
  padding: 58px 0 64px;
  text-align: center;
}

.news-hero .k,
.article-hero-copy .k {
  color: var(--bronze);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.news-hero h1 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}

.news-hero p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--dim);
  font-size: 15px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 24px;
  align-items: stretch;
}

.news-card {
  grid-column: span 2;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e0b07;
  transition: border-color .35s ease, transform .35s ease;
}

.news-card:nth-last-child(2):nth-child(even) {
  grid-column: 2 / span 2;
}

.news-card:last-child:nth-child(odd) {
  grid-column: 4 / span 2;
}

.news-card:hover {
  border-color: var(--bronze);
  transform: translateY(-5px);
}

.news-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #080705;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.news-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 26px 30px;
}

.news-body h2 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.news-body p {
  margin-top: 13px;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.7;
}

.news-body .card-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--bronze-soft);
  font-size: 12px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.news-source-note {
  margin-top: 42px;
  color: var(--dim);
  font-size: 13px;
  text-align: center;
}

.article-page {
  padding: 142px 0 110px;
}

.article-hero-local {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg2);
}

.article-hero-copy {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.article-hero-copy h1 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.article-hero-copy p {
  margin-top: 22px;
  color: var(--dim);
  font-size: 15px;
}

.article-hero-image {
  min-height: 420px;
  overflow: hidden;
  background: #080705;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.article-copy-card {
  max-width: 860px;
  margin: 34px auto 0;
  padding: 48px 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e0b07;
}

.article-copy-card section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-copy-card h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.article-copy-card p {
  margin-top: 13px;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.8;
}

.article-cta {
  display: inline-flex;
  margin-top: 36px;
  padding: 14px 28px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}

.article-cta:hover {
  border-color: var(--bronze);
  background: var(--bronze);
  color: #0c0a08;
}

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

  .news-card,
  .news-card:nth-last-child(2),
  .news-card:last-child {
    grid-column: auto;
  }

  .news-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
  }

  .article-hero-copy {
    min-height: 390px;
    padding: 44px;
  }

  .article-hero-image {
    min-height: 390px;
  }
}

@media (max-width: 700px) {
  .news-page,
  .article-page {
    padding: 104px 0 80px;
  }

  .news-hero,
  .news-grid,
  .news-source-note,
  .article-shell {
    width: min(100% - 36px, 1200px);
  }

  .news-hero {
    padding: 38px 0 44px;
  }

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

  .news-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .article-hero-local {
    grid-template-columns: 1fr;
  }

  .article-hero-copy {
    min-height: 0;
    padding: 40px 26px;
  }

  .article-hero-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .article-copy-card {
    margin-top: 20px;
    padding: 34px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-card,
  .news-media img,
  .article-cta {
    transition: none;
  }
}
