.news-page .site-header {
  display: none;
}
.news-pagination {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 0 var(--gutter) 3rem;
}
.news-pagination .news-more[hidden] {
  display: none;
}
.news-more[aria-disabled="true"] {
  opacity: 0.65;
  cursor: wait;
}
.news-previous {
  text-decoration: underline;
}
.news-load-status {
  font-size: 1rem;
  text-align: center;
}
.news-load-status:not(.is-error) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.news-load-status.is-error {
  color: #a82137;
}
.editorial-hero {
  position: relative;
  background: linear-gradient(160deg, #1a6acf 25%, #438eef 100%);
  color: var(--white);
  padding: 2rem 0 8rem;
  text-align: center;
}
.editorial-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/hero-grid.svg") center/cover;
  opacity: 0.3;
  pointer-events: none;
}
.editorial-hero .container {
  position: relative;
  z-index: 1;
}
.editorial-hero h1 {
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1.05;
  max-width: 68rem;
  margin: 2rem auto 0;
  text-wrap: balance;
}
.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding-block: 0.5rem;
  font:
    500 1rem/1.3 Stapel,
    sans-serif;
}
.back-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.article-category {
  margin-top: 2rem;
  font:
    500 0.875rem/1.2 Stapel,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e3efff;
}
.article-layout {
  width: min(70rem, calc(100% - var(--gutter) * 2));
  margin: -4rem auto 0;
  position: relative;
  z-index: 2;
}
.article-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 1.5rem 4rem #09264b14;
}
.article-content {
  width: min(100%, 48rem);
  margin: 3.5rem auto 0;
  font-size: 1.25rem;
  line-height: 1.6;
}
.article-content p + p {
  margin-top: 1.25rem;
}
.article-inline-image {
  display: block;
  width: 100%;
  height: auto;
  margin-block: 1.5rem;
  border-radius: 1rem;
}
.article-rich-text {
  overflow-wrap: anywhere;
}
.article-rich-text + .article-rich-text {
  margin-top: 1.25rem;
}
.article-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
  margin: 3rem 0 1.25rem;
  text-wrap: balance;
}
.article-content ul {
  list-style: disc;
  padding-left: 1.25rem;
}
.article-content li + li {
  margin-top: 0.75rem;
}
.article-back {
  display: inline-block;
  padding-block: 1rem;
  margin-top: 2rem;
  font:
    500 1rem/1.4 Stapel,
    sans-serif;
  color: #205faa;
}
.article-back:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.related-news {
  padding-block: 4rem 6rem;
}
.related-news > h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 70rem;
  margin: 2rem auto 0;
}
.news-index-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: -4rem;
  margin-bottom: 6rem;
}
.news-page .news-card h2 {
  font:
    700 clamp(1.125rem, 1.5vw, 1.5rem)/1.15 Stapel,
    sans-serif;
  letter-spacing: 0;
}
.news-page .news-card .news-copy {
  padding: 1.5rem 2rem 2rem;
}
.news-page a:focus-visible {
  outline-color: #fdd84d;
}
.news-page main a:focus-visible {
  outline-color: #1254ab;
}
.news-page .editorial-hero a:focus-visible {
  outline-color: #fdd84d;
}
@media (max-width: 600px) {
  .editorial-hero {
    padding: 1rem 0 4.5rem;
  }
  .editorial-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-top: 1.5rem;
    line-height: 1.08;
  }
  .article-category {
    font-size: 0.75rem;
    margin-top: 1rem;
  }
  .back-link {
    font-size: 0.875rem;
  }
  .article-layout {
    margin-top: -2rem;
  }
  .article-cover {
    border-radius: 1rem;
  }
  .article-content {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
  .article-content h2 {
    margin-top: 2rem;
  }
  .related-news {
    padding-block: 3rem;
  }
  .related-grid,
  .news-index-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .news-index-grid {
    margin-top: -2rem;
    margin-bottom: 3rem;
  }
  .news-page .news-card .news-copy {
    padding: 1.25rem;
  }
}
