.water-news-page {
  --ink: #152b3c;
  --muted: #526471;
  --blue: #245a8d;
  --rust: #914331;
  --paper: #faf9f5;
  --rule: #bdc8ce;
  min-height: 80vh;
  background: var(--paper);
  color: var(--ink);
}

.water-news-page main { max-width: 1160px; margin: 0 auto; padding: 0 24px 48px; }
.water-news-page ::selection { background: #b9d9e8; color: #0b2740; }

.news-masthead {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  padding: 30px 0 18px;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.news-masthead h1 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: .98;
}

.news-masthead p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.4; }
.news-masthead p a { color: var(--blue); font-weight: 700; text-underline-offset: 3px; }

.news-submit {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  flex: 0 0 auto;
  padding: 5px 0;
  border-bottom: 0;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.news-submit:hover { color: var(--rust); }

.news-controls { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 20px; padding: 11px 0 10px; border-bottom: 1px solid var(--rule); }
.news-filters { display: flex; flex-wrap: wrap; gap: 4px 0; }
.news-filter {
  min-height: 44px;
  padding: 7px 11px 7px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: .69rem;
  font-weight: 600;
}
.news-filter-select { display: none; }
.news-status { margin: 0; color: var(--muted); font-size: .68rem; text-align: right; }
.news-status[data-state="live"]::before { color: #3f6653; content: "● "; }
.news-status[data-state="cached"]::before { color: var(--rust); content: "● "; }
.news-filter + .news-filter::before { margin-right: 11px; color: #8b9aa3; content: "/"; }
.news-filter:hover { color: var(--blue); }
.news-filter[aria-pressed="true"] { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.news-story {
  display: grid;
  grid-template-columns: 140px minmax(260px, 1fr) minmax(260px, .85fr);
  gap: 24px;
  padding: 19px 0 20px;
  border-bottom: 1px solid var(--rule);
}

.news-story-meta { display: grid; align-content: start; gap: 4px; }
.news-category { color: var(--rust); font-size: .64rem; font-weight: 750; letter-spacing: .045em; text-transform: uppercase; }
.news-place { color: #405766; font-size: .68rem; font-weight: 600; line-height: 1.4; }
.news-date { color: var(--muted); font-size: .64rem; font-variant-numeric: tabular-nums; }
.news-story h3 { max-width: 31ch; margin: 0; font-size: clamp(1.05rem, 1.8vw, 1.45rem); font-weight: 650; letter-spacing: -.025em; line-height: 1.12; }
.news-story h3 a { color: var(--ink); text-decoration-color: transparent; text-underline-offset: 4px; }
.news-story h3 a:hover { color: var(--blue); text-decoration-color: currentColor; }
.news-note { max-width: 62ch; margin: 0; align-self: start; color: #344d5c; font-size: .78rem; line-height: 1.55; }
.news-source { display: block; margin-top: 7px; color: var(--muted); font-size: .62rem; }
.news-loading,
.news-empty,
.news-error { margin: 0; padding: 28px 0; color: var(--muted); font-size: .78rem; }
.news-error { color: var(--rust); }

@media (max-width: 760px) {
  .news-story { grid-template-columns: 115px minmax(0, 1fr); gap: 14px 18px; }
  .news-note { grid-column: 2; }
}

@media (max-width: 520px) {
  .water-news-page main { padding-inline: 16px; }
  .news-masthead { align-items: start; padding-top: 24px; }
  .news-masthead p { max-width: 35ch; }
  .news-submit { margin-top: 3px; }
  .news-controls { grid-template-columns: 1fr; }
  .news-filters { display: none; }
  .news-filter-select { display: grid; gap: 4px; color: var(--muted); font-size: .66rem; font-weight: 700; text-transform: uppercase; }
  .news-filter-select select { min-height: 44px; width: 100%; border: 1px solid var(--rule); border-radius: 0; background: #fff; color: var(--ink); padding: 8px 10px; }
  .news-status { text-align: left; }
  .news-story { grid-template-columns: 1fr; gap: 9px; padding-block: 16px; }
  .news-story-meta { grid-template-columns: 1fr auto; }
  .news-place { grid-column: 1 / -1; }
  .news-note { grid-column: 1; }
}
