.dbox .nhnavs_has_video {
    position: relative;
}

.dbox .nhnavs_video_trigger {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    padding: 0 0 0 4px;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    background: rgba(0, 0, 0, 0.42);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: transform .2s ease, background-color .2s ease;
}

.dbox .nhnavs_video_trigger:hover,
.dbox .nhnavs_video_trigger:focus-visible {
    background: rgba(195, 13, 35, 0.92);
    outline: none;
    transform: translate(-50%, -50%) scale(1.08);
}

.banner-video-modal {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.82);
}

.banner-video-modal[hidden] {
    display: none;
}

.banner-video-modal__content {
    position: relative;
    width: min(100%, 960px);
    background: #000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.banner-video-modal__player,
.banner-video-modal__iframe {
    display: block;
    width: 100%;
    max-height: calc(100vh - 48px);
    background: #000;
}

.banner-video-modal__iframe {
    aspect-ratio: 16 / 9;
    border: 0;
}

.banner-video-modal__player[hidden],
.banner-video-modal__iframe[hidden] {
    display: none;
}

.banner-video-modal__close {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    padding: 0;
    color: #fff;
    font-size: 30px;
    line-height: 36px;
    background: rgba(0, 0, 0, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    cursor: pointer;
}

.banner-video-modal__close:hover,
.banner-video-modal__close:focus-visible {
    background: rgba(195, 13, 35, 0.95);
    outline: none;
}

@media (max-width: 767px) {
    .dbox .nhnavs_video_trigger {
        width: 58px;
        height: 58px;
        font-size: 23px;
    }

    .banner-video-modal {
        padding: 12px;
    }

    .banner-video-modal__player,
    .banner-video-modal__iframe {
        max-height: calc(100vh - 24px);
    }
}
