.vh-tour-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
}

.vh-tour-modal.is-open {
    display: flex;
}

.vh-tour-modal__inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: #000;
    margin: 0 16px;
    border-radius: 4px;
    overflow: hidden;
}

.vh-tour-modal__viewer {
    width: 100%;
    height: 100%;
}

.vh-tour-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    padding: 0;
    transition: background 0.2s;
}

.vh-tour-modal__close:hover {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .vh-tour-modal__inner {
        margin: 0;
        border-radius: 0;
        max-width: 100%;
        height: 100dvh;
        aspect-ratio: unset;
    }
}
