.eai-site-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 999999;
}

.eai-site-popup--visible {
    display: flex;
}

.eai-site-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
}

.eai-site-popup__dialog {
    position: relative;
    width: min(92vw, 760px);
    max-height: 88vh;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.eai-site-popup__close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    z-index: 2;
}

.eai-site-popup__close:hover,
.eai-site-popup__close:focus {
    background: #dc2626;
    outline: none;
}

.eai-site-popup__image-link {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    cursor: default;
}

.eai-site-popup__image-link.eai-popup-clickable {
    cursor: pointer;
}

.eai-site-popup img {
    display: block;
    width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .eai-site-popup {
        padding: 14px;
    }

    .eai-site-popup__dialog {
        width: 94vw;
        max-height: 84vh;
    }

    .eai-site-popup__close {
        top: -10px;
        right: -10px;
        width: 32px;
        height: 32px;
        font-size: 24px;
        line-height: 26px;
    }

    .eai-site-popup img {
        max-height: 84vh;
    }
}
