.site-video-modal .modal-dialog {
    max-width: min(960px, 95vw);
    margin-left: auto;
    margin-right: auto;
}

.site-video-modal .modal-content {
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    max-height: calc(100dvh - 32px);
}

.site-video-modal .modal-header {
    flex-shrink: 0;
}

.site-video-modal .modal-body {
    overflow: hidden;
}

.site-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: calc(100dvh - 120px);
    background: #000;
}

.site-video-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

@media (max-width: 768px) {
    .site-video-modal .modal-dialog {
        max-width: 96vw;
        margin: 16px auto;
    }

    .site-video-modal .modal-content {
        border-radius: 12px;
        max-height: calc(100dvh - 32px);
    }

    .site-video-wrapper {
        max-height: calc(100dvh - 104px);
    }
}

@media (max-width: 480px) {
    .site-video-modal .modal-dialog {
        max-width: 98vw;
        margin: 8px auto;
    }

    .site-video-modal .modal-content {
        max-height: calc(100dvh - 16px);
    }

    .site-video-modal .modal-header {
        padding: 10px 12px;
    }

    .site-video-modal .modal-title {
        font-size: 16px;
    }

    .site-video-modal .modal-body {
        padding: 0;
    }

    .site-video-wrapper {
        max-height: calc(100dvh - 76px);
    }
}
