.cpv-video-slider-wrapper {
    margin: 20px auto;
    max-width: 1200px;
}

/* CPV Video Slider Container */
.cpv-video-swiper-container {
    width: 100%;
    overflow: hidden;
}

/* Custom slider wrapper */
.cpv-video-swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

/* Each slide (one chunk of videos) */
.cpv-video-swiper-slide {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* Video Card styling: Force a portrait 9:16 ratio */
.cpv-video-card {
    flex: 0 0 auto;
    width: 200px; /* Adjust as needed for your design */
    aspect-ratio: 9 / 16;
    margin-right: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.cpv-video-card:last-child {
    margin-right: 0;
}

.cpv-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Navigation Styles */
.cpv-video-swiper-button-prev,
.cpv-video-swiper-button-next {
    color: #333; /* Overridable via widget style controls */
}

.cpv-video-swiper-pagination .swiper-pagination-bullet {
    background-color: #333; /* Overridable via widget style controls */
}
