.team-grid-05f6c807 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 1024px) {
    .team-grid-05f6c807 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .team-grid-05f6c807 { grid-template-columns: 1fr; }
}
.team-member-05f6c807 {
    text-align: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.team-member-05f6c807 img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
}
.team-member-05f6c807 h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    color: #333;
}
.team-member-05f6c807 .title {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.team-member-05f6c807 .contact-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.team-member-05f6c807 .contact-icons a {
    color: #555;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.team-member-05f6c807 .contact-icons a:hover {
    color: #0073aa;
}