.team-section { padding: 88px 0; background: var(--grey-bg); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}
.team-card__photo {
    width: 130px;
    height: 130px;
    margin: 0 auto 16px;
    border-radius: 9999px;
    overflow: hidden;
    background: var(--blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__photo--placeholder {
    color: var(--blue);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
}
.team-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--text-dark); margin-bottom: 4px; }
.team-card__role { font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: var(--blue); margin-bottom: 10px; }
.team-card__bio { font-size: 16px; line-height: 1.5; color: var(--text-body); }
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .team-grid { grid-template-columns: 1fr; } }
