.news-page { background: #f6f4ef; }

.news {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--ticker-h) * 2 + 32px) 28px calc(var(--bottom-stack-h) + 48px);
}

.news__header { margin: 0 0 28px; }
.news__header h1 {
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.news__lede {
  font-weight: 400;
  font-size: 17px;
  color: #4a5a5e;
  margin: 0 0 22px;
  max-width: 640px;
}

.news__filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 8px;
}
.news__filter {
  appearance: none; border: 1px solid #d6d2c8;
  background: #fff; color: var(--ink);
  font-family: inherit; font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  cursor: pointer; transition: all 0.15s;
}
.news__filter:hover { border-color: var(--bondi); color: var(--bondi); }
.news__filter[aria-pressed="true"] {
  background: var(--bondi); color: #fff; border-color: var(--bondi);
}

.news__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
@media (max-width: 720px) {
  .news { padding: calc(var(--ticker-h) * 2 + 24px) 16px calc(var(--bottom-stack-h) + 32px); }
  .news__header h1 { font-size: 36px; }
  .news__grid { grid-template-columns: 1fr; gap: 12px; }
}

.news__card {
  background: #fff;
  border: 1px solid #e8e4da;
  border-radius: 6px;
  display: flex; flex-direction: column;
  min-height: 150px;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}
.news__card:hover { border-color: var(--bondi); transform: translateY(-1px); }
.news__cardlink {
  display: block;
  padding: 18px 18px 4px;
  color: inherit; text-decoration: none;
  flex: 1;
}

.news__type {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bondi);
  margin-bottom: 8px;
}
.news__type--project   { color: var(--saffron); }
.news__type--gazette   { color: #6b5b95; }
.news__type--transport { color: #8a6d3b; }
.news__type--listing   { color: #2a7a4f; }

.news__summary {
  font-size: 17px; font-weight: 500; line-height: 1.4;
  color: var(--ink);
  margin: 0 0 auto 0;
}

.news__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin: 0 18px; padding: 12px 0 14px;
  border-top: 1px solid #f0ece2;
  font-size: 12px; color: #6e7a7d;
}
.news__source { font-weight: 600; color: var(--ink); }
.news__date { font-variant-numeric: tabular-nums; }

.news__empty {
  text-align: center; color: #6e7a7d;
  padding: 60px 20px; font-size: 16px;
}
