.image-banner-module {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 85vh;
}

.image-banner-module .banner-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.image-banner-module .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-banner-module .banner-content {
    position: relative;
    z-index: 2;
    padding: 44px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 29px;
}

.image-banner-module .banner-content:has(.banner-subtitle) {
    gap: 16px;
}

.image-banner-module .banner-title {
    margin: 0;
    text-transform: uppercase;
    width: 100%;
}

.image-banner-module .banner-subtitle h1,
.image-banner-module .banner-subtitle h2,
.image-banner-module .banner-subtitle h3,
.image-banner-module .banner-subtitle p,
.image-banner-module .banner-title h1,
.image-banner-module .banner-title h2,
.image-banner-module .banner-title h3,
.image-banner-module .banner-title p {
    margin: 0;
    font-size: inherit;
    max-width: 750px;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.image-banner-module.banner-boxed {
    max-width: 1440px;
    margin: 0 auto;
}

.video-control-btn {
    position: absolute;
    bottom: 24px;
    right: 60px;
    z-index: 10;
    background-color: transparent;
    border: 0;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-background-white);
    transition: all 0.3s ease;
}

.video-control-btn:hover {
    transform: scale(1.05);
}

.video-control-btn svg {
    width: 24px;
    height: 24px;
}

.embed-responsive-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.embed-responsive-bg iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw; height: 56.25vw;
    min-height: 100vh; min-width: 177.77vh;
    transform: translate(-50%, -50%);
}

/* Mobile */
@media (max-width: 992px) {
    .image-banner-module {
        min-height: 400px;
    }

    .image-banner-module .banner-content {
        padding: 40px 20px;
        gap: 20px;
    }

    .image-banner-module .banner-title {
        width: 100%;
        max-width: fit-content;
    }
}