/* ============================================================
    1. CẤU TRÚC CHUNG (LINH HOẠT MOBILE - KHÓA 1200PX DESKTOP)
   ============================================================ */
body {
    font-family: 'Inter', sans-serif, Arial !important;
    background-color: #f4f7f9;
    margin: 0;
    padding: 0;
}

/* Container chính: Chỉ khóa 1200px khi màn hình đủ lớn */
.pkp_structure_content,
.footer-container,
.pkp_navigation_primary_row {
    width: 100% !important; /* Mặc định đầy màn hình trên mobile */
    max-width: 1200px !important; /* Không bao giờ vượt quá 1200px */
    margin: 0 auto !important;
    display: flex !important;
    flex-wrap: wrap !important; /* Cho phép rớt dòng trên mobile */
}

/* Cột chính và Sidebar tự động dàn hàng ngang hoặc dọc */
.pkp_structure_main { 
    width: 75% !important; 
    padding: 3px !important; 
}
.pkp_structure_sidebar { 
    width: 25% !important; 
    padding: 2px !important; 
}

/* Trên điện thoại: Ép cột chính và cột phải xếp chồng lên nhau */
@media (max-width: 992px) {
    .pkp_structure_main, 
    .pkp_structure_sidebar {
        width: 100% !important;
        float: none !important;
    }
}
/* ============================================================
    2. ĐẦU TRANG & MENU TÀI KHOẢN (USER MENU)
   ============================================================ */
header.pkp_structure_head, .pkp_head_wrapper {
    background-color: #ffffff !important;
    border: none !important; 
    margin: 0 !important; 
    padding: 0 !important;
    position: relative !important; /* Làm mốc cho các phần tử absolute bên trong */
}

.pkp_site_name_wrapper { display: none !important; }

/* Cụm tài khoản trên Banner */
#navigationUserWrapper {
    position: absolute !important;
    top: 15px !important;
    left: 490px !important;
    display: flex !important;
    justify-content: flex-end !important;
    padding-right: 5px !important;
    /* QUAN TRỌNG: z-index cao để nổi lên trên cùng */
    z-index: 9999 !important; 
}

#navigationUserWrapper .pkp_navigation_user {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    list-style: none !important;
    margin: 0 !important; 
    padding: 0 !important;
}

#navigationUserWrapper .pkp_navigation_user > li > a {
    color: #ffcc00 !important;
    font-weight: bold !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    padding: 5px 8px !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

#navigationUserWrapper .pkp_navigation_user > li > a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 4px;
}

#navigationUserWrapper .pkp_navigation_user .task_count { display: none !important; }

/* ============================================================
    3. THANH MENU CHÍNH (MÀU XANH - CÓ GẠCH TRẮNG PHÂN CÁCH)
   ============================================================ */
nav.pkp_site_nav_menu {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
    width: 100% !important; 
    margin: 0 !important; 
    padding: 0 !important;
    position: relative !important;
    z-index: 100 !important; /* Thấp hơn menu tài khoản */
}

.pkp_navigation_primary_row {
    width: 1200px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    background-color: #0451b5 !important;
    border-bottom: 1px solid #e2e7ed !important;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1) !important;
}

.pkp_navigation_primary_wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    height: 45px !important;
    padding: 0 !important; 
    margin: 0 !important;
}

ul.pkp_navigation_primary {
    display: flex !important;
    flex-grow: 1 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Tạo gạch trắng phân cách */
ul.pkp_navigation_primary > li {
    border-right: 1px solid #ffffff !important;
    margin: 0 !important;
}

ul.pkp_navigation_primary > li:last-child {
    border-right: none !important;
}

/* Mục TRANG CHỦ đầu tiên có màu đỏ */
ul.pkp_navigation_primary > li:first-child {
    background-color: #e32028 !important;
}

ul.pkp_navigation_primary > li > a {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 0 15px !important; /* Tăng padding để chữ không dính vào vạch ngăn */
    text-transform: uppercase !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    height: 45px !important;
    text-decoration: none !important;
    transition: all 0.2s;
}

ul.pkp_navigation_primary > li > a:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffcc00 !important;
}

/* Icon Home màu trắng */
.pkp_navigation_primary > li:first-child > a::before {
    content: "";
    display: inline-block;
    width: 18px; 
    height: 18px;
    margin-right: 5px;
    margin-left: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Nút tìm kiếm trên Menu */
.pkp_navigation_search_wrapper {
    margin-left: auto !important;
    padding-right: 15px !important;
}

.pkp_navigation_search_wrapper a {
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
}
/* Đảm bảo khối ảnh quảng cáo luôn nằm dưới */
.banner-ads-wrapper {
    position: relative !important;
    z-index: 1 !important;
}

/* Đảm bảo menu chính và menu con phải nằm trên cùng */
nav.pkp_site_nav_menu, .pkp_navigation_primary_row {
    position: relative !important;
    z-index: 999 !important; /* Số lớn hơn z-index của banner */
}

/* Ép các menu con (dropdown) hiển thị trên mọi thứ */
ul.pkp_navigation_primary li ul {
    z-index: 1000 !important;
}
/* ============================================================
    4. BREADCRUMBS (TRANG CHỦ / GIỚI THIỆU)
   ============================================================ */
@media (min-width: 1200px) { .pkp_structure_content { padding-top: 0 !important; } }

.cmp_breadcrumbs {
    background: transparent !important;
    border: none !important; box-shadow: none !important;
    padding: 1px 0 !important; margin: -29px 0 0 0 !important;;
}

.cmp_breadcrumbs ol li a, .cmp_breadcrumbs ol li {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-decoration: none !important;
}

.cmp_breadcrumbs ol li.current { color: #0451b5 !important; }

/* Ẩn tiêu đề trang lặp lại */
.page_about h1.page_title, 
body[class*="pkp_page_"] h1.page_title { display: none !important; }

/* ============================================================
    5. FOOTER (SỬA LỖI ICON KHỔNG LỒ)
   ============================================================ */
.footer-wrapper {
    background: #001a33 !important;
    color: #ffffff !important;
    padding: 40px 0 30px 0 !important;
    border-top: 4px solid #ffcc00 !important;
    width: 100% !important;
}

.footer-container {
    width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 30px !important;
}

.footer-column { flex: 1 !important; min-width: 0 !important; }

.footer-title {
    color: #ffcc00 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    border-left: 3px solid #ffcc00;
    padding-left: 10px; margin-bottom: 20px !important;
}

.footer-svg-icon {
    display: inline-flex !important;
    width: 20px !important; height: 20px !important;
    margin-right: 10px !important;
    color: #ffcc00 !important;
    flex-shrink: 0 !important;
}

.footer-svg-icon svg {
    width: 18px !important; height: 18px !important;
    display: block !important;
}

.footer-info {
    display: flex !important;
    align-items: flex-start !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 12px !important;
}

.footer-text { font-size: 14px !important; color: #cccccc !important; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 15px 0; width: 100% !important; }
.uppercase { text-transform: uppercase !important; font-weight: bold; }

/* ============================================================
    6. SIDEBAR & NÚT GỬI BÀI
   ============================================================ */
.pkp_structure_sidebar .pkp_block {
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

.pkp_structure_sidebar .pkp_block .title {
    color: #e32028 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    position: relative !important;
    padding: 0 0 15px 15px !important;
}

.pkp_structure_sidebar .pkp_block .title::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 15px;
    width: 4px; background: #e32028; border-radius: 2px;
}

/* Nút gửi bài cố định */
.floating-submission-btn {
    display: flex !important;
    position: fixed; bottom: 40px; right: 40px; z-index: 3;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e32028 0%, #a30000 100%);
    color: #ffffff !important;
    font-size: 16px; font-weight: 800;
    text-transform: uppercase; border-radius: 50px;
    box-shadow: 0 10px 30px rgba(227, 32, 40, 0.4);
    transition: all 0.3s;
    text-decoration: none !important;
}
.floating-submission-btn:hover { transform: translateY(-5px); filter: brightness(1.1); }

@media (min-width: 1200px) {
    .pkp_navigation_primary > li:first-child a {
        margin-left: 0 !important;
    }
}

/* ============================================================
    TRANG TRÍ NÚT CHUYỂN NGÔN NGỮ
   ============================================================ */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: flex-end; /* Đẩy sang phải theo cụm tài khoản */
}

.lang-item {
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    padding: 3px 8px !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 1;
    text-transform: uppercase;
}

/* Nút tiếng Anh (Màu vàng giống nút tài khoản) */
.lang-item.en {
    color: #ffcc00 !important;
    border-color: #ffcc00 !important;
}

/* Nút tiếng Việt (Màu trắng) */
.lang-item.vi {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

/* Hiệu ứng khi di chuột vào */
.lang-item:hover {
    background-color: #ffcc00 !important;
    color: #001a33 !important; /* Chữ tối trên nền vàng */
    border-color: #ffcc00 !important;
}

/* Vạch ngăn cách */
.lang-divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
}

/* Fix lỗi menu tài khoản bị che (Tổng hợp lại cho chắc chắn) */
#navigationUserWrapper {
    z-index: 99999 !important;
}
.pkp_navigation_primary_row {
    z-index: 5 !important;
}
#navigationUserWrapper ul {
    overflow: visible !important;
}

/* ============================================================
    8. KHUNG TIN TỨC CHẠY NGANG (NEWS TICKER)
   ============================================================ */
.news-ticker-container {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e7ed;
    border-left: 4px solid #e32028; /* Viền đỏ đồng bộ với menu */
    border-radius: 4px;
    overflow: hidden;
    margin: 3px auto !important; /* Căn giữa */
    width: 100% !important;
    max-width: 1200px !important; /* Khóa độ rộng bằng chuẩn website */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.news-ticker-title {
    background: #e32028;
    color: #fff;
    padding: 5px 5px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    text-transform: uppercase;
    z-index: 2;
}

.news-ticker-content {
    flex-grow: 1;
    overflow: hidden;
    padding-left: 15px;
    white-space: nowrap;
}

.news-ticker-list {
    display: inline-block;
    padding-left: 100%; /* Bắt đầu chạy từ mép phải màn hình */
    animation: ticker 30s linear infinite; /* Tốc độ chạy (tăng giảm 30s để chỉnh tốc độ) */
}

/* Dừng chạy khi người dùng di chuột vào để dễ click */
.news-ticker-container:hover .news-ticker-list {
    animation-play-state: paused;
}

.news-ticker-list a {
    color: #0451b5;
    text-decoration: none;
    font-weight: 600;
    margin-right: 50px; /* Khoảng cách giữa các tin */
    font-size: 14px;
}

.news-ticker-list a:hover {
    color: #e32028;
    text-decoration: underline;
}

/* Hiệu ứng chuyển động */
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Ghi đè khoảng cách lề trên bị dư của nội dung chính */
@media (min-width: 992px) {
    .pkp_structure_content {
        padding-top: 0 !important; /* Đổi 0 thành con số khác nếu bạn muốn lề hẹp lại thay vì xóa hẳn */
    }
}

/* Bỏ padding trên/dưới và viền ngang, GIỮ LẠI padding trái/phải của hệ thống */
.pkp_page_index .additional_content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-top: none !important;
}

/* Xóa hoàn toàn khoảng hở phía dưới của danh sách breadcrumbs */
.cmp_breadcrumbs ol {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* ============================================================
   1. KHUNG TIÊU ĐỀ SỐ HIỆN TẠI (THEME CHUYÊN NGHIỆP)
   ============================================================ */
.pkp_page_index .current_issue > h2 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid #0f461e;
    display: inline-block;
}

.pkp_page_index .current_issue .obj_issue_toc {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
    overflow: hidden;
}

/* Khối header xanh chứa ảnh bìa và thông tin */
.pkp_page_index .current_issue .obj_issue_toc > .heading {
    display: flex;
    align-items: stretch;
    background: #0f461e; /* Màu xanh đậm */
}

.pkp_page_index .current_issue .obj_issue_toc > .heading .cover {
    flex: 0 0 260px;
    width: 260px;
    margin: 0;
}

.pkp_page_index .current_issue .obj_issue_toc > .heading .cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkp_page_index .current_issue .obj_issue_toc > .heading .issue-meta {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #fff;
}

/* Tên số tạp chí (Vd: Tập 1 Số 2) */
.pkp_page_index .current_issue .obj_issue_toc > .heading .issue-series {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
    color: rgba(255,255,255,0.97);
}

/* Khối ISSN và Tên tạp chí nổi bật */
.pkp_page_index .current_issue .obj_issue_toc > .heading .issue-issn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 1rem !important;
    color: #ffffff !important;
    opacity: 1 !important;
    margin-top: 5px;
}

.pkp_page_index .current_issue .obj_issue_toc > .heading .issue-issn span {
    font-weight: 700 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Dòng Tên tạp chí to nhất */
.journal-name-highlight {
    font-size: 2.0rem !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    display: block;
    margin-top: 8px;
}

/* Ngày xuất bản và nút xem chi tiết */
.pkp_page_index .current_issue .obj_issue_toc > .heading .published .label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    opacity: 0.6;
    letter-spacing: 0.07em;
}

.pkp_page_index .current_issue .obj_issue_toc > .heading .issue-view-btn {
    display: inline-flex;
    margin-top: auto;
    padding: .42rem 1rem;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.55);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
}

/* ============================================================
   2. CHIA LƯỚI BÀI VIẾT (GRID 2 CỘT)
   ============================================================ */
.ihs_articles_grid .section .articles {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1px !important; /* Khoảng cách giữa các ô */
    padding: 10px 0 !important;
    list-style: none !important;
}

.ihs_articles_grid .section .articles > li {
    margin-bottom: 0 !important; /* Đã có gap ở trên nên bỏ margin-bottom thừa */
    padding: 0 !important;
}

/* Định dạng từng ô bài viết (Khung đều, xóa gạch chân) */
.ihs_no_cover_style {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    background: #fff !important;
    border: 0px solid #e5e7eb !important;
    border-radius: 0px !important;
    padding: 5px !important;
    height: 100% !important; /* Ép cao bằng nhau */
    min-height: 160px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}



.ihs_no_cover_style:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
}

/* Tiêu đề bài báo */
.ihs_no_cover_style .title {
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    margin: 0 0 10px 0 !important;
}

.ihs_no_cover_style .title a {
    text-decoration: none !important;
    border-bottom: none !important;
    color: #0451b5 !important;
}

.ihs_no_cover_style .title a:hover {
    color: #e32028 !important;
}

/* Tác giả */
.ihs_no_cover_style .authors {
    font-style: italic !important;
    font-size: 13px !important;
    color: #6b7280 !important;
    margin-bottom: 15px !important;
}

/* Nút PDF luôn nằm dưới đáy ô */
.btn_galleys {
    margin-top: auto !important;
    padding-top: 10px !important;
}

.btn_galleys a {
    background: #f8f9fa !important;
    border: 1px solid #ccc !important;
    padding: 4px 12px !important;
    font-size: 12px !important;
    color: #333 !important;
    text-decoration: none !important;
    border-radius: 4px;
}

/* Nút Xem tất cả số ở dưới cùng */
.pkp_page_index .current_issue .read_more {
    display: inline-flex;
    margin-top: 2rem;
    background: #0f461e;
    color: #fff;
    padding: .6rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* Ẩn mô tả thừa */
.obj_issue_toc .description, 
.obj_issue_toc .issue_date_published {
    display: none !important;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .ihs_articles_grid .section .articles {
        grid-template-columns: 1fr !important;
    }
    .pkp_page_index .current_issue .obj_issue_toc > .heading {
        flex-direction: column;
    }
    .pkp_page_index .current_issue .obj_issue_toc > .heading .cover {
        width: 100%;
        flex: none;
        height: 200px;
    }
}

.obj_issue_toc .sections:not(:first-child) {
    margin-top: 0 !important;
}

@media (min-width: 992px) {
    .obj_issue_toc .galleys, 
    .obj_issue_toc .section {
        margin: 0 !important; /* Triệt tiêu hoàn toàn khoảng cách margin âm và dương */
        padding: 0 !important; /* Đảm bảo không bị đệm lề bên trong */
    }
}


@media (min-width: 768px) {
    .obj_issue_toc .galleys>h2, .obj_issue_toc .section>h2, .obj_issue_toc .galleys>h3, .obj_issue_toc .section>h3 {
        display: inline-block;
        position: relative;
        left: 15px;
        margin-top: 0;
        padding: 0 1.0715rem;
        background: #fff;
        font-size: 1.7rem;
        font-weight: 700;
        line-height: 2.143rem;
        color: #0d4692;
    }
}

@media (min-width: 768px) {
    .pkp_structure_main:before,.pkp_structure_main:after {
        content:'';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0px;
        background: #ddd
    }
/* TỔNG THỂ KHUNG CHI TIẾT BÀI BÁO (Card Style) */
.obj_article_details {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 2.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

/* TIÊU ĐỀ CHÍNH BÀI BÁO */
.obj_article_details .page_title {
    font-size: 2.2rem;    /* Chữ to */
    font-weight: 800;     /* In đậm siêu dày */
    font-style: normal;   /* Không nghiêng */
    line-height: 1.2;
    color: #1f2937;       /* Màu chữ đậm rõ nét */
    margin-bottom: 0.5rem;
}

/* TIÊU ĐỀ PHỤ (SUBTITLE) */
.obj_article_details .subtitle {
    font-size: 1.4rem;    /* Chữ to vừa phải */
    font-weight: 700;     /* In đậm */
    font-style: normal;   /* Ép không nghiêng - bỏ font-style cũ */
    line-height: 1.4;
    color: #4b5563;       /* Màu xám đậm */
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* CHIA CỘT SỬ DỤNG FLEXBOX (Đảm bảo cân đối) */
.obj_article_details .row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    border: none;
    margin-top: 1.5rem;
}

/* CỘT NỘI DUNG CHÍNH (Trái) */
.obj_article_details .main_entry {
    float: none;
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    padding-right: 2rem;
}

/* CỘT THÔNG TIN PHỤ (Phải - Sidebar) */
.obj_article_details .entry_details {
    float: none;
    width: 28%;
    min-width: 250px;
    flex: 0 0 28%;
    background: #f4f7f9;
    border-radius: 12px;
    padding: 1.5rem !important;
    border: 1px solid #f1f5f9;
}

/* HIỂN THỊ ẢNH ĐẠI DIỆN TRÊN CÙNG SIDEBAR */
.obj_article_details .item.cover_image {
    display: block !important;
    padding: 0 0 1.5rem 0 !important;
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}

.obj_article_details .item.cover_image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* PHẦN TÓM TẮT (Abstract) */
.obj_article_details .abstract {
    background: #ecf0ed;
    border-left: 5px solid #006798;
    padding: 1.25rem;
    border-radius: 0 6px 6px 0;
    margin: 1.25rem 0;
    line-height: 1.8;
    text-align: justify; /* Canh đều hai bên */
    color: #333;
}

.obj_article_details .abstract h2.label, 
.obj_article_details .abstract h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #006798;
    margin: 0 0 .5rem;
    font-weight: 700;
    border: none;
}

/* TÀI LIỆU THAM KHẢO */
.obj_article_details .item.references {
    margin-top: 30px;
    border-top: 2px solid #eee;
    padding-top: 20px;
}

.obj_article_details .item.references .label {
    color: #006798;
    text-transform: uppercase;
    font-weight: 700;
}

.obj_article_details .item.references .value {
    text-align: justify; /* Canh đều hai bên */
    line-height: 1.6;
    font-size: 1.05rem;
    color: #333;
}

.obj_article_details .item.references p {
    margin-bottom: 12px;
    padding-left: 20px;
    text-indent: -20px; /* Thụt đầu dòng treo chuyên nghiệp */
}

/* KHỐI TÁC GIẢ */
.obj_article_details .item.authors {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #006798;
    margin-bottom: 20px;
}

.obj_article_details .authors .name {
    font-weight: 700;
    color: #333;
}

/* NÚT TẢI PDF (Galleys) */
.obj_article_details .galleys_links a {
    display: inline-block;
    background: #006798;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 5px;
}

.obj_article_details .galleys_links a:hover {
    background: #004b71;
    transform: translateY(-1px);
}

/* DOI NỔI BẬT */
.obj_article_details .item.doi .value a {
    font-weight: 700;
    color: #d00a6c;
    text-decoration: none;
    word-break: break-all;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .obj_article_details .row {
        flex-direction: column;
    }
    .obj_article_details .entry_details {
        width: 100%;
        flex: none;
        margin-top: 2rem;
    }
    .obj_article_details .main_entry {
        padding-right: 0;
    }
}

/* ĐỊNH DẠNG 3 TẦNG: TIÊU ĐỀ (ĐẦU) - TÁC GIẢ (GIỮA) - THÔNG TIN (CUỐI) */

#articlesBySimilarityList ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2px !important;
    list-style: none !important;
    padding: 0 !important;
    counter-reset: similar-count !important;
}

#articlesBySimilarityList ul li {
    display: flex !important;
    flex-direction: column !important; /* Xếp hàng dọc */
    background: #f8fafc !important;
    padding: 15px 15px 15px 45px !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    position: relative !important;
    text-align: justify !important;
    
    /* Hiện lại chữ để không mất tên tác giả */
    font-size: 0.95rem !important; 
    font-style: italic !important; /* Mặc định cho Tác giả in nghiêng */
    color: #4b5563 !important;
}

/* 1. HIỆN TIÊU ĐỀ LÊN ĐẦU (In đậm, không nghiêng) */
#articlesBySimilarityList ul li a:first-of-type {
    order: -1 !important; /* Đẩy lên trên cùng */
    display: block !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    font-style: normal !important; /* Tiêu đề không nghiêng */
    color: #1f2937 !important;
    margin-bottom: 5px !important;
}

/* 2. HIỆN THÔNG TIN XUẤT BẢN XUỐNG CUỐI (Không nghiêng) */
#articlesBySimilarityList ul li a:last-of-type {
    order: 1 !important; /* Đẩy xuống cuối */
    display: block !important;
    font-size: 0.9rem !important;
    font-style: normal !important;
    font-weight: 400 !important;
    color: #6b7280 !important;
    margin-top: 5px !important;
}

/* 3. XỬ LÝ DẤU PHẨY THỪA VÀ XUỐNG HÀNG */
/* Ẩn dấu phẩy ở cuối sau khi đã đảo trật tự */
#articlesBySimilarityList ul li {
    word-break: break-word;
}

/* 4. SỐ THỨ TỰ */
#articlesBySimilarityList ul li::before {
    counter-increment: similar-count !important;
    content: counter(similar-count) "." !important;
    font-weight: 700 !important;
    color: #006798 !important;
    position: absolute !important;
    left: 15px !important;
    top: 15px !important;
    font-style: normal !important;
}

/* BỎ GẠCH CHÂN */
#articlesBySimilarityList ul li a {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

#articlesBySimilarityList ul li a:hover {
    color: #006798 !important;
    text-decoration: underline !important;
}

/* Responsive */
@media (max-width: 850px) {
    #articlesBySimilarityList ul {
        grid-template-columns: 1fr !important;
    }
}

/* Đẩy toàn bộ khối Breadcrumbs xuống dưới thanh Tin Mới */
.cmp_breadcrumbs {
    display: block !important;
    width: 1200px !important; /* Khớp với độ rộng của banner và menu */
    margin: 1px auto 1px auto !important; /* Lề trên 25px để đẩy xuống, lề dưới 10px, tự động căn giữa */
    clear: both !important; /* Cắt bỏ mọi ảnh hưởng tràn dòng từ phía trên */
    position: relative !important;
    z-index: 10 !important;
}

/* Ép các mục bên trong duỗi hàng ngang và mất dấu chấm/số thứ tự */
.cmp_breadcrumbs ol, 
.cmp_breadcrumbs ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Căn chỉnh khoảng cách giữa các mục đường dẫn */
.cmp_breadcrumbs li {
    display: inline-block !important;
    margin-right: 8px !important;
    font-size: 14px !important;
}

/* Bỏ gạch chân và đổi màu liên kết cho dễ nhìn */
.cmp_breadcrumbs li a {
    text-decoration: none !important;
    color: #0056b3 !important;
}
.cmp_breadcrumbs li a:hover {
    text-decoration: underline !important;
}

/* 1. Ép khung bao quanh nội dung và thanh bên sử dụng cấu trúc chia cột (Flexbox) */
.pkp_structure_content {
    max-width: 1200px !important;
    margin: 5px auto !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    box-sizing: border-box !important;
}

/* 2. Ép cột nội dung chính (bên trái) thu gọn lại để nhường chỗ cho thanh bên */
.pkp_structure_main {
    width: 860px !important; /* Chiếm khoảng 70-72% không gian */
    float: left !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

/* 3. Ép thanh bên (Sidebar - bên phải) nhảy lên đứng song song */
.pkp_structure_sidebar {
    width: 300px !important; /* Chiếm khoảng 25% không gian */
    float: right !important;
    flex-shrink: 0 !important;
    margin-top: 0 !important;
    box-sizing: border-box !important;
    display: block !important;
}

/* 4. Xử lý các khối tùy chỉnh bên trong thanh bên không bị tràn khung */
.pkp_block {
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 5px !important;
}