.team-page {
    padding-top: 80px; /* Account for fixed navbar */
}

.team-section,
.advisors-section {
    padding: 4rem 0;
}

.team-section {
    background-color: var(--white);
}

.advisors-section {
    background-color: var(--bg-light);
}

.team-page h1,
.team-page h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect ratio */
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.linkedin-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0077b5;
    transition: transform 0.3s ease;
}

.linkedin-icon:hover {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 1rem;
    color: var(--text-dark);
}

.team-member h4 {
    font-size: 1rem;
    margin: 0 1rem;
    color: var(--primary-color);
}

.team-member p {
    margin: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
} 