/* ==========================================================
   Carousel v2
========================================================== */

.dtv-carousel-row {
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.dtv-carousel-row > * {
    scroll-snap-align: start;
}

.dtv-carousel-row.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.dtv-carousel-row.is-dragging * {
    pointer-events: none;
}

.dtv-carousel-arrow:disabled {
    opacity: .22;
    pointer-events: none;
    cursor: default;
}

.dtv-carousel-arrow:disabled:hover {
    background: rgba(15,23,42,.82);
    transform: translateY(-50%);
}

@media (prefers-reduced-motion: reduce) {
    .dtv-carousel-row {
        scroll-behavior: auto;
    }

    .dtv-carousel-arrow,
    .dtv-video-card__media,
    .dtv-video-card__media img {
        transition: none;
    }
}