.team {
    padding: 2rem;
    max-width: 1024px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 320px);
    justify-content: center;
    gap: 1.5rem;
}

.team-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-card .team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
}

.team-card .team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1D1D1F;
    margin: 1rem 0 0.25rem;
}

.team-card .team-role {
    font-size: 17px;
    color: #6E6E73;
    margin: 0;
}

@media (max-width: 768px) {
    .team {
        padding: 1rem;
    }

    .team-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
