/* =========================================
   MOBILE VIEW IMAGE FIXES
   ========================================= */

/* Fix faculty card images on mobile - show full face and upper body */
@media (max-width: 991px) {

    /* Ensure faculty card images display properly with faces visible */
    .faculty-card img,
    .faculty__card-img,
    .faculty-card__image img,
    .card img,
    .card-img-top {
        width: 100% !important;
        height: 280px !important;
        object-fit: cover !important;
        object-position: center top !important;
        /* Show from top to get full face */
        max-height: 280px !important;
    }

    /* Fix faculty card container */
    .faculty-card,
    .faculty-card__image,
    .card {
        overflow: hidden !important;
        height: auto !important;
    }

    /* Ensure image containers show proper headshot framing */
    .faculty-card .card-img-top,
    .faculty-card__image {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }

    /* Remove zoom on hover for mobile */
    .faculty-card:hover .faculty-card__image img,
    .faculty-card:hover img {
        transform: none !important;
    }

    /* Ensure faculty card content doesn't overlap image */
    .faculty-card__content {
        margin-top: 0 !important;
        padding-top: 16px;
    }

    /* Fix VC card special styling on mobile */
    .faculty-card--vc .faculty-card__image--vc img {
        height: 300px !important;
        object-position: center 15% !important;
    }
}