/* News pagination styles */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
  padding: 0 1rem;
}

.news-pagination a,
.news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 4px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.news-pagination a {
  background: var(--color-bg-alt, #f5f5f5);
  color: var(--color-text, #222);
}

.news-pagination a:hover {
  background: var(--color-yellow, #f5c518);
  color: var(--color-text-dark, #111);
}

.news-pagination .current-page {
  background: var(--color-navy, #1a2744);
  color: white;
  font-weight: 600;
  pointer-events: none;
}

/* Archive banner at bottom of last news page */
.news-archive-banner {
  text-align: center;
  margin: 2rem 0 1rem;
  padding: 1rem;
  background: var(--color-bg-alt, #f5f5f5);
  border-radius: 6px;
}

.news-archive-banner a {
  color: var(--color-navy, #1a2744);
  font-weight: 600;
  text-decoration: underline;
}

.news-archive-banner a:hover {
  color: var(--color-yellow, #f5c518);
}
