.section1 {
    padding: 7vh 12.5vw;
    background-color: #f8f8f8;
    border-bottom: 0.5px solid rgba(109,109,109,0.241);
    background-image:
        radial-gradient(circle at 110% -7%, rgba(246,220,91,0.296) 25rem, transparent 25rem),
        radial-gradient(circle at 78% -27%, rgba(244,225,131,0.296) 20rem, transparent 20rem),
        radial-gradient(circle at -2% 45%, rgba(178,238,169,0.451) 12rem, transparent 12rem),
        radial-gradient(circle at 4% 64%, rgba(138,232,157,0.277) 15rem, transparent 15rem);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    align-items: stretch;
}

.coach-card {
    background: white;
    border: 0.5px solid rgba(109,109,109,0.241);
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 0.6rem;
    transition: box-shadow 0.2s ease;
}

.coach-info {
    width: 100%;
}

/* .coach-card:hover {
    box-shadow: 0 4px 16px rgba(25,89,35,0.08);
} */

/* .coach-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
} */

.coach-name {
    font-family: 'Playfair Display', sans-serif;
    font-weight: 900;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: #195923c1;
    letter-spacing: 0.05rem;
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

.coach-desc {
    font-size: clamp(0.8rem, 1.1vw, 0.9rem);
    color: #444;
    line-height: 1.6;
}

@media screen and (max-width: 900px) {
    .coaches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 600px) {
    .section1 { padding: 5vh 6vw; }
    .coaches-grid { grid-template-columns: 1fr; }
}

.section2 {
    padding: 7vh 12.5vw;
    background-color: #f8f8f8;
    border-bottom: 0.5px solid rgba(109,109,109,0.241);
    background-image:
        radial-gradient(circle at 101% 67%, rgba(244,225,131,0.296) 14rem, transparent 14rem),
        radial-gradient(circle at -10% 55%, rgba(178,238,169,0.451) 15rem, transparent 15rem);
}

.volunteer-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3rem;
}

.volunteer-name {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    font-weight: 500;
    color: #2d5c33;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
    padding: 0.6rem 0;
    border-bottom: 0.5px solid rgba(109,109,109,0.1);
}

.volunteer-grid .volunteer-name:nth-last-child(-n+2) {
    border-bottom: none;
}

@media screen and (max-width: 600px) {
    .section2 { padding: 5vh 6vw; }
    .volunteer-grid { grid-template-columns: 1fr; }
    .volunteer-grid .volunteer-name:nth-last-child(-n+2) {
        border-bottom: 0.5px solid rgba(109,109,109,0.1);
    }
    .volunteer-grid .volunteer-name:last-child {
        border-bottom: none;
    }
}
