/* ============================================================
   TICKER / MARQUEE BAR
   ============================================================ */

.ticker {
  background: var(--green-800);
  padding: 1rem 0;
  overflow: hidden;
}

.ticker-tr {
  display: flex;
  animation: sc 25s linear infinite;
  width: max-content;
}

.ticker-it {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 2.5rem;
  font-family: var(--fd);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker-it .sep {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
