/* =========================
   STAFF CARD STYLING
========================= */

.staff-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Prevent image expansion issues */
.staff-photo {
    height: 100%;
    overflow: hidden;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Keep layout stable when bio expands */
.staff-card .row {
    align-items: flex-start;
}

/* Text section */
.staff-info {
    position: relative;
}

/* Bio section */
.staff-full-bio {
    margin-top: 10px;
}

/* Button styling consistency */
.read-more-btn {
    margin-top: 10px;
}

/* Optional: smoother expand feel */
.staff-full-bio {
    transition: all 0.3s ease-in-out;
}
.student-photo {
    height: 250px;
}

.student-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}