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

.slider-track { width: max-content; }

.animate-marquee {
    animation: marquee-x 60s linear infinite;
    animation-delay: -5s;
}

/* optional: pause on hover */
.group:hover .animate-marquee { animation-play-state: paused; }
