.team-section {
    padding: 6rem 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.1) 0%, rgba(61, 61, 61, 0.1) 100%);
    pointer-events: none;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, var(--text), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.team-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

    .team-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .team-grid {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .team-section h2 {
        font-size: 1.75rem;
    }
} 