/**
 * Subbar ticker — plain CSS (not via Tailwind/Vite) so animation always loads on deploy.
 * Adjust duration here to slow down (higher) or speed up (lower).
 */
.ly-marquee {
    animation: ly-marquee 90s linear infinite;
}

.ly-marquee:hover {
    animation-play-state: paused;
}

/* Slower scroll when OS requests reduced motion (still moves; avoids “frozen” look). */
@media (prefers-reduced-motion: reduce) {
    .ly-marquee {
        animation-duration: 180s;
    }
}

@keyframes ly-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
