.community-section {
    padding: 100px 0;
    background: #ffffff;
}


.community-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


.community-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}


/* =========================================
   COPY
========================================= */

.community-copy {
    max-width: 540px;
}


.community-copy .section-label {
    display: inline-block;
    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #2fa7a0;
}


.community-title {
    margin: 0 0 24px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;

    color: #172a54;
}


.community-title span {
    display: block;
}


.community-title span:last-child {
    color: #2fa7a0;
}


.community-description {
    margin: 0 0 18px;

    font-size: 16px;
    line-height: 1.8;

    color: #667085;
}


.community-description-bottom {
    margin-bottom: 0;
}


/* =========================================
   VALUE GRID
========================================= */

.community-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.community-value-card {
    position: relative;

    padding: 28px;

    background: #f4f7fc;
    border: 1px solid #e7ecf3;
    border-radius: 20px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.community-value-card:hover {
    transform: translateY(-5px);

    border-color: rgba(47, 167, 160, 0.45);

    box-shadow:
        0 18px 40px rgba(23, 42, 84, 0.08);
}


.community-value-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 22px;

    border-radius: 12px;

    background: #172a54;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}


.community-value-card h3 {
    margin: 0 0 10px;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;

    color: #172a54;
}


.community-value-card p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: #667085;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .community-section {
        padding: 80px 0;
    }


    .community-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .community-copy {
        max-width: 100%;
    }

}


@media (max-width: 600px) {

    .community-section {
        padding: 65px 0;
    }


    .community-container {
        padding: 0 18px;
    }


    .community-values {
        grid-template-columns: 1fr;
    }


    .community-value-card {
        padding: 24px;
    }


    .community-title {
        font-size: 32px;
    }

}