/* ── News page: year navigation bar ── */

.news-year-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.news-year-nav a {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 2px;
  padding: 0.2rem 0.7rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.news-year-nav a:hover {
  background: var(--accent);
  color: #fff;
}

/* Year section header — lighter than a full editorial h2 */
.news-year-heading {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--rule);
  padding-bottom: 0.35rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  scroll-margin-top: 90px;
}

.news-year-heading:first-of-type {
  margin-top: 0;
}
