
.cvs-slider-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.cvs-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cvs-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cvs-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.cvs-video-background iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.cvs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.cvs-content-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    box-sizing: border-box;
}

.cvs-top-text-wrap {
    position: absolute;
    left: 40px;
    top: 40px;
    z-index: 3;
    max-width: 90%;
}

.cvs-top-text {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    font-family: inherit;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.cvs-bottom-text-wrap {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 3;
    max-width: 750px;
}

.cvs-bottom-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    font-family: inherit;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Swiper Controls Custom Styling */
.cvs-pagination .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.6;
}
.cvs-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}

.cvs-arrow-prev, .cvs-arrow-next {
    color: #ffffff;
}

@media (max-width: 768px) {
    .cvs-top-text-wrap {
        left: 20px;
        top: 20px;
    }
    .cvs-top-text {
        font-size: 18px;
    }
    .cvs-bottom-text-wrap {
        left: 20px;
        right: 20px;
        bottom: 25px;
        max-width: 100%;
    }
    .cvs-bottom-text {
        font-size: 13px;
        line-height: 1.4;
    }
}
