.exp-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10050;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.exp-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.exp-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    width: min(760px, 92vw);
    max-height: 88vh;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    z-index: 10051;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.exp-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}

.exp-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.92);
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.exp-close:hover {
    background: #ffffff;
    color: #F4B942;
}

.exp-text {
    padding: 52px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-eyebrow {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F4B942;
    margin-bottom: 12px;
}

.exp-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.85rem;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0 0 16px;
}

.exp-text p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.02rem;
    line-height: 1.55;
    color: #444;
    margin: 0 0 26px;
}

.exp-cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    background: #F4B942;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 28px;
    border-radius: 0;
    transition: background-color 0.25s ease;
}

.exp-cta:hover {
    background: #E0A030;
}

.exp-image {
    position: relative;
    min-height: 260px;
}

.exp-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 720px) {
    .exp-popup {
        grid-template-columns: 1fr;
        max-height: 92vh;
        overflow-y: auto;
    }

    .exp-image {
        min-height: 200px;
        order: -1;
    }

    .exp-text {
        padding: 34px 26px;
    }

    .exp-text h2 {
        font-size: 1.5rem;
    }
}

/* 2K+ displays */
@media (min-width: 2200px) {
    .exp-popup {
        width: min(1140px, 92vw);
    }

    .exp-close {
        width: 57px;
        height: 57px;
    }

    .exp-close svg {
        width: 30px;
        height: 30px;
    }

    .exp-text {
        padding: 78px 69px;
    }

    .exp-eyebrow {
        font-size: 1.275rem;
        margin-bottom: 18px;
    }

    .exp-text h2 {
        font-size: 2.775rem;
        margin-bottom: 24px;
    }

    .exp-text p {
        font-size: 1.53rem;
        margin-bottom: 39px;
    }

    .exp-cta {
        padding: 22.5px 42px;
        font-size: 1.5rem;
    }

    .exp-cta svg {
        width: 27px !important;
        height: 27px !important;
    }

    .exp-image {
        min-height: 390px;
    }
}
