.video-link {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.video-link img {
    display: block;
    max-width: 100%;
}

.video-link .video-target {
    margin-top: 10px;
}

.video-link .video-target iframe,
.video-link .video-target video {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: transparent;
    padding: 6px;
    background-color: #fff;
    /* border-radius: 100px; */
}

.video-popup-close {
    position: absolute;
    top: -60px;
    right: -81px;
    color: #2B5660;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    padding: 0;
}

.video-popup-content iframe,
.video-popup-content video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
}

@media (max-width: 1024px) {
    .video-popup-content {
        padding: 40px 20px;
        border-radius: 40px;
    }

    .video-popup-close {
        top: -20px;
        font-size: 24px;
    }
}
