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

.team-member {
    background: white;
    border-radius: 12px;
    /*padding: 2rem;*/
    text-align: center;
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
    transition: transform 0.3s ease;
}

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

.headshot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #4a90e2, #357abd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.position {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bio {
    color: #555;
    line-height: 1.5;
    font-size: 0.9rem;
}

@media (max-width: 360px) {
    body {
        padding: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}