/* ============================================================
   Scoped styles for the Who We Serve pattern.
   ALL rules are prefixed with .is-style-one-landing-who-we-serve
   ============================================================ */

.is-style-one-landing-who-we-serve {
    background: #ffffff;
    padding: 100px 40px;
    color: #121C21;
}

.is-style-one-landing-who-we-serve .who-we-serve-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.is-style-one-landing-who-we-serve .who-we-serve-header {
    margin-bottom: 60px;
}

.is-style-one-landing-who-we-serve .who-we-serve-tag {
    color: #0E899F;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.42px;
    margin-bottom: 16px;
}

.is-style-one-landing-who-we-serve .who-we-serve-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    max-width: 800px;
}

.is-style-one-landing-who-we-serve .who-we-serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.is-style-one-landing-who-we-serve .who-serve-card {
    background: #ffffff;
    border: 1px solid #E0E7EB;
    border-radius: 12px;
    padding: 40px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.is-style-one-landing-who-we-serve .who-serve-card:hover {
    border-color: #09819F;
    transform: translateY(-5px);
    box-shadow: 0px 12px 30px rgba(9, 129, 159, 0.08);
}

.is-style-one-landing-who-we-serve .card-num {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #09819F;
    letter-spacing: 2.4px;
    margin-bottom: 18px;
}

.is-style-one-landing-who-we-serve .card-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #121C21;
}

.is-style-one-landing-who-we-serve .card-desc {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #606F76;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .is-style-one-landing-who-we-serve .who-we-serve-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .is-style-one-landing-who-we-serve {
        padding: 60px 20px;
    }
    .is-style-one-landing-who-we-serve .who-we-serve-title {
        font-size: 32px;
    }
    .is-style-one-landing-who-we-serve .who-serve-card {
        padding: 30px 20px;
    }
}
