/* ==========================================================================
   The Keepers Newsletter Popup – Modal Styles
   ========================================================================== */
/* Overlay */
.tknp-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}
/* Visible state */
.tknp-modal.is-visible {
    display: flex;
    opacity: 1;
    animation: tknpFadeIn 0.3s ease forwards;
}
/* Content wrapper */
.tknp-modal-content {
    position: relative;
    width: 100%;
    max-width: 1024px;
    margin: auto;
}
/* Close button */
.tknp-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    padding: 0.25rem 0.5rem;
    font-size: 1.75rem;
    line-height: 1;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.tknp-modal-close:hover,
.tknp-modal-close:focus-visible {
    opacity: 0.7;
}
/* Fade-in animation */
@keyframes tknpFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
