/* Who This Support Is For Section Styles */
/* Based on Figma node-id: 2109-30331 (desktop) and 2109-31999 (mobile) */

.who-this-support-section {
    width: 100%;
    padding: 0 120px;
}

.who-this-support-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

/* Introduction */
.who-this-support-intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.who-this-support-title {
    font-family: 'IvyOra Display', serif;
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    line-height: 1;
    color: #ed6a59;
    margin: 0;
    max-width: 880px;
    width: 100%;
}

.who-this-support-description {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #403936;
    margin: 0;
    max-width: 880px;
    width: 100%;
}

/* Cards Container */
.who-this-support-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

/* Individual Card */
.who-this-support-card {
    background: #ffffff;
    border: 0.832px solid #005b68;
    border-radius: 12.474px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    flex: 1 0 0;
    min-width: 384px;
    height: 454px;
    padding: 16px;
    box-sizing: border-box;
}

.who-this-support-card-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #005b68;
    text-align: center;
    margin: 0;
    width: 100%;
}

.who-this-support-card-content {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #403936;
    width: 100%;
}

.who-this-support-card-content p {
    margin: 0 0 16px 0;
}

.who-this-support-card-content ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 24px;
}

.who-this-support-card-content li {
    margin-bottom: 0;
    line-height: 1.5;
}

/* Tablet Styles (below 1200px) */
@media (max-width: 1199px) {
    .who-this-support-section {
        padding: 0 60px;
    }

    .who-this-support-card {
        min-width: 300px;
        min-height: 560px;
    }
}

/* Mobile Styles (below 768px) */
@media (max-width: 767px) {
    .who-this-support-section {
        padding: 0 16px;
    }

    .who-this-support-section .container {
        gap: 40px;
    }

    .who-this-support-title {
        font-size: 24px;
    }

    .who-this-support-cards {
        flex-direction: column;
        gap: 24px;
    }

    .who-this-support-card {
        min-width: 100%;
        height: auto;
        min-height: unset;
    }

    .who-this-support-card-title {
        font-size: 16px;
        text-align: left;
    }

    .who-this-support-card-content {
        text-align: left;
    }
}
