/* Who We Work With Section
   ========================================================================== */

.home-who-we-work-with {
    padding: 80px 0 100px;
    background-color: #fff;
}

.home-who-we-work-with .section-title.text-center {
    text-align: center;
    margin-bottom: 60px;
}

.home-who-we-work-with .section-title__title {
    margin-bottom: 0;
}

/* Cards layout */
.wwww-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.wwww-card {
    flex: 1;
    max-width: 360px;
    background: #f8fafe;
    border-radius: 12px;
    padding: 40px 30px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.wwww-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(24, 176, 168, 0.12);
    border-color: rgba(24, 176, 168, 0.2);
}

/* Card icon */
.wwww-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(24, 176, 168, 0.1);
}

.wwww-card__icon svg {
    width: 48px;
    height: 48px;
}

/* Card title */
.wwww-card__title {
    font-family: "Britanica", sans-serif;
    font-size: 1.25em;
    font-weight: 700;
    color: #46455b;
    margin: 0 0 14px;
    line-height: 1.3;
}

/* Card body */
.wwww-card__body {
    font-family: "Britanica", sans-serif;
    font-size: 0.9375em;
    color: #6b6b6b;
    line-height: 1.7;
    margin: 0 0 20px;
}

/* Card CTA */
.wwww-card__cta {
    display: inline-block;
    font-family: "Britanica", sans-serif;
    font-size: 0.9375em;
    font-weight: 600;
    color: #18B0A8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wwww-card__cta:hover {
    color: #139E97;
    text-decoration: underline;
}

/* Closing section */
.wwww-closing {
    text-align: center;
    margin-top: 50px;
}

.wwww-closing__text {
    font-family: "Britanica", sans-serif;
    font-size: 1.125em;
    color: #46455b;
    margin-bottom: 24px;
}

/* ========================================================================
   Responsive
   ======================================================================== */

@media (max-width: 1024px) {
    .wwww-card {
        max-width: 300px;
        padding: 30px 24px 24px;
    }

    .wwww-card__title {
        font-size: 1.125em;
    }

    .wwww-card__body {
        font-size: 0.875em;
    }
}

@media (max-width: 768px) {
    .home-who-we-work-with {
        padding: 60px 0 70px;
    }

    .wwww-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .wwww-card {
        max-width: 400px;
        width: 100%;
    }

    .wwww-card__icon {
        width: 64px;
        height: 64px;
    }

    .wwww-card__icon svg {
        width: 40px;
        height: 40px;
    }

    .wwww-closing {
        margin-top: 35px;
    }
}

@media (max-width: 480px) {
    .home-who-we-work-with {
        padding: 40px 0 50px;
    }

    .home-who-we-work-with .section-title.text-center {
        margin-bottom: 40px;
    }

    .wwww-card {
        padding: 24px 20px 20px;
    }
}
