/* Video Lightbox - migrated from footer.txt */
.ivx-lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.ivx-lb-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.ivx-lb {
    position: relative;
    width: 90vw;
    max-width: 960px;
    aspect-ratio: 16/9;
}

.ivx-lb-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.ivx-lb-close img {
    width: 32px;
    height: 32px;
}

.ivx-lb-video {
    width: 100%;
    height: 100%;
}

.ivx-lb-video figure,
.ivx-lb-video iframe {
    width: 100%;
    height: 100%;
    margin: 0;
}

body.ivx-lb-lock {
    overflow: hidden;
}
