/* Horizontal video slider (no 3D) */
.carousel-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.carousel-stage {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate3d(0, -50%, 0);
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    will-change: transform;
}

.carousel-item {
    --item-height: clamp(180px, 45vh, 520px);
    --item-aspect: 9/16;
    flex: 0 0 auto;
    height: var(--item-height);
    width: calc(var(--item-height) * var(--item-aspect));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    background: #000;
}

.carousel-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

@media (max-width: 768px) {
    .carousel-item {
        --item-height: clamp(150px, 36vh, 300px);
    }
}
