.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.team-member {
    text-align: center;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-member-photo {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member-name {
    font-size: 18px;
    margin: 10px 0 5px;
}

.team-member-title {
    color: gray;
    font-size: 14px;
    margin-bottom: 10px;
}

.team-member-links a {
    margin: 0 5px;
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
}

.team-member-links a:hover {
    text-decoration: underline;
}
