/* Team Section */
.team {
    padding: 100px 0;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px var(--shadow-hover);
    border-color: var(--glass-border);
}

.team-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border-light);
    transition: all 0.3s ease;
}

.team-card:hover .avatar {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.avatar svg {
    width: 100%;
    height: 100%;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--lighter-bg);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.team-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.team-bio {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}
