/* --- TOÀN TRANG & ĐỊNH DẠNG CHUNG --- */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 10px;
    color: #333;
}

/* Khung bọc tổng thể bao quanh giống đường viền đen của hình */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border: 1px solid #111;
    padding: 15px;
}

/* --- 1. SỬ LÝ PHẦN HEADER LOGO --- */
.site-header {
    text-align: center;
    padding: 15px 0;
}
.school-name {
    color: #0d47a1;
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}
.faculty-name {
    color: #0d47a1;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

/* --- 2. THANH MENU ĐIỀU HƯỚNG --- */
.main-navigation {
    background-color: #0b54cb; /* Màu xanh dương thương hiệu */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    height: 42px;
    margin-bottom: 20px;
}
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    padding: 0 15px;
    font-weight: 500;
}
.search-box input {
    width: 200px;
    padding: 4px 8px;
    font-size: 11px;
    border: 1px solid #ccc;
}

/* --- CẤU HÌNH GRID LAYOUT CHÍNH (CHIA 2 CỘT DỌC) --- */
.main-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr; /* Cột trái rộng gấp 2.5 lần cột phải */
    gap: 30px;
    margin-bottom: 20px;
}

/* Định dạng chung tiêu đề của từng vùng */
.section-title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 15px;
}

/* --- CỘT BÊN TRÁI: TIN TỨC & BÀI VIẾT --- */
.section-block {
    margin-bottom: 30px;
}
.post-date {
    font-size: 11px;
    color: #666;
    display: block;
    margin-bottom: 10px;
}
.news-item {
    display: flex;
    gap: 15px;
}
.news-item img {
    width: 240px;
    height: 150px;
    object-fit: cover;
    border: 1px solid #eee;
}
.news-desc h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #000;
    line-height: 1.4;
}
.news-desc p {
    margin: 0;
    font-size: 12.5px;
    color: #555;
    line-height: 1.5;
    text-align: justify;
}

/* Phần tin danh sách Đào tạo (Có nhãn tag màu vàng) */
.sub-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.sub-news-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.thong-bao-tag {
    background-color: #fff6d6;
    border: 1px solid #ffcc00;
    color: #000;
    font-size: 11px;
    font-weight: bold;
    padding: 10px;
    width: 70px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}
.sub-news-content a {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
}
.sub-news-content a:hover {
    color: #0b54cb;
}
.sub-date {
    font-size: 11px;
    color: #888;
}

/* --- CỘT BÊN PHẢI: SIDEBAR THÔNG BÁO --- */
.sidebar-block {
    margin-bottom: 25px;
}
.announcement-item {
    border-bottom: 1px dashed #ddd;
    padding: 10px 0;
}
.announcement-item:last-child {
    border-bottom: none;
}
.sidebar-date {
    font-size: 11px;
    color: #777;
    display: block;
    margin-bottom: 3px;
}
.announcement-item a {
    color: #000;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: bold;
    line-height: 1.4;
    display: block;
}

/* Phần Các banner Tiêu điểm */
.banner {
    color: white;
    font-size: 13px;
    font-weight: bold;
    padding: 18px 12px;
    margin-bottom: 12px;
    text-align: center;
    border-radius: 4px;
}
.black-banner {
    background: linear-gradient(to right, #111, #444);
}
.purple-banner {
    background: linear-gradient(to right, #9c27b0, #ba68c8);
}

/* --- 3. ĐỊNH DẠNG PHẦN FOOTER HỆ THỐNG --- */
.site-footer {
    border-top: 1px solid #ccc;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    background-color: #f7f7f7;
    padding: 15px;
}
.footer-info h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #000;
}
.footer-info p {
    margin: 5px 0;
    font-size: 12px;
    color: #555;
}
.footer-map img {
    width: 250px;
    height: 110px;
    object-fit: cover;
    border: 1px solid #ddd;
}

/* LINK QUAY LẠI TRANG CHỦ */
.back-link {
    color: #444;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}
.back-link:hover {
    text-decoration: underline;
}