.news-list-page {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--ink-950);
}

.news-list-page > main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.news-list-page > .site-footer {
  flex: 0 0 auto;
  margin-top: auto;
}

.news-page-main {
  padding-top: var(--header-height);
  background: var(--surface-muted);
}

.news-page-hero {
  padding-block: 88px 72px;
  background:
    radial-gradient(circle at 85% 15%, rgba(115, 223, 181, 0.18), transparent 32%),
    var(--ink-950);
  color: #fff;
}

.news-page-hero__breadcrumb {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.news-page-hero__breadcrumb a:hover,
.news-page-hero__breadcrumb a:focus-visible {
  color: #fff;
}

.news-page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.14;
}

.news-page-hero__lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.news-page-content {
  flex: 1 0 auto;
  padding-block: 72px 96px;
}

.news-page-content .news-status {
  margin-top: 0;
}

.news-grid--listing {
  min-height: 260px;
}

.news-state {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 56px 24px;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.news-state--loading {
  color: var(--brand-primary);
}

.news-state--error {
  color: #8a2731;
  background: #fff9fa;
  border-color: #f1c4c9;
}

.news-state__message {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.news-state__retry {
  margin-top: 22px;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 44px;
}

.news-pagination a,
.news-pagination span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding-inline: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.news-pagination a {
  color: var(--brand-primary);
  font-weight: 650;
}

.news-pagination a:focus-visible {
  outline: 3px solid rgba(91, 67, 230, 0.28);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .news-page-hero {
    padding-block: 68px 56px;
  }

  .news-page-content {
    padding-block: 56px 76px;
  }
}

@media (max-width: 600px) {
  .news-page-hero h1 {
    font-size: 38px;
  }

  .news-pagination {
    flex-wrap: wrap;
    gap: 10px;
  }
}
