/* ─── Video Banner ─────────────────────────────────────────── */
.videoBanner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* Forces exact 16:9 height based on width */
.videoBanner::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.videoBanner__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videoBanner__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}