/* --------------------------------------------------- */
/* ------------- CUSTOM VIDEO V1 START --------------- */
/* --------------------------------------------------- */
#view-video:has(.video-wrapper) {
    position: relative;
    padding: 40px 30px;
    box-sizing: border-box;
    isolation: isolate;
}

#view-video:has(.video-wrapper)::before {
    content: close-quote;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            var(--custom-video-first-gradient, #fff) 0%,
            var(--custom-video-second-gradient, var(--primary-color)) 25%,
            var(--custom-video-third-gradient, var(--secondary-color)) 100%);
    top: 0;
    left: 0;
    z-index: -1;
}

#view-video:has(.video-wrapper) .see-all-container {
    justify-content: center;
    text-align: center;
}

#view-video:has(.video-wrapper) .see-all-container h2 {
    padding-right: 0;
    font-size: 45px;
    font-weight: 700;
}

#view-video:has(.video-wrapper) #video-component {
    background: var(--bg-color);
    box-shadow: 5px 7px 35px rgba(0, 0, 0, 0.35);
    border-radius: 50px;
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin-inline: auto;
    box-sizing: border-box;
    padding-block: 40px;
    padding-inline: clamp(40px, 8.571vw, 120px);
}

@media screen and (max-width: 960px) {
    #view-video:has(.video-wrapper) .see-all-container h2 {
        font-size: 36px;
    }

    #view-video:has(.video-wrapper) {
        padding-inline: 20px;
    }
}

@media screen and (max-width: 600px) {
    #view-video:has(.video-wrapper) .see-all-container h2 {
        font-size: 30px;
    }

    #view-video:has(.video-wrapper) #video-component {
        padding: 20px;
    }
}

/* ------------------------------------------------- */
/* ------------- CUSTOM VIDEO V1 END --------------- */
/* ------------------------------------------------- */