.leadership-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    min-height: 380px;
    margin-bottom: 1.5rem;
}

.hover-scale:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}

.avatar-circle-lg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.social-icon {
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.bio-text {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .leadership-card {
        margin-bottom: 2rem;
    }
}

.team-image{
    height: 110px;
    width: 110px;
    border-radius: 100%;
}