.ticker { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,195,62,.08); }
.ticker-track { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.ticker span { padding: 12px 28px; color: var(--paper); font-size: .75rem; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
.ticker span::before { content: "✦"; margin-right: 24px; color: var(--gold); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
