/* Team Page Specific Styles */
/* Depends on style.css for CSS variables and base styles */

/* Team Member Cards */
.team-member {
    text-align: center;
}

.team-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.team-icon-accent {
    color: var(--accent);
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Team Social Links */
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

