/**
 * Public member profile V2 (beta-gated via asltip_member_profile_v2_enabled
 * in core/wordpress.php). Scoped under .asltip-mp; the live template is
 * untouched during preview.
 */

.asltip-mp {
    background: #f4f8fc;
    padding-bottom: 70px;
}

/* ---- Profile header card (sits below the standard photo hero) ---- */
.asltip-mp {
    background: #f7fafc;
    padding: 4px 0 70px;
}
.asltip-mp .wrapper {
    max-width: 1240px;
}
.asltip-mp-head {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #dbe7f2;
    border-radius: 16px;
    padding: 26px 30px;
    margin-top: 12px;
    box-shadow: 0 2px 10px rgba(11, 47, 82, .06);
}
.asltip-mp-head__photo img,
.asltip-mp-head__initial {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e3eff9;
    background: #fff;
    display: block;
}
.asltip-mp-head__initial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Heebo', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #0b2f52;
    background: #e3eff9;
}
.asltip-mp-head__body {
    flex: 1 1 320px;
    min-width: 0;
}
.asltip-mp-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Heebo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #1578cc;
}
.asltip-mp-head__eyebrow svg {
    width: 15px;
    height: 15px;
    color: #1acd6a;
}
.asltip-mp-head__name {
    margin: 6px 0 0;
    font-family: 'Heebo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #00070e;
    line-height: 1.15;
}
.asltip-mp-head__meta {
    margin: 5px 0 0;
    font-size: 13.5px;
    color: #6b8299;
}
.asltip-mp-head__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 13px;
}
.asltip-mp-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #e3eff9;
    color: #12507f;
    border-radius: 999px;
    padding: 6px 14px;
    font-family: 'Heebo', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
}
.asltip-mp-chip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.asltip-mp-head__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}
.asltip-mp-head__actions a {
    display: inline-block;
    text-align: center;
    padding: 12px 26px !important;
    border-radius: 999px;
    font-family: 'Heebo', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    line-height: 1.3 !important;
    text-decoration: none;
    min-height: 0 !important;
    height: auto !important;
    min-width: 0 !important;
    transition: background .2s ease, border-color .2s ease;
}
.asltip-mp-head__actions a.asltip-mp-btn--primary {
    background: #0d7d3f !important;
    color: #fff !important;
    border: none !important;
}
.asltip-mp-head__actions a.asltip-mp-btn--primary:hover {
    background: #109e50 !important;
}
.asltip-mp-head__actions a.asltip-mp-btn--call {
    background: #fff !important;
    color: #1578cc !important;
    border: 1.5px solid #cbdeef !important;
}
.asltip-mp-head__actions a.asltip-mp-btn--call:hover {
    background: #e3eff9 !important;
    border-color: #1578cc !important;
}

/* ---- Layout ---- */
.asltip-mp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
    gap: 20px;
    align-items: start;
    max-width: 1240px;
    padding-top: 26px;
}
.asltip-mp-main,
.asltip-mp-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

/* ---- Cards ---- */
.asltip-mp-card {
    background: #fff;
    border: 1px solid #dbe7f2;
    border-radius: 14px;
    padding: 24px 26px;
    box-shadow: 0 1px 2px rgba(11, 47, 82, .05);
}
.asltip-mp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-family: 'Heebo', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1578cc;
}
.asltip-mp-eyebrow::before {
    content: "";
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: #1acd6a;
}
.asltip-mp-prose {
    font-size: 18px;
    line-height: 1.75;
    color: #33475b;
}
.asltip-mp-prose p {
    margin: 0 0 14px;
    /* the legacy base sets bare p at 19px, which overrides inheritance */
    font-size: 18px;
    line-height: 1.75;
}
.asltip-mp-prose p:last-child {
    margin-bottom: 0;
}
.asltip-mp-prose a {
    color: #1578cc;
}

/* ---- Term chips ---- */
.asltip-mp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.asltip-mp-tags span {
    display: inline-block;
    background: #e3eff9;
    color: #12507f;
    border-radius: 999px;
    padding: 6px 14px;
    font-family: 'Heebo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}
.asltip-mp-tags--ages span {
    background: #e0f7ea;
    color: #0d5f31;
}
.asltip-mp-tags--langs span {
    background: #f1eafe;
    color: #5b21b6;
}

/* ---- Contact details card ---- */
.asltip-mp-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #edf3f9;
    font-size: 14.5px;
    color: #33475b;
}
.asltip-mp-detail:last-of-type {
    border-bottom: none;
}
.asltip-mp-detail__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #e3eff9;
    color: #1578cc;
    flex-shrink: 0;
}
.asltip-mp-detail__icon svg {
    width: 16px;
    height: 16px;
}
.asltip-mp-detail a {
    color: #1578cc;
    text-decoration: none;
    font-weight: 600;
}
.asltip-mp-detail a:hover {
    text-decoration: underline;
}
.asltip-mp-detail__label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #6b8299;
    margin-bottom: 1px;
}
.asltip-mp-contactlist {
    margin-top: 14px;
}
.asltip-mp-contactlist button.btn--contact-list {
    width: 100% !important;
    background: #fff !important;
    border: 1.5px solid #cbdeef !important;
    color: #1578cc !important;
    border-radius: 999px !important;
    padding: 8px 16px !important;
    font-family: 'Heebo', sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    min-height: 0 !important;
    height: auto !important;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}
.asltip-mp-contactlist button.btn--contact-list:hover {
    background: #e3eff9 !important;
    border-color: #1578cc !important;
}
.asltip-mp-contactlist button.btn--contact-list span {
    color: inherit !important;
}

/* ---- Contact form (CF7) ---- */
.asltip-mp-form label {
    display: block;
    font-family: 'Heebo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #33475b;
    margin-bottom: 14px;
}
.asltip-mp-form input[type="text"],
.asltip-mp-form input[type="email"],
.asltip-mp-form input[type="tel"],
.asltip-mp-form textarea {
    display: block;
    width: 100% !important;
    background: #f7fafd !important;
    border: 1.5px solid #cbdeef !important;
    border-radius: 8px !important;
    color: #1c1c1c !important;
    padding: 10px 14px !important;
    margin-top: 5px;
    font-size: 14px !important;
    height: auto !important;
    min-height: 0 !important;
    box-shadow: none !important;
}
.asltip-mp-form textarea {
    min-height: 140px !important;
}
.asltip-mp-form input:focus,
.asltip-mp-form textarea:focus {
    border-color: #1578cc !important;
    outline: none !important;
}
.asltip-mp-form input[type="submit"] {
    background: #0d7d3f !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 12px 30px !important;
    font-family: 'Heebo', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    cursor: pointer;
    min-width: 0 !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    transition: background .2s ease;
}
.asltip-mp-form input[type="submit"]:hover {
    background: #109e50 !important;
}
.asltip-mp-form .wpcf7-not-valid-tip {
    font-size: 12.5px;
    color: #b91c1c;
}
.asltip-mp-form .wpcf7-response-output {
    margin: 14px 0 0 !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    border: 1px solid #f0e0a8 !important;
    background: #fff8e1;
    font-size: 13.5px;
}

/* ---- Private profile notice ---- */
.asltip-mp-private {
    max-width: 640px;
    margin: 60px auto;
    text-align: center;
    background: #fff;
    border: 1px solid #dbe7f2;
    border-radius: 14px;
    padding: 40px 34px;
}
.asltip-mp-private h1 {
    font-family: 'Heebo', sans-serif;
    font-size: 22px;
    color: #0b2f52;
    margin: 0 0 10px;
}
.asltip-mp-private a {
    color: #1578cc;
}

/* ---- Responsive ---- */
@media (max-width: 940px) {
    /* Single column with the contact details card straight after the
       banner: the column wrappers dissolve (display: contents) so the
       cards become orderable items of the grid itself */
    .asltip-mp-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        /* the desktop grid's align-items: start would shrink-wrap cards here */
        align-items: stretch;
    }
    .asltip-mp-main,
    .asltip-mp-aside {
        display: contents;
    }
    .asltip-mp-card--details {
        order: -1;
    }
    .asltip-mp-head__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
@media (max-width: 640px) {
    /* Compact banner: photo beside the name instead of a tall stack */
    .asltip-mp-head {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 18px;
        gap: 14px;
    }
    .asltip-mp-head__photo img,
    .asltip-mp-head__initial {
        width: 72px;
        height: 72px;
        border-width: 3px;
    }
    .asltip-mp-head__initial {
        font-size: 28px;
    }
    .asltip-mp-head__body {
        flex: 1 1 0;
    }
    .asltip-mp-head__name {
        font-size: 20px;
    }
    .asltip-mp-head__meta {
        font-size: 12.5px;
        margin-top: 3px;
    }
    .asltip-mp-head__chips {
        margin-top: 8px;
        gap: 6px;
    }
    .asltip-mp-chip {
        padding: 5px 12px;
        font-size: 12px;
    }
    .asltip-mp-head__actions {
        flex-direction: column;
        flex-basis: 100%;
        gap: 8px;
    }
    .asltip-mp-head__actions a {
        padding: 11px 20px !important;
    }
}

/* CF7 form 56735 arrives with its own column wrappers (.contact-3rds etc.);
   flatten everything to a single column inside the sidebar card */
.asltip-mp-form .wpcf7 div:not(.hidden-fields-container):not(.wpcf7-response-output):not(.screen-reader-response),
.asltip-mp-form .wpcf7 p,
.asltip-mp-form .wpcf7 label,
.asltip-mp-form .wpcf7-form-control-wrap {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.asltip-mp-form .wpcf7 p {
    margin-bottom: 6px !important;
}

/* CF7 hides the response bar until there is a response; keep it that way */
.asltip-mp-form form.init .wpcf7-response-output {
    display: none !important;
}

/* =========================================================================
   ALTERNATIVE navy-hero design (templates/single-members-v2-navy.php).
   Not currently served; kept so the page can adopt the members-area look
   by swapping one path in the core/wordpress.php gate.
   ========================================================================= */
.asltip-mp-hero {
    background: linear-gradient(115deg, #0b2f52 0%, #14548e 62%, #1578cc 118%);
    padding: 46px 0 42px;
}
.asltip-mp-hero__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    max-width: 1240px;
}
.asltip-mp-hero__photo img,
.asltip-mp-hero__initial {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, .92);
    box-shadow: 0 6px 20px rgba(4, 20, 38, .4);
    display: block;
    background: #fff;
}
.asltip-mp-hero__initial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Heebo', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #0b2f52;
}
.asltip-mp-hero__body {
    flex: 1 1 340px;
    min-width: 0;
}
.asltip-mp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Heebo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #8fc1ea;
}
.asltip-mp-hero__eyebrow svg {
    width: 15px;
    height: 15px;
    color: #1acd6a;
}
.asltip-mp-hero__name {
    margin: 7px 0 0;
    font-family: 'Heebo', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}
.asltip-mp-hero__meta {
    margin: 7px 0 0;
    font-size: 14px;
    color: #b9d4ec;
}
.asltip-mp-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
/* Chips sit on navy here: translucent white instead of the light-blue tint */
.asltip-mp-hero .asltip-mp-chip {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
}
.asltip-mp-hero .asltip-mp-chip--capacity {
    border: none;
}
.asltip-mp-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}
.asltip-mp-hero__actions a {
    display: inline-block;
    text-align: center;
    padding: 12px 26px !important;
    border-radius: 999px;
    font-family: 'Heebo', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    line-height: 1.3 !important;
    text-decoration: none;
    min-height: 0 !important;
    height: auto !important;
    min-width: 0 !important;
    transition: background .2s ease, border-color .2s ease;
}
.asltip-mp-hero__actions a.asltip-mp-btn--hero {
    background: #1acd6a !important;
    color: #04331b !important;
    border: none !important;
}
.asltip-mp-hero__actions a.asltip-mp-btn--hero:hover {
    background: #3ddb80 !important;
}
.asltip-mp-hero__actions a.asltip-mp-btn--ghost {
    background: none !important;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, .45) !important;
}
.asltip-mp-hero__actions a.asltip-mp-btn--ghost:hover {
    border-color: #fff !important;
    background: rgba(255, 255, 255, .1) !important;
}
@media (max-width: 940px) {
    .asltip-mp-hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
@media (max-width: 640px) {
    .asltip-mp-hero__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .asltip-mp-hero__name {
        font-size: 27px;
    }
}

/* =========================================================================
   Round 2: cover photo, overlapping header, stats, icon headings, lead
   quote, warm form intro, trust line, sticky mobile CTA
   ========================================================================= */

/* ---- Cover ---- */
.asltip-mp-cover {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.asltip-mp-cover__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.asltip-mp-cover__wash {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 47, 82, .35) 0%, rgba(11, 47, 82, .1) 45%, rgba(21, 120, 204, .35) 100%);
}
.asltip-mp-cover__crumb {
    position: relative;
    z-index: 2;
    padding-top: 22px;
}
.asltip-mp-cover__crumb #breadcrumbs,
.asltip-mp-cover__crumb #breadcrumbs span {
    color: rgba(255, 255, 255, .75);
}
.asltip-mp-cover__crumb #breadcrumbs a {
    color: #fff;
}
.asltip-mp-cover__crumb #breadcrumbs .breadcrumb_last {
    color: #fff;
}



/* ---- Header card overlaps the cover ---- */
.asltip-mp {
    padding-top: 0;
}
.asltip-mp-head {
    position: relative;
    z-index: 3;
    margin-top: -74px;
    box-shadow: 0 10px 34px rgba(11, 47, 82, .12);
}

/* ---- At-a-glance stats ---- */
.asltip-mp-stats {
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 44px;
    border-top: 1px solid #edf3f9;
    margin-top: 8px;
    padding-top: 18px;
}
.asltip-mp-stat {
    display: flex;
    align-items: baseline;
    gap: 9px;
}
.asltip-mp-stat__n {
    font-family: 'Heebo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0b2f52;
    line-height: 1;
}
.asltip-mp-stat__label {
    font-family: 'Heebo', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #6b8299;
}

/* ---- Icon section headings ---- */
.asltip-mp-sec {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 16px;
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0b2f52;
}
.asltip-mp-sec__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
}
.asltip-mp-sec__icon svg {
    width: 17px;
    height: 17px;
}
.asltip-mp-sec__icon--blue   { background: #e3eff9; color: #1578cc; }
.asltip-mp-sec__icon--green  { background: #e0f7ea; color: #0d7d3f; }
.asltip-mp-sec__icon--purple { background: #f1eafe; color: #7c3aed; }
.asltip-mp-sec__icon--slate  { background: #e8eef5; color: #33475b; }

/* ---- Lead quote ---- */
.asltip-mp-lead {
    font-family: 'Heebo', sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.5;
    color: #0b2f52;
    margin: 0 0 16px;
    padding-left: 16px;
    border-left: 4px solid #1acd6a;
}

/* ---- Warm form intro + trust ---- */
.asltip-mp-form__intro {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(120deg, #e0f7ea 0%, #eef9f2 100%);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
}
.asltip-mp-form__avatar {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    flex-shrink: 0;
}
.asltip-mp-form__title {
    display: block;
    font-family: 'Heebo', sans-serif;
    font-size: 16.5px;
    font-weight: 700;
    color: #0b2f52;
}
.asltip-mp-form__sub {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.45;
    color: #33475b;
}
.asltip-mp-trust {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 6px 0 0;
    font-size: 14.5px;
    line-height: 1.5;
    color: #6b8299;
}
.asltip-mp-trust svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #1acd6a;
    margin-top: 1px;
}

/* ---- Sticky mobile CTA ---- */
.asltip-mp-sticky {
    display: none;
}
@media (max-width: 940px) {
    .asltip-mp-sticky {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 90;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .96);
        border-top: 1px solid #dbe7f2;
        box-shadow: 0 -6px 18px rgba(11, 47, 82, .08);
        transition: transform .25s ease, opacity .25s ease;
    }
    .asltip-mp-sticky.is-hidden {
        transform: translateY(110%);
        opacity: 0;
    }
    .asltip-mp-sticky a {
        display: block;
        text-align: center;
        background: #0d7d3f !important;
        color: #fff !important;
        border-radius: 999px;
        padding: 13px 20px !important;
        font-family: 'Heebo', sans-serif !important;
        font-size: 14.5px !important;
        font-weight: 700 !important;
        letter-spacing: normal !important;
        text-transform: none !important;
        text-decoration: none;
        min-height: 0 !important;
        height: auto !important;
    }
    .asltip-mp-cover {
        height: 220px;
    }
    .asltip-mp-head {
        margin-top: -54px;
    }
}

/* The hero-shape svg takes its fill from the legacy hero class; give it the
   page background here so the curve blends instead of rendering black */


/* Cover ends on a straight edge (the curve is being retired site-wide) */
.asltip-mp-cover {
    height: 300px;
}

/* Form fields: an inline CF7 style block (0-27px padding, 70px height,
   printed after this sheet) ties our specificity — the extra ancestors
   settle it. Fields sized generously per client feedback. */
.asltip-mp .asltip-mp-form .wpcf7 input.wpcf7-form-control,
.asltip-mp .asltip-mp-form .wpcf7 input[type="text"],
.asltip-mp .asltip-mp-form .wpcf7 input[type="email"],
.asltip-mp .asltip-mp-form .wpcf7 input[type="tel"],
.asltip-mp .asltip-mp-form .wpcf7 textarea {
    display: block;
    width: 100% !important;
    max-width: none !important;
    background: #f7fafd !important;
    border: 1.5px solid #cbdeef !important;
    border-radius: 8px !important;
    color: #1c1c1c !important;
    padding: 13px 16px !important;
    margin-top: 5px;
    font-size: 15px !important;
    line-height: 1.4 !important;
    height: auto !important;
    min-height: 0 !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
}
.asltip-mp .asltip-mp-form .wpcf7 textarea {
    min-height: 170px !important;
}
.asltip-mp .asltip-mp-form .wpcf7 input:focus,
.asltip-mp .asltip-mp-form .wpcf7 textarea:focus {
    border-color: #1578cc !important;
    outline: none !important;
}

/* The same inline CF7 block also restyles the submit; boosted here too */
.asltip-mp .asltip-mp-form .wpcf7 input[type="submit"],
.asltip-mp .asltip-mp-form .wpcf7 input.wpcf7-submit {
    display: inline-block;
    width: auto !important;
    background: #0d7d3f !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 13px 32px !important;
    font-family: 'Heebo', sans-serif !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    line-height: 1.3 !important;
    height: auto !important;
    min-height: 0 !important;
    min-width: 0 !important;
    cursor: pointer;
    transition: background .2s ease;
}
.asltip-mp .asltip-mp-form .wpcf7 input[type="submit"]:hover {
    background: #109e50 !important;
}

/* =========================================================================
   Editorial layout: open main column, question headings, tick list, steps
   ========================================================================= */
.asltip-mp-main {
    gap: 0;
    padding-top: 8px;
}
.asltip-mp-ed {
    margin-bottom: 8px;
}

/* Pull quote opens the page in the member's own words */
.asltip-mp-pull {
    position: relative;
    font-family: 'Heebo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.45;
    color: #0b2f52;
    padding: 18px 0 0 40px;
    margin: 6px 0 22px;
}
.asltip-mp-pull::before {
    content: "\201C";
    position: absolute;
    left: -6px;
    top: -14px;
    font-family: Georgia, serif;
    font-size: 110px;
    line-height: 1;
    color: #1acd6a;
    opacity: .4;
}

/* Question headings with a short green stroke */
.asltip-mp-q {
    position: relative;
    font-family: 'Heebo', sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: #0b2f52;
    line-height: 1.3;
    margin: 40px 0 18px;
    padding-bottom: 12px;
}
.asltip-mp-q::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 4px;
    border-radius: 2px;
    background: #1acd6a;
}

/* Bigger, friendlier age pills + language line */
.asltip-mp-tags--big span {
    font-size: 14.5px;
    padding: 9px 20px;
}
.asltip-mp-langline {
    margin: 14px 0 0;
    font-size: 15px;
    color: #33475b;
}

/* Capability tick list */
.asltip-mp-ticks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.asltip-mp-ticks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #33475b;
}
.asltip-mp-ticks svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    color: #1acd6a;
    margin-top: 3px;
}

/* Where and how */
.asltip-mp-where {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 10px;
    font-size: 15.5px;
    color: #33475b;
}
.asltip-mp-where svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    color: #1578cc;
}
.asltip-mp-where strong {
    color: #0b2f52;
}

/* What happens next: numbered steps on a connecting line */
.asltip-mp-steps {
    display: flex;
    gap: 26px;
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}
.asltip-mp-steps li {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
}
/* Ghost numeral behind each step, landing-page style at column scale */
.asltip-mp-steps li::after {
    content: attr(data-ghost);
    position: absolute;
    top: -18px;
    right: 6px;
    font-family: 'Heebo', sans-serif;
    font-size: 84px;
    font-weight: 800;
    line-height: 1;
    color: #0b2f52;
    opacity: .06;
    pointer-events: none;
}
/* Dashed connector, echoing the landing's How it works */
.asltip-mp-steps li + li::before {
    content: "";
    position: absolute;
    top: 18px;
    right: calc(100% + 4px);
    width: 18px;
    border-top: 3px dashed #b9dfc7;
}
.asltip-mp-steps li > * {
    position: relative;
}
.asltip-mp-steps__n {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e0f7ea;
    border: 2px solid #1acd6a;
    color: #0d7d3f;
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}
.asltip-mp-steps strong {
    display: block;
    position: relative;
    font-family: 'Heebo', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0b2f52;
    margin-bottom: 4px;
}
.asltip-mp-steps span:not(.asltip-mp-steps__n) {
    font-size: 14.5px;
    line-height: 1.55;
    color: #6b8299;
}
.asltip-mp-steps__cta {
    display: inline-block;
    padding: 12px 28px !important;
    border-radius: 999px;
    background: #0d7d3f !important;
    color: #fff !important;
    border: none !important;
    font-family: 'Heebo', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    line-height: 1.3 !important;
    text-decoration: none;
    min-height: 0 !important;
    height: auto !important;
    transition: background .2s ease;
}
.asltip-mp-steps__cta:hover {
    background: #109e50 !important;
}

/* Rail headings (the only boxed elements keep a quiet bold label) */
.asltip-mp-railhead {
    display: block;
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0b2f52;
    margin-bottom: 12px;
}

@media (max-width: 700px) {
    .asltip-mp-ticks {
        grid-template-columns: 1fr;
    }
    .asltip-mp-steps {
        flex-direction: column;
        gap: 18px;
    }
    .asltip-mp-steps li + li::before {
        display: none;
    }
    .asltip-mp-steps li::after {
        font-size: 64px;
        top: -10px;
    }
    .asltip-mp-pull {
        font-size: 20px;
        padding-left: 30px;
    }
    .asltip-mp-q {
        font-size: 20px;
        margin-top: 30px;
    }
}

/* Contact-list states: the shared JS toggles in-list / max-reached; our
   base rule out-specifies the stock colours, so restate them here */
.asltip-mp-contactlist button.btn--contact-list.in-list {
    background: #fdecec !important;
    border-color: #e8a3a3 !important;
    color: #b91c1c !important;
}
.asltip-mp-contactlist button.btn--contact-list.in-list:hover {
    background: #fbdcdc !important;
    border-color: #b91c1c !important;
}
.asltip-mp-contactlist button.btn--contact-list.max-reached {
    background: #f7fafc !important;
    border-color: #d8e3ec !important;
    color: #93a8ba !important;
    cursor: not-allowed;
}

/* The CF7 form carries a legacy bottom margin that pushed the trust line away */
.asltip-mp-form .wpcf7 form {
    margin-bottom: 0 !important;
}
