:root{--page-title-display:none;}/* Start custom CSS for section, class: .elementor-element-5268b16 *//* =========================
   FACULTY HTML PAGE CSS
========================= */

.faculty-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* TITLE */
.faculty-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #8b0000;
    margin-bottom: 35px;
}

/* GRID */
.faculty-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* BOX */
.faculty-box {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    transition: 0.3s ease;
}

/* LEFT RED BORDER */
.faculty-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 5px;
    background: #8b0000;
    border-radius: 10px;
}

/* HEADING */
.faculty-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

/* LIST */
.faculty-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* LIST ITEM */
.faculty-box ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 16px;
    color: #374151;
    padding-left: 20px;
    position: relative;
}

/* BULLET */
.faculty-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b0000;
    font-size: 18px;
}

/* REMOVE LAST BORDER */
.faculty-box ul li:last-child {
    border-bottom: none;
}

/* HOVER */
.faculty-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* LIBRARIAN */
.librarian {
    margin-top: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .faculty-grid {
        flex-direction: column;
    }
}/* End custom CSS */