/* Newsroom — the wire room. Builds on base.css tokens. */

#view-newsroom .nr-flash {
  min-height: 18px; margin: 4px 0 2px; font-size: 12.5px; color: var(--mint);
  opacity: 0; transform: translateY(-3px); transition: .25s var(--ease);
}
#view-newsroom .nr-flash.show { opacity: 1; transform: none; }

/* filter chips */
#view-newsroom .nr-chip { cursor: pointer; }
#view-newsroom .nr-chip.active {
  background: var(--gold); color: #1a1205; border-color: var(--gold); font-weight: 600;
}

/* the wire feed */
#view-newsroom .nr-feed { display: flex; flex-direction: column; gap: 10px; }
#view-newsroom .nr-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 13px 15px; transition: .15s var(--ease);
}
#view-newsroom .nr-card:hover { border-color: var(--border-light); transform: translateY(-1px); background: var(--card-hover); }
#view-newsroom .nr-title { font-family: var(--font-ui); font-weight: 600; font-size: 14.5px; line-height: 1.35; color: var(--text); }
#view-newsroom .nr-sum { margin: 5px 0 0; font-size: 12.5px; line-height: 1.45; }
#view-newsroom .nr-meta .badge { font-size: 10px; }

/* the desk — synthesized stories */
#view-newsroom .nr-rail { position: sticky; top: calc(var(--navbar-h) + 18px); }
#view-newsroom .nr-stories { display: flex; flex-direction: column; gap: 11px; }
#view-newsroom .nr-story {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 14px 15px;
}
#view-newsroom .nr-angle { font-size: 10.5px; letter-spacing: .5px; text-transform: uppercase; color: var(--mint); font-weight: 700; }
#view-newsroom .nr-storyhead { font-family: var(--font-ui); font-weight: 600; font-size: 15px; line-height: 1.3; margin: 6px 0 4px; color: var(--text); }
#view-newsroom .nr-dek { font-size: 12.5px; color: var(--gold); margin-bottom: 6px; }
#view-newsroom .nr-body { font-size: 12.5px; line-height: 1.5; margin: 0; }

@media (max-width: 900px) {
  #view-newsroom .nr-grid { grid-template-columns: 1fr !important; }
  #view-newsroom .nr-rail { position: static; }
}
