/* App download offer strip — homepage + Find a Therapist */

.mendify-offer-strip {
    background: #4B3564;
    color: #fff;
    padding: 14px 20px;
    position: relative;
    z-index: 5;
}

.mendify-offer-strip[hidden],
.mendify-offer-strip.is-dismissed {
    display: none !important;
}

.mendify-offer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.mendify-offer-text {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #F7F3FB;
}

.mendify-offer-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    margin-left: 0.35rem;
    white-space: nowrap;
    transition: border-color 0.15s ease;
}

.mendify-offer-link:hover {
    border-bottom-color: #fff;
}

.mendify-offer-close {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #E9DDF8;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.mendify-offer-close__icon {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 400;
    pointer-events: none;
}

.mendify-offer-close:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.mendify-offer-close:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
}

/* Sit flush under the header on directory pages that still pad public-main */
.public-main:not(.public-main--home):has(> .mendify-offer-strip) {
    padding-top: 0;
}

.public-main:not(.public-main--home) > .mendify-offer-strip {
    margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
}

@media (max-width: 640px) {
    .mendify-offer-strip {
        padding: 12px 16px;
    }

    .mendify-offer-inner {
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .mendify-offer-text {
        text-align: left;
        font-size: 14px;
    }

    .mendify-offer-link {
        white-space: normal;
        margin-left: 0.2rem;
    }
}
