.services-who-section {
    display: flex;
    flex-direction: column;
    padding: 0 120px;
    margin: 0 auto;
    box-sizing: border-box;
}

.services-who-section .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
    box-sizing: border-box;
}

.services-who-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.services-who-intro-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services-who-title {
    font-family: 'IvyOra Display', serif;
    color: #005b68;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.services-who-lead {
    color: #403936;
    margin: 0;
}

.services-who-intro-right {
    display: flex;
    align-items: flex-end;
}

/* Mobile toggle (hidden by default; shown on small screens) */
.services-who-mobile-note {
    display: none;
}

/* Mobile CTA wrapper - hide on desktop */
.services-who-cta-mobile-wrap {
    display: none;
}

/* Buttons now use centralized component - keep only visibility and layout */
.who-this-support-cta-button {
    width: auto;
    align-self: flex-start !important;
    text-wrap: nowrap;
}

.services-who-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}

.who-card {
    background: #fffbf8;
    border: 0.832px solid #d4d2e3;
    border-radius: 12px;
    padding: 24px 16px;
    box-sizing: border-box;
    min-width: 384px;
    flex: 1 0 384px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.who-card-title {
    color: #ed6a59;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    text-align: center;
}

.who-card-body {
    color: #403936;
    font-family: 'IBM Plex Sans', sans-serif;
}

.who-card-list {
    margin: 0;
    padding-left: 20px;
    color: #403936;
}

.who-card-list li {
    margin-bottom: 6px;
}

@media (max-width: 1200px) {
    .services-who-section {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .services-who-section {
        padding: 0 24px;
    }

    /* Show mobile toggle and style it */
    .services-who-mobile-note {
        display: flex;
        font-family: 'IBM Plex Sans', sans-serif;
        font-style: italic;
        font-weight: 400;
        font-size: 16px;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        color: #005b68;
    }

    /* When collapsed, hide card content but keep the card columns visible on mobile */
    .services-who-section.details-hidden .services-who-cards {
        /* keep the cards container visible so titles remain in layout */
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: flex-start;
    }

    /* Hide the descriptive body/list inside each card when collapsed */
    .services-who-section.details-hidden .services-who-cards .who-card .who-card-body,
    .services-who-section.details-hidden .services-who-cards .who-card .who-card-list {
        display: none;
    }

    /* Ensure the title remains visible and visually prominent when collapsed */
    .services-who-section.details-hidden .services-who-cards .who-card .who-card-title {
        display: block;
    }

    .who-card {
        min-width: 100%;
        flex: 1 0 100%;
    }

    .services-who-intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-who-intro-right {
        align-items: flex-start;
        display: none;
    }

    .who-this-support-cta-button:not(.who-this-support-cta-button--mobile) {
        display: none;
    }

    .services-who-section .section-inner {
        gap: 40px;
    }

    .who-this-support-cta-button--mobile {
        display: flex;
        margin: 0 auto;
        text-align: center;
        align-items: center;
        width: auto;
        padding: 12px 20px;
    }

    .services-who-cta-mobile-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}