/* team.css */

.team-hero {
    background-size: cover;
    background-position: center;
    padding: var(--spacing-xl) 0;
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
}

.team-members .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-md);
}