/* ============================================
 * Module: Team
 * Source views: index, show
 * ============================================ */

/* --- Index --- */
.team-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}
.team-card .card-img-top {
    height: 280px;
    object-fit: cover;
}
.team-list-card {
    transition: box-shadow 0.2s ease;
}
.team-list-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1) !important;
}
.object-fit-cover {
    object-fit: cover;
}
.list-group-item.active {
    background-color: var(--bs-primary, #0d6efd);
    border-color: var(--bs-primary, #0d6efd);
}
.list-group-item:not(.active):hover {
    background-color: #f8f9fa;
}

/* --- Show --- */
.member-bio {
    font-size: 1.05rem;
    line-height: 1.8;
}
