.featured-container {
    width: 100%;
    overflow: hidden;
}

.featured-content {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: center;
    padding: 20px 0;
}

.featured-text {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

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

/* Pause the animation when hovering */
.featured-content:hover .featured-text {
    animation-play-state: paused;
}
