.video-player-modal {
    display: none;
    position: fixed;
    z-index: 99;
    inset: 0;
    background: var(--black-80);
    align-items: center;
    justify-content: center;
}

.video-player-modal__content {
    position: relative;
    background: transparent;
}

.video-player-modal__content--laptop {
    aspect-ratio: 16 / 9;
    width: 80%;
    max-width: 1920px;
}

.video-player-modal__content--mobile {
    aspect-ratio: 9 / 16;
    height: 60%;
    max-height: 1080px;
}

.video-player-modal__iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.video-player-modal__close {
    position: absolute;
    top: -32px;
    right: -32px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}

@media (min-width: 700px) {
    .video-player-modal__content--mobile {
        height: 80%;
        min-width: 700px;
    }
}