/* Team section enhancements for Gravatar icons */
.team-member .team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member .team-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.team-member h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.team-member p {
    color: #555;
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
}

/* Mobile responsiveness for team section */
@media (max-width: 768px) {
    .team-member .team-image {
        width: 150px;
        height: 150px;
    }
    
    .team-member h3 {
        font-size: 1.3rem;
    }
    
    .team-member p {
        font-size: 0.95rem;
        max-width: 300px;
    }
}
