/**
 * The Wire — a single dense column, on the shared Atlas foundation.
 *
 * A stream of dispatches is a reading surface, not a dashboard: no cards, no thumbnails, no
 * outlet marks. One rule per day, a time in the margin, the headline, the outlet beneath it.
 */

.wire-masthead { padding: var(--gutter) var(--gutter) 0; }

.wire {
  padding: 0 var(--gutter) clamp(40px, 6vw, 90px);
  max-width: 2200px;
  margin-inline: auto;
}

.dateline { padding: clamp(22px, 4vw, 46px) 0 clamp(16px, 2vw, 26px); }
.dateline .title { margin: 0; }
.standfirst { max-width: 54ch; }

.column { max-width: 72ch; }

/* ---------- browsing ------------------------------------------- */

.search { display: block; margin-top: 6px; }
.search input {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--fg);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--hair);
  padding: 8px 0;
}
.search input::placeholder { color: var(--fg-2); }
.search input:focus { outline: none; border-bottom-color: var(--fg); }

.wire-filters { display: flex; flex-wrap: wrap; gap: 4px 18px; margin-top: 16px; }
.wire-filter {
  appearance: none; background: none; border: 0; padding: 2px 0; margin: 0;
  font: inherit; font-size: 12px; color: var(--fg-2); cursor: pointer;
  border-bottom: 1px solid transparent;
}
.wire-filter:hover { color: var(--fg); }
.wire-filter.is-on { color: var(--fg); border-bottom-color: var(--fg); }
.wire-filter .count {
  margin-left: 5px; font-size: 10px; color: var(--fg-2); font-variant-numeric: tabular-nums;
}

/* ---------- the feed ------------------------------------------- */

.feed { list-style: none; margin: 22px 0 0; padding: 0; }

.feed .day {
  margin: 26px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--hair);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.feed .day:first-child { margin-top: 0; }

.feed .line {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--hair-soft);
}
.feed .line-time {
  font-size: 11px;
  color: var(--fg-2);
  font-variant-numeric: tabular-nums;
  padding-top: 3px;
}
.feed .line-body { min-width: 0; }
.feed .line a {
  color: var(--fg);
  font-size: 15px;
  line-height: 1.35;
  text-underline-offset: 3px;
  text-decoration-color: var(--hair);
  text-wrap: pretty;
}
.feed .line a:hover { text-decoration-color: currentColor; }
/* Plain names, never mastheads: an outlet's logo is a trademark. */
.feed .line-meta {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.feed .none { padding: 18px 0; font-size: 13px; color: var(--fg-2); }

.feed-end { margin: 20px 0 0; font-size: 11.5px; color: var(--fg-2); }
.more { margin-top: 20px; }

@media (max-width: 520px) {
  .feed .line { grid-template-columns: 38px minmax(0, 1fr); gap: 0 10px; }
  .feed .line a { font-size: 14.5px; }
}
