.video-banner-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 480px;
    display: flex;
    align-items: center;
    color: #fff;
}

.video-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.video-banner-content {
    position: relative;
    z-index: 2;
}

.video-banner-text {
    width: 45%;
    font-size: 24px;
    line-height: 28px;
}

.video-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin-top: 1.5rem;
    text-decoration: none;
    transition: 0.3s background ease;
}

.video-banner-cta:hover {
    background: #222;
}

@media screen and (max-width: 992px) {

    .video-banner-content {
        display: flex;
        flex-direction: column;
        align-self: flex-end;
        padding-bottom: 60px;
    }

    .video-banner-text {
        width: 100%;
        font-size: 18px;
        line-height: 20px;
    }

    .video-banner-cta {
        justify-content: center;
    }
}
