@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

.news-page-shell {
  max-width: 1180px;
  margin: 0 auto 48px;
  font-family: "Open Sans", Arial, sans-serif;
}

.news-page-header {
  margin: 1em 0;
}

.news-page-header__canvas {
  background: #ffffff;
}

.news-page-header__canvas h1 {
  margin: 0;
  color: #1c476d;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.news-page-header__canvas h3 {
  margin: 8px 0 0;
  color: #34526d;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.3;
}

.news-tiles--landing {
  margin-top: 12px;
}

.news-empty {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #dce7f2;
  padding: 22px;
}

.news-empty p {
  margin: 0;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
  align-items: center;
  justify-content: center;
}

.news-pagination__summary {
  margin-right: 4px;
  color: #34526d;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.news-pagination__link {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #c8d9ea;
  background: #ffffff;
  color: #1c476d;
  font-size: 0.92rem;
  line-height: 1;
  text-decoration: none;
  border-radius: 6px;
  min-width: 38px;
  text-align: center;
}

.news-pagination__link:hover {
  border-color: #8ab5d9;
  background: #f5faff;
}

.news-pagination__link.is-current {
  background: #1f5d89;
  border-color: #1f5d89;
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 922px) {
  .news-pagination__summary {
    flex-basis: 100%;
    margin-right: 0;
  }
}

@media (max-width: 980px) {
  .news-page-shell .news-tiles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .news-page-shell {
    padding: 0 10px;
  }

  .news-page-header__canvas h1 {
    font-size: 1.7rem;
  }

  .news-page-shell .news-tile {
    min-height: 170px;
  }
}
