/* ─── TICKER BAR ─────────────────────────────────── */
.ticker-bar {
  background: var(--pine);
  padding: .7rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-bar:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
}
.ticker-item .name { color: rgba(255,255,255,.5); font-weight: 400; }
.ticker-item .up   { color: #4ade80; }
.ticker-item .down { color: #f87171; }

.ticker-sep { color: rgba(201,168,76,.3); }
