.cs-wrapper-a8da999e {
    width: 100%;
    overflow: hidden;
}

.cs-container-a8da999e {
    width: 100%;
    overflow: hidden;
    background-color: #121212;
    padding: 20px 0;
}

.cs-track-a8da999e {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: max-content;
    animation: cs-scroll-a8da999e 20s linear infinite;
}

.cs-track-a8da999e:hover {
    animation-play-state: paused;
}

@keyframes cs-scroll-a8da999e {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.cs-item-a8da999e {
    flex: 0 0 auto;
    width: clamp(150px, 14.28vw, 250px);
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    border-radius: 10px;
}

.cs-img-wrap-a8da999e {
    width: 100%;
    height: 100%;
}

.cs-img-wrap-a8da999e img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cs-title-wrap-a8da999e {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.cs-title-a8da999e {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    display: block;
}

/* Ensure 7 items fit without gap on desktop */
@media (min-width: 1025px) {
    .cs-item-a8da999e {
        width: calc(100vw / 7); /* Assuming full width container for exact 7 items */
        /* Fallback if not full width */
        min-width: 150px;
    }
}
