.team-grid-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.team-card { display: flex; flex-direction: column; align-items: center; padding: 20px; }
.team-card-image-wrapper { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; background-color: #e0e0e0; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.team-card-image { width: 100%; height: 100%; object-fit: cover; }
.team-card-image-placeholder::after { content: '\f03e'; font-family: 'FontAwesome'; font-size: 50px; color: #fff; opacity: 0.7; }

.team-card-name { margin: 0 0 5px; font-size: 20px; font-weight: bold; }
.team-card-position { font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.team-card-department { font-size: 14px; opacity: 0.8; margin-bottom: 15px; }
.team-card-description { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }

.team-card-socials { display: flex; gap: 15px; justify-content: center; margin-top: auto; }
.team-social-icon { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: opacity 0.3s ease, color 0.3s ease; }
.team-social-icon:hover { opacity: 0.8; }

@media (max-width: 1024px) {
    .team-grid-wrapper { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .team-grid-wrapper { grid-template-columns: 1fr; }
}