/* Task #1143074: Remove gap between LIVE ticker bar and urgency banner
   ════════════════════════════════════════════════════════════════════════════
   Problem: excess whitespace between the dark LIVE activity ticker and the
   white urgency banner (32 settlements closing this week). Root cause:
   - freshness-badge-bar has border-bottom + padding creating a gray strip
   - urgency-banner-premium has no top margin
   Fix: remove freshness border-bottom, tie ticker → urgency visually */

.freshness-badge-bar { border-bottom: none !important; }

.activity-ticker-wrap {
  border-bottom: 1px solid #bfdbfe !important;
  margin-bottom: 0 !important;
}

.urgency-banner-premium {
  margin-top: 0 !important;
}