.faculty-card {
    text-align: center;
    background: #fff;
    padding: 20px 15px;
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 8px;  
    transition: all 0.3s ease;

    height: 390px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.faculty-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.faculty-image {
    height: 150px;
    width: 150px;
    flex-shrink: 0;
}

.faculty-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto;
    border-radius: 12px;
    display: block;
}

.infobox-title {
    margin: 15px 0 8px;
    font-size: 18px;
    height: 22px;
}

.infobox-text {
    font-size: 13px;
    line-height: 1.6;
    color: #666;

    /* Same space for details */
    height: 70px;
    margin: 0 0 15px;
}

.faculty-card .read {
    margin-top: auto;
}

@media (max-width: 767px) {

    .faculty-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 30px;
    }

    .faculty-image {
        margin-left: auto;
        margin-right: auto;
    }

}