.site-popup {
    border: none;
    border-radius: 8px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.site-popup::-webkit-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

.site-popup::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

.site-popup__inner {
    position: relative;
    padding: 2rem;
}

.site-popup__close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0.5rem;
    width: 3rem;
    height: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.site-popup__close:hover {
    color: #333;
}

.site-popup__content {
    font-size: 1rem;
    line-height: 1.6;
}

.site-popup__content img {
    max-width: 100%;
    height: auto;
}

.site-popup__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.site-popup__cta,
.site-popup__cta:link,
.site-popup__cta:visited,
.site-popup__cta:hover,
.site-popup__cta:focus {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    color: #fff;
}

/*# sourceMappingURL=popup.css.map */