/* ==========================================================================
   Why Meadan — Intro
   Desktop: 1440×388, bg:#F0EBDF, 80px top/bottom, 60px sides
   Content: 1320×228 centred — text 768px + 40px gap + buttons 144×48
   Mobile:  390×482, 16px sides, full-width buttons
   ========================================================================== */

.wm-intro {
    background-color: #F0EBDF;
    padding: 80px 60px;
    box-sizing: border-box;
}

.wm-intro__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* ── Text block ── */
.wm-intro__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    max-width: 768px;
    width: 100%;
}

.wm-intro__heading {
    font-family: 'Freight Neo', 'freight-neo-pro', Georgia, serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: 0;
    text-align: center;
    color: #1C1C1C;
    margin: 0;
    width: 100%;
}

.wm-intro__description {
    font-family: 'Geist', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.39;
    letter-spacing: 0;
    text-align: center;
    color: #1C1C1C;
    margin: 0;
    width: 100%;
}

.wm-intro__description p {
    margin: 0 0 0.75em;
}

.wm-intro__description p:last-child {
    margin-bottom: 0;
}

.wm-intro__description > :first-child {
    margin-top: 0;
}

/* ── Button row: 2× pill buttons, 12px gap ── */
.wm-intro__btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.wm-intro__cta {
    padding: 0 25px;
    border-radius: 1000px;
    min-width: 144px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* ── Mobile — 390px, 40px top/bottom, 16px sides ── */
@media (max-width: 768px) {
    .wm-intro {
        padding: 40px 16px;
        min-height: 482px;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }

    .wm-intro__inner {
        width: 100%;
        gap: 40px;
    }

    .wm-intro__text {
        max-width: 358px;
        width: 100%;
        gap: 28px;
    }

    .wm-intro__heading {
        font-size: 32px;
        line-height: 1;
        text-align: center;
        width: 100%;
        max-width: 358px;
    }

    .wm-intro__description {
        font-size: 16px;
        line-height: 1.39;
        text-align: center;
        width: 100%;
        max-width: 358px;
    }

    /* Buttons: row, equal width, full stretch */
    .wm-intro__btns {
        width: 100%;
        max-width: 358px;
    }

    .wm-intro__cta {
        flex: 1;
        min-width: 0;
        padding: 0;
        height: 48px;
    }
}
