/* ======================================================
 * CARD NHÂN SỰ (DANH SÁCH)
 * ====================================================== */
.schooldx-nhan-su-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.schooldx-nhan-su-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.schooldx-nhan-su-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 6px;
}

/* Hiệu trưởng ghim nổi */
.schooldx-nhan-su-card.is-hieu-truong {
    border: 2px solid #f4b400;
    box-shadow: 0 8px 22px rgba(244,180,0,0.35);
}

/* Icon sao */
.schooldx-star {
    color: #f4b400;
    font-size: 18px;
    margin-left: 6px;
    vertical-align: middle;
}

/* ======================================================
 * KHỐI CHI TIẾT NHÂN SỰ
 * ====================================================== */
.schooldx-detail-box {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 25px 20px;
    margin-bottom: 50px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Tiêu đề + icon hồ sơ */
.schooldx-detail-box .schooldx-name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c40000;
    font-size: 24px;
    font-weight: 700;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 18px;
}

/* Icon hồ sơ */
.schooldx-detail-box .schooldx-name::before {
    content: "\f330"; /* dashicons-id-alt */
    font-family: "Dashicons";
    font-size: 22px;
    line-height: 1;
    color: #0a7c2f;
}

/* Ảnh đại diện */
.schooldx-avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e5e5e5;
}

/* Bảng thông tin */
.schooldx-info-table {
    width: 100%;
    border-collapse: collapse;
}

.schooldx-info-table th {
    width: 160px;
    text-align: left;
    padding: 10px 10px 10px 8px;
    background: #f5f5f5;
    font-weight: 600;
}

.schooldx-info-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

/* ======================================================
 * QUÁ TRÌNH CÔNG TÁC – TIMELINE
 * ====================================================== */
.schooldx-qua-trinh {
    margin-top: 25px;
}

.schooldx-qua-trinh h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.schooldx-timeline {
    position: relative;
    margin-top: 15px;
    padding-left: 50px;
    border-left: 3px solid #0a7c2f;
}

.schooldx-timeline-item {
    position: relative;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.schooldx-timeline-icon {
    position: absolute;
    left: -20px;
    width: 30px;
    height: 30px;
    background: #0a7c2f;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}

.schooldx-timeline-content {
    background: #f9f9f9;
    padding: 10px 12px;
    border-radius: 6px;
    width: 100%;
}

/* Thời gian (in đậm) */
.schooldx-timeline-time {
    font-weight: 700;
    color: #0a7c2f;
    margin-bottom: 4px;
    font-size: 14px;
}

/* Nội dung */
.schooldx-timeline-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* ======================================================
 * NHÂN SỰ LIÊN QUAN
 * ====================================================== */
.schooldx-related {
    margin-top: 50px;
    background: #f8fdf8;
    border-top: 4px solid #0a7c2f;
    padding: 30px 20px;
    border-radius: 8px;
}

.schooldx-related-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0a7c2f;
    text-transform: uppercase;
}

.schooldx-related .schooldx-nhan-su-card {
    box-shadow: none;
    border: 1px solid #e0e0e0;
}

/* ======================================================
 * MOBILE
 * ====================================================== */
@media (max-width: 768px) {

    .schooldx-detail-box {
        padding: 20px 15px;
    }

    .schooldx-avatar {
        width: 180px;
        height: 180px;
    }

    .schooldx-detail-box .schooldx-name {
        font-size: 20px;
    }

    .schooldx-timeline {
        padding-left: 44px;
    }

    .schooldx-timeline-icon {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 14px;
        left: -19px;
    }
}
/* ======================================================
 * ẨN TIÊU ĐỀ MẶC ĐỊNH CỦA THEME (FLATSOME)
 * CHỈ TRÊN TRANG CHI TIẾT NHÂN SỰ
 * ====================================================== */

/* Title chuẩn WordPress / Flatsome */
.single-nhan_su h1.entry-title,
.single-nhan_su .entry-header,
.single-nhan_su .page-title,
.single-nhan_su .blog-post-title,
.single-nhan_su header.entry-header {
    display: none !important;
}
/* ======================================================
 * BREADCRUMB NHÂN SỰ
 * ====================================================== */
.schooldx-breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}

.schooldx-breadcrumb a {
    color: #0a7c2f;
    text-decoration: none;
    font-weight: 600;
}

.schooldx-breadcrumb a:hover {
    text-decoration: underline;
}

.schooldx-breadcrumb .sep {
    margin: 0 6px;
    color: #999;
}

.schooldx-breadcrumb .current {
    color: #c40000;
    font-weight: 700;
}
