/* Team Card Component Styles */

/* Team Social Links Styling */
.team-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.3);
}

.linkedin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
    background: linear-gradient(135deg, #005885, #004a73);
    color: white;
    text-decoration: none;
}

.linkedin-link i {
    font-size: 18px;
}

.linkedin-link:active {
    transform: translateY(0);
}

/* Responsive adjustments for team cards */
@media (max-width: 768px) {
    .team-social-links {
        margin-top: 15px;
    }
    
    .linkedin-link {
        width: 35px;
        height: 35px;
    }
    
    .linkedin-link i {
        font-size: 16px;
    }
}
