/* La Casa del Español × Horace Mann — NOW ENROLLING popup */

.lcde-popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 99999;
    display: none;
    /* Allow scrolling when popup is taller than viewport */
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* Flex centering with safe fallback: when content overflows,
       browsers that support `safe center` fall back to flex-start
       so the top of the popup stays reachable. */
    justify-content: center;
    align-items: flex-start;
    align-items: safe center;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s ease;
}
.lcde-popup-backdrop.lcde-popup-show {
    display: flex;
    opacity: 1;
}

.lcde-popup-container {
    background: #fff;
    border-radius: 18px;
    max-width: 480px;
    width: 100%;
    padding: 42px 32px 28px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    transform: translateY(30px);
    opacity: 0;
    transition: transform .4s ease, opacity .4s ease;
}
.lcde-popup-show .lcde-popup-container {
    transform: translateY(0);
    opacity: 1;
}

.lcde-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 30px;
    line-height: 1;
    color: #bbb;
    cursor: pointer;
    padding: 4px 10px;
    transition: color .15s;
}
.lcde-popup-close:hover { color: #444; }

.lcde-popup-cobrand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}
.lcde-popup-logo {
    width: auto;
    display: block;
}
.lcde-popup-logo.hm-icon     { max-height: 58px; }
.lcde-popup-logo.hm-wordmark { max-height: 36px; }

.lcde-popup-badge {
    display: inline-block;
    background: #E8175D;
    color: #fff;
    padding: 6px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .6px;
    margin-bottom: 14px;
    box-shadow: 0 3px 10px rgba(232, 23, 93, .25);
}
.lcde-popup-badge i { margin-right: 6px; }

.lcde-popup-title {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: #1a1a1a;
    line-height: 1.18;
}

.lcde-popup-subtitle {
    color: #555;
    font-size: 15px;
    margin: 0 0 22px;
    line-height: 1.5;
}
.lcde-popup-subtitle strong { color: #1a1a1a; }

.lcde-popup-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 26px;
    text-align: left;
    max-width: 340px;
}
.lcde-popup-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: #444;
    margin-bottom: 9px;
    line-height: 1.5;
}
.lcde-popup-features li i {
    color: #E8175D;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 12px;
}

.lcde-popup-cta {
    display: block;
    background: #E8175D;
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 14px;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.lcde-popup-cta:hover,
.lcde-popup-cta:focus {
    background: #c0134d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(232, 23, 93, .38);
}

.lcde-popup-dismiss {
    background: none;
    border: none;
    color: #999;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 6px;
    transition: color .15s;
}
.lcde-popup-dismiss:hover { color: #555; }

@media (max-width: 520px) {
    .lcde-popup-backdrop  { padding: 12px; }
    .lcde-popup-container { padding: 32px 20px 20px; border-radius: 14px; }
    .lcde-popup-title     { font-size: 1.4rem; }
    .lcde-popup-subtitle  { font-size: 14px; margin-bottom: 16px; }
    .lcde-popup-cobrand   { gap: 10px; margin-bottom: 12px; }
    .lcde-popup-logo.hm-icon     { max-height: 44px; }
    .lcde-popup-logo.hm-wordmark { max-height: 26px; }
    .lcde-popup-features  { margin-bottom: 18px; }
    .lcde-popup-features li { font-size: 13px; margin-bottom: 7px; }
    .lcde-popup-cta       { padding: 14px 20px; font-size: 15px; margin-bottom: 10px; }
    .lcde-popup-close     { font-size: 26px; top: 8px; right: 10px; }
}

/* Very small phones (e.g. iPhone SE 1st gen, Galaxy Fold closed) */
@media (max-width: 380px) {
    .lcde-popup-container { padding: 30px 16px 18px; }
    .lcde-popup-title     { font-size: 1.25rem; }
    .lcde-popup-subtitle  { font-size: 13px; }
    .lcde-popup-badge     { font-size: 11px; padding: 5px 14px; }
    .lcde-popup-logo.hm-icon     { max-height: 38px; }
    .lcde-popup-logo.hm-wordmark { max-height: 22px; }
}

/* Landscape phones (short height) — keep popup scrollable */
@media (max-height: 600px) {
    .lcde-popup-backdrop  { padding-top: 12px; padding-bottom: 12px; }
    .lcde-popup-container { padding-top: 28px; padding-bottom: 18px; }
    .lcde-popup-cobrand   { margin-bottom: 10px; }
    .lcde-popup-subtitle  { margin-bottom: 14px; }
    .lcde-popup-features  { margin-bottom: 16px; }
}
