:root {
    --sc-speed: 30s;
    --sc-direction: normal;
    --sc-gap: 20px;
    --sc-items-show: 4;
    --sc-item-height: 350px;
}

.sc-wrapper-69a2a76f {
    overflow: hidden;
    display: flex;
    width: 100%;
}

.sc-track-69a2a76f {
    display: flex;
    gap: var(--sc-gap);
    min-width: 100%;
    animation: marquee-69a2a76f var(--sc-speed) linear infinite var(--sc-direction);
}

.sc-item-69a2a76f {
    position: relative;
    display: block;
    width: calc((100% / var(--sc-items-show)) - (var(--sc-gap) * (var(--sc-items-show) - 1) / var(--sc-items-show)));
    height: var(--sc-item-height);
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
}

.sc-media-69a2a76f {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.sc-overlay-69a2a76f {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.4s ease, opacity 0.4s ease;
    z-index: 1;
}

.sc-icon-69a2a76f {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 2;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes marquee-69a2a76f {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - (var(--sc-gap) / 2))); }
}
