html, body {
  /* CATATAN: Pastikan Anda telah mengunggah gambar background dengan nama file ini di server Anda. */
  background: url(https://journal.citacendekia.com/public/site/batikelbanat.jpg);
  background-size: 500px;
}

/* =========================================
   1. REVISI WARNA MENU NAVIGASI (DESKTOP)
   ========================================= */
/* A. Status Aktif/Diklik: Menggunakan warna solid EL BANAT */
.pkp_navigation_primary .current > a,
.pkp_navigation_user .current > a {
    background-color: #7C0664 !important; 
    color: #ffffff !important; 
}

/* B. Status Hover (Disorot): Menggunakan turunan warna magenta muda */
/* Alasan: Menjaga rasio kontras teks (#7C0664) tetap tinggi dan selaras dengan blok menu lainnya */
.pkp_navigation_primary a:hover,
.pkp_navigation_user a:hover {
    background-color: #f5e6f1 !important; 
    color: #7C0664 !important;
}

/* =========================================
   2. OPTIMASI NAVIGASI MEDIA: EFEK UNDERLINE PRESISI (MOBILE)
   ========================================= */
@media only screen and (max-width: 991px) {
    .pkp_structure_head .pkp_navigation_primary a:hover,
    .pkp_structure_head .pkp_navigation_user a:hover,
    .pkp_structure_head .pkp_nav_list a:hover,
    .pkp_structure_head .pkp_site_nav_menu a:hover,
    .pkp_structure_head .pkp_navigation_primary .current > a {
        
        background-color: transparent !important;
        text-decoration: underline !important;
        text-decoration-thickness: 1.5px !important;
        text-underline-offset: 5px !important;
        
        /* HUKUM MUTLAK: Biarkan warna teks tetap putih (#ffffff) */
        /* Alasan: Latar belakang header mobile Anda sudah disetel menjadi #7C0664. Jika warna teks ikut diubah, menu akan lenyap secara visual karena menabrak warna latar (color on color error). */
        color: #ffffff !important; 
        transition: all 0.2s ease-in-out;
    }
}

/* SETTING HEADER */
/* 1. Menargetkan container utama header agar lebar penuh */
.pkp_structure_head {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background-color: #7C0664; 
}

/* 2. Memastikan pembungkus logo tidak membatasi lebar */
.pkp_head_wrapper, 
.pkp_site_name_wrapper, 
.pkp_site_name {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 3. Memaksa gambar logo untuk mengisi seluruh area */
.pkp_site_name .is_img img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important; 
    display: block;
    object-fit: cover; 
}

/* =========================================
   STYLING UTAMA & TATA LETAK
   ========================================= */
.eb-policy-wrapper {
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    list-style: none;
    margin: 0;
    padding: 0;
}

.eb-policy-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    color: #7C0664;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

.eb-policy-title-group {
    display: flex;
    align-items: center;
}

.eb-policy-icon {
    font-family: 'FontAwesome';
    margin-right: 10px;
}

.eb-arrow-icon {
    transition: transform 0.3s ease;
}

.eb-policy-content {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: none; 
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

/* =========================================
   STYLING ITEM MENU DROPDOWN
   ========================================= */
.eb-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

/* Mengubah arsitektur menjadi Flexbox untuk penyejajaran vertikal presisi */
.eb-menu-link {
    display: flex; 
    align-items: center; 
    padding: 10px 15px 10px 25px; 
    text-decoration: none;
    color: #444;
    font-size: 1rem; 
}

/* Mengunci warna tautan saat disorot */
.eb-menu-link:hover {
    color: #7C0664;
}

/* Injeksi spesifik untuk mengatur proporsi dan warna Ikon FontAwesome di dalam menu */
.eb-menu-link span {
    font-family: 'FontAwesome';
    color: #7C0664; 
    margin-right: 10px;
    width: 20px;
    text-align: center; 
}

/* =========================================
   LOGIKA INTERAKTIF (PENGGANTI JAVASCRIPT)
   ========================================= */
/* Menyembunyikan checkbox dari tampilan */
.eb-hidden-checkbox {
    display: none !important;
}

/* Jika checkbox dicentang, tampilkan menu dropdown */
#eb-toggle-policy:checked ~ .eb-policy-content {
    display: block !important;
}

/* Jika checkbox dicentang, putar ikon panah 180 derajat */
#eb-toggle-policy:checked + .eb-policy-btn .eb-arrow-icon {
    transform: rotate(180deg);
    display: inline-block;
}

/* ==========================================================
   ESTETIKA SUDUT MELENGKUNG (REVISI FINAL: PARENT CLIPPING)
   Fokus: Memotong tuntas sisa sudut putih pada kanvas utama OJS
   ========================================================== */

/* 1. KONDISI LAYAR LEBAR (Desktop & Tablet: min-width 992px) */
@media (min-width: 992px) {
    
    /* KUNCI UTAMA: Mengeksekusi Kanvas Putih Raksasa */
    .pkp_structure_page {
        border-radius: 18px !important;
        background-color: #ffffff !important;
        
        /* HUKUM MUTLAK: Memotong segala warna/elemen yang meluber dari lengkungan 18px */
        overflow: hidden !important; 
        
        /* Estetika: Memberikan bayangan agar web mengambang di atas batik */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        
        /* REVISI GARIS TEPI (BORDER): Ketebalan 2px, Garis Lurus, Warna Putih */
        border: 2px solid #ffffff !important;
    }

    /* Sinkronisasi Kelengkungan Header (Atas) */
    .pkp_structure_head {
        border-top-left-radius: 18px !important;
        border-top-right-radius: 18px !important;
    }

    /* Sinkronisasi Kelengkungan Footer (Bawah) */
    .pkp_structure_footer_wrapper {
        border-bottom-left-radius: 18px !important;
        border-bottom-right-radius: 18px !important;
    }
}

/* 2. KONDISI LAYAR SEMPIT (Mobile: max-width 991px) */
@media (max-width: 991px) {
    
    /* Pemaksaan sudut tajam (90 derajat) agar menempel penuh di tepi layar HP */
    .pkp_structure_page,
    .pkp_structure_head,
    .pkp_structure_footer_wrapper {
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
    }
}

/* =========================================================
   RESOLUSI CELAH ATAS: ELIMINASI DORONGAN INTERNAL HEADER
   ========================================================= */

/* 1. Menganulir batas atas kontainer induk OJS */
.pkp_structure_head {
    padding-top: 0 !important;
}

/* 2. Menetralkan pembungkus gambar dari perilaku Flexbox yang terpusat */
.pkp_head_wrapper,
.pkp_site_name_wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
    
    /* KUNCI: Memaksa elemen untuk mulai berbaris murni dari batas atas (atap), bukan dari tengah */
    align-items: flex-start !important; 
}

/* 3. Menghapus ruang tipografis tak kasat mata pada tag tautan (anchor) */
.pkp_site_name a.is_img {
    display: block !important; /* Mengubah sifat teks menjadi blok solid */
    margin-top: 0 !important;
    padding-top: 0 !important;
    line-height: 0 !important; /* Membunuh tinggi baris bayangan */
}

/* =========================================================
   ELIMINASI RESIDU GARIS BIRU (BAWAH HEADER)
   ========================================================= */

/* 1. Menetralkan sifat teks (baseline gap) pada elemen gambar */
.pkp_site_name a.is_img img {
    display: block !important; /* Mengubah sifat inline menjadi blok utuh */
    vertical-align: bottom !important; /* Kritis: Mematikan ruang 'descender' di bawah gambar */
    margin-bottom: 0 !important;
}

/* 2. Menghapus margin, padding, dan border pada seluruh rantai pembungkus */
.pkp_structure_head,
.pkp_head_wrapper,
.pkp_site_name_wrapper,
.pkp_site_name,
.pkp_site_name a.is_img {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important; /* Mencegah injeksi garis batas otomatis dari tema dasar OJS */
}

/* =========================================================
   KONTROL DIMENSI HEADER: STANDARISASI TINGGI OJS
   ========================================================= */

/* Menentukan batas proporsional agar banner tidak over-ekspansi */
.pkp_site_name a.is_img img {
    width: 100% !important;
    
    /* Mengunci tinggi agar menyerupai standar kerampingan bawaan OJS */
    max-height: 100% !important; 
    height: 100% !important; 
    display: block !important;
    
    /* HUKUM MUTLAK: Mencegah gambar gepeng/distorsi dengan pemotongan presisi */
    object-fit: cover !important; 
    
    /* Menjaga titik fokus gambar tetap di tengah saat proses pemotongan terjadi */
    object-position: center !important; 
}

/* ==========================================================
   RESTORASI HEADER & MENU SELULER (ADAPTASI REFERENSI OJS 3.5)
   Fokus: Pemosisian Mutlak, Anti-Tabrakan Menu, & Berlaku Universal
   ========================================================== */
@media (max-width: 991px) {
    
    /* 1. KUNCI UTAMA: Menghilangkan celah background di sisi kanan */
    html, body {
        overflow-x: hidden !important; 
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 2. HEADER UTAMA: Menggunakan selektor universal (tanpa batasan homepage) */
    .pkp_structure_head {
        display: block !important;
        background-color: #7C0664 !important; /* Disetel ke identitas warna EL BANAT */
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        /* REVISI: Mengurangi min-height bawaan agar header bisa lebih ramping */
        min-height: 45px !important; 
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
        position: relative !important;
    }

   
    /* 6. TEKS JUDUL PORTAL: Adaptasi OJS 3.3 via Pseudo-element (Anti-Metadata Error) */
    .pkp_site_name a.is_img img { 
        display: none !important; 
    }
    .pkp_site_name a.is_img {
        display: block !important;
        text-decoration: none !important;
        font-size: 15px !important; 
        line-height: 1.4 !important;
    }
    .pkp_site_name a.is_img::after {
        content: "EL-BANAT: JURNAL PEMIKIRAN DAN PENDIDIKAN ISLAM";
        display: block !important;
        font-family: 'Urbanist', system-ui, sans-serif !important;
        font-size: 15px !important; 
        font-weight: 800 !important;
        color: #ffffff !important;
        text-align: left !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        line-height: 1.4 !important;

        /* PAKSA TURUN BARIS & PATAH KATA */
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* ==========================================================
       SOLUSI MENU TABRAKAN & PENYELARASAN REFERENSI
       ========================================================== */
    
    /* 7. MENGEMBALIKAN MENU ADMIN KE ALUR NORMAL */
    .pkp_structure_head .pkp_navigation_user_wrapper {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        display: block !important;
        width: 100% !important;
        margin-top: 15px !important; 
        padding-top: 15px !important;
        border-top: none !important; /* Dihapus agar bersih seperti referensi */
    }

    /* 8. MENYUSUN DAFTAR MENU MENJADI KOLOM VERTIKAL */
    .pkp_structure_head .pkp_site_nav_menu ul {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .pkp_structure_head .pkp_site_nav_menu li {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
    }

    /* 9. STYLING DASAR TAUTAN MENU (Murni Teks, Tanpa Border) */
    .pkp_structure_head .pkp_site_nav_menu a {
        display: block !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        white-space: normal !important; 
        text-transform: uppercase !important;
        border-bottom: none !important; /* Dihapus secara eksplisit */
        text-decoration: none !important; /* Memastikan default tidak ada garis bawah */
    }
    
    /* 10. EFEK UNDERLINE PRESISI & MENU AKTIF (INJEKSI REFERENSI OJS 3.5) */
    .pkp_structure_head .pkp_navigation_primary a:hover,
    .pkp_structure_head .pkp_navigation_user a:hover,
    .pkp_structure_head .pkp_nav_list a:hover,
    .pkp_structure_head .pkp_site_nav_menu a:hover,
    .pkp_structure_head .pkp_navigation_primary .current > a,
    .pkp_structure_head .pkp_navigation_user .current > a {
        background-color: transparent !important;
        text-decoration: underline !important;
        text-decoration-thickness: 1.5px !important;
        text-underline-offset: 5px !important;
        color: #ffffff !important;
        transition: all 0.2s ease-in-out;
    }
}


/* TAMPILAN EKSPLISIT & TOMBOL SOLID UNTUK SELULER */
@media (max-width: 768px), (hover: none) and (pointer: coarse) {
    
    /* 1. Atribut Statis: Kontainer, Judul, dan Lencana (Menyala Penuh) */
    .obj_article_summary.modern-article-card {
        border-color: #7C0664 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    }

    .obj_article_summary .title a { 
        color: #7C0664 !important; 
    }

    .obj_article_summary.modern-article-card::before { 
        border-top-color: #7C0664 !important; 
    }

    .obj_article_summary .oa-hover-badge {
        opacity: 1 !important; 
        visibility: visible !important; 
        transform: translateX(0) !important;
    }

    /* 2. TOMBOL PDF SOLID: Langsung berwarna penuh tanpa perlu disentuh */
    .modern-article-card .galleys_links a,
    .obj_article_details .galleys_links a,
    .obj_article_details .item.galleys .value a {
        background-color: #7C0664 !important;
        color: #ffffff !important;
        border-color: #7C0664 !important;
        transition: none !important;
    }

    /* 3. Umpan Balik Visual Halus: Sedikit meredup saat tombol benar-benar ditekan */
    .modern-article-card .galleys_links a:active,
    .obj_article_details .galleys_links a:active,
    .obj_article_details .item.galleys .value a:active {
        opacity: 0.8 !important;
    }
}

/* ==========================================================
   PERBAIKAN FINAL: KONSISTENSI TOMBOL PDF GALLEY OJS
   ========================================================== */

/* 1. KONDISI DEFAULT: Tombol Berwarna Abu-Abu */
.modern-article-card .galleys_links a,
.obj_article_details .galleys_links a,
.obj_article_details .item.galleys .value a,
.obj_galley_link {
    display: inline-block !important;
    background-color: #f5f5f5 !important; /* Latar abu-abu terang */
    border: 1px solid #dcdcdc !important; /* Garis tepi abu-abu */
    color: #555555 !important; /* Teks abu-abu gelap */
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-align: center !important;
    transition: all 0.3s ease-in-out !important;
}

/* 2. KONDISI HOVER: Berubah Pink Utama Jurnal */
.modern-article-card .galleys_links a:hover,
.obj_article_details .galleys_links a:hover,
.obj_article_details .item.galleys .value a:hover,
.obj_galley_link:hover {
    background-color: #7C0664 !important; /* Warna utama jurnal */
    border-color: #7C0664 !important; /* Garis tepi mengikuti warna utama */
    color: #ffffff !important; /* Teks berubah putih untuk rasio kontras */
    text-decoration: none !important;
}

/* 3. KONDISI AKTIF: Umpan Balik Saat Ditekan */
.modern-article-card .galleys_links a:active,
.obj_article_details .galleys_links a:active,
.obj_article_details .item.galleys .value a:active,
.obj_galley_link:active {
    opacity: 0.8 !important;
}

/* Mengubah kontainer utama menjadi bentuk kartu berbayang halus */
.obj_article_summary.modern-article-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 10px 18px;
    margin-bottom: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.obj_article_summary.modern-article-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Mengatur ukuran tipografi judul agar lebih proporsional */
.modern-article-card .title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 8px;
}

.modern-article-card .title a {
    text-decoration: none;
    color: #7C0664;
}

/* Merapikan metadata (Penulis, DOI, Tanggal) */
.modern-article-card .article-content-wrapper .meta,
.modern-article-card .article-doi {
    font-size: 0.9rem;
    color: #555555;
    margin-bottom: 4px;
}

/* Memposisikan tombol aksi (PDF/HTML) di bagian bawah secara rapi */
.modern-article-card .article-actions-wrapper {
    margin-top: 10px; 
    padding-top: 10px;
    border-top: 1px dashed #e0e0e0;
}

.modern-article-card .galleys_links {
    display: flex;
    gap: 10px;
    padding: 0;
    list-style: none;
    margin: 0;
}

/* --- PERBAIKAN FINAL MUTLAK: HEADER HP (MAMPAT PENUH, ANTI-TABRAKAN, PRESISI KOORDINAT) --- */

@media only screen and (max-width: 991px) {

    /* 1. Matikan Gambar Header Desktop & Elemen Logo Bawaan (Krusial) */
    .cc-header-logo-desktop,
    body.page_index_site .pkp_site_name a.is_img img {
        display: none !important;
    }

    /* 2. HEADER UTAMA: Amankan posisi dan mampatkan */
    body.page_index_site .pkp_structure_head {
        display: block !important;
        background-color: #7C0664 !important; /* Warna bawaan EL BANAT tetap dipertahankan */
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 60px !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 3. TOMBOL MENU: Dipaku mutlak di kiri atas (Bebas tabrakan) */
    body.page_index_site .pkp_site_nav_toggle {
        display: block !important;
        position: absolute !important;
        top: 15px !important;
        left: 15px !important;
        z-index: 99999 !important;
        background: transparent !important;
        margin: 0 !important;
    }

    /* 4. PEMBUNGKUS TEKS: Bersihkan dari aturan kaku OJS */
    body.page_index_site .pkp_head_wrapper,
    body.page_index_site .pkp_site_name_wrapper {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
        white-space: normal !important; 
    }

    /* 5. WADAH TEKS: Induk Utama */
    body.page_index_site .pkp_site_name {
        display: flex !important;
        align-items: center !important; 
        width: 100% !important;
        max-width: 100% !important;
        min-height: 60px !important; 
        box-sizing: border-box !important;
        padding: 0 15px 0 60px !important; /* Mengamankan area steril 60px di kiri untuk tombol menu */
        margin: 0 !important;
    }

    /* 6. ELEMEN PENAUT (KUNCI DINAMIS): Penerus Sifat Flexbox */
    body.page_index_site .pkp_site_name a.is_img {
        display: flex !important;
        align-items: center !important; /* Menarik isi (::after) tepat ke titik ekuator vertikal */
        width: 100% !important;
        height: 100% !important; 
        min-height: 60px !important; /* Memaksa tag meniru tinggi induknya */
        text-decoration: none !important;
    }

    /* 7. TEKS JUDUL JURNAL VIRTUAL: Mengalir secara organik */
    .pkp_structure_head .pkp_site_name a.is_img::after {
        content: "EL-BANAT: JURNAL PEMIKIRAN DAN PENDIDIKAN ISLAM";
        display: block !important; 
        font-family: 'Urbanist', system-ui, sans-serif !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        text-align: left !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        line-height: 1.3 !important; /* Ritme spasi baris yang seimbang saat menumpuk */
        
        /* Instruksi pematahan kata saat ruang menyempit */
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        
        /* PENGHAPUSAN PADDING MUTLAK: Membiarkan sistem Flexbox mengambil alih penempatan presisi */
        padding: 0 15px 0 15px !important; 
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* LOGO INDEKSASI */
.index-container {
    width: 100%;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Pengaturan Grid Layout */
.index-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

/* Pengaturan Item dan Gambar */
.index-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(20%); 
    transition: all 0.3s ease;
    max-height: 60px; 
}

/* Efek Hover Profesional */
.index-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* --- RESPONSIF: MODE MEDIA (HP & TABLET) --- */
@media only screen and (max-width: 768px) {
    .index-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Memastikan logo terakhir (ke-5) berada di tengah jika 2 kolom */
    .index-item:last-child {
        grid-column: span 2;
        justify-self: center;
    }
}

/* =========================================
   KODE CSS EDITORIAL BOARD EL BANAT (OJS 3.3)
========================================= */

/* KONTINER UTAMA */
.editorial-board-container {
    width: 100%;
    font-family: 'Urbanist', 'Segoe UI', system-ui, sans-serif;
    margin-top: 20px;
}

.section-container {
    margin-bottom: 30px;
}

/* JUDUL SEKSI (Editor in Chief, dll) */
.section-title {
    background-color: #7C0664; 
    color: #ffffff;
    padding: 12px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0; 
    text-transform: uppercase;
    border-radius: 4px 4px 0 0;
    display: block;
}

/* TABEL EDITORIAL */
.editorial-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #f0f0f0;
    border-top: none; 
    background-color: #ffffff;
}

.editorial-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f2f2f2;
    vertical-align: middle;
}

/* INFORMASI PERSONAL */
.member-info {
    width: 45%;
    text-align: left;
}

.member-info strong {
    font-size: 1.1rem;
    color: #333;
}

.flag-icon {
    border: 1px solid #cccccc;
    vertical-align: middle;
    margin-left: 8px;
    height: 14px;
}

/* PEMBUNGKUS TOMBOL KANAN */
.btn-group-wrapper {
    width: 65%;
    text-align: right;
}

.btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 6px; 
    flex-wrap: wrap; 
}

/* GAYA TOMBOL INDEKSASI */
.btn-index {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    color: #ffffff !important;
    border-radius: 3px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-index:hover { 
    transform: translateY(-2px); 
    opacity: 0.9; 
}

/* WARNA SPESIFIK TOMBOL */
.btn-sinta { background-color: #16476A; }
.btn-scholar { background-color: #2FA4D7; }
.btn-orcid { background-color: #BBCB2E; }
.btn-scopus { background-color: #ef7622; }
.btn-wos { background-color: #5E33BF; }

/* RESPONSIF UNTUK PERANGKAT SELULER */
@media (max-width: 768px) {
    .editorial-table td {
        display: block;
        width: 100% !important;
        text-align: center;
        padding: 12px 15px;
    }
    
    .btn-group-wrapper {
        width: 100%;
    }
    
    .btn-group {
        justify-content: center;
        margin-top: 10px;
    }
}

/* MEMAKSA FONT PADA SELURUH ISI TEKS TABEL EDITORIAL DAN REVIEWERS */
.editorial-board-container td,
.editorial-board-container p,
.editorial-board-container span,
.reviewers-container td,
.reviewers-container p,
.reviewers-container span {
    font-family: 'Urbanist', system-ui, sans-serif !important;
}

/* MEMASTIKAN TEKS BIASA DALAM TABEL TIDAK TERTIMPA OJS DEFAULT */
.editorial-table td,
.reviewers-table td {
    font-family: 'Urbanist', system-ui, sans-serif !important;
}

/* FONT */
/* 1. MENGUBAH SEMUA JENIS JUDUL (H1 s.d H6) */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Urbanist', system-ui, sans-serif !important;
}

/* 2. MENGUBAH MENU NAVIGASI ATAS (Home, Current, Archives, dll) */
.pkp_navigation_primary a,
.pkp_navigation_user a,
.pkp_nav_list a,
nav a {
    font-family: 'Urbanist', system-ui, sans-serif !important;
    font-weight: 700 !important; 
    text-transform: uppercase; 
}

/* 3. KHUSUS JUDUL DI DALAM KOTAK CUSTOM (Call For Papers & Join Our Team) */
.pkp_block h2, 
.pkp_block h3, 
.pkp_block strong {
    font-family: 'Urbanist', system-ui, sans-serif !important;
}

/* 4. JUDUL JURNAL PADA KARTU DI BAWAH */
.title, 
.media-heading,
.obj_article_summary .title a {
    font-family: 'Urbanist', system-ui, sans-serif !important;
}

/* 5. MEMASTIKAN TEKS BOLD TIDAK KEMBALI KE SERIF */
b, strong {
    font-family: 'Urbanist', system-ui, sans-serif !important;
}

/* STRUKTUR DASAR MENU (RAMAH SELULER & DESKTOP) */
.pkp_block.block_custom .content ul {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.pkp_block.block_custom .content ul li {
    border-bottom: 1px solid #e0e0e0; 
}

/* TAMPILAN BAWAAN MENU (Solid dan jelas tanpa hover) */
.pkp_block.block_custom .content ul li a {
    display: block;
    padding: 12px 16px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.25s ease-in-out;
    position: relative;
    background-color: transparent;
}

/* EFEK HOVER KHUSUS UNTUK PERANGKAT DENGAN MOUSE/TRACKPAD */
@media (hover: hover) and (pointer: fine) {
    .pkp_block.block_custom .content ul li a:hover {
        background-color: #f5e6f1; 
        color: #7C0664; 
        padding-left: 22px; 
        font-weight: 400;
    }

    /* Aksen garis vertikal di sebelah kiri saat disorot */
    .pkp_block.block_custom .content ul li a:hover::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 8px;
        background-color: #7C0664; 
    }
}

/* --- CSS ULTRA-CLEAN EL BANAT --- */
.eb-wrap {
    font-family: 'Urbanist', sans-serif;
    background: #fff;
    border: 1px solid #ddd;
    border-top: 6px solid #7C0664;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.eb-hero {
    display: flex;
    flex-wrap: wrap;
    
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(124, 6, 100, 0.1)); 
    
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); 
    
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 20px;
    margin: 10px 0 25px 0;
    box-shadow: 0 8px 32px rgba(124, 6, 100, 0.12);
}

.eb-cover { flex: 0 0 160px; margin-right: 20px; }
.eb-cover img { width: 100%; border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

.eb-desc { flex: 1; min-width: 280px; }
.eb-desc h2 { color: #7C0664; margin: 0 0 10px 0; font-size: 1.5rem; }
.eb-desc p { text-align: justify; line-height: 1.6; color: #444; font-size: 1rem; }

.eb-sub { 
    border-left: 5px solid #7C0664; 
    padding-left: 10px; 
    margin: 25px 0 15px 0; 
    color: #333; 
    font-size: 1.2rem;
    font-weight: bold;
}

/* EL BANAT Announcements Stylesheet - Versi Native Unicode/Emoji */
.elbanat-announcement {
    background-color: #fbf2f8; 
    border: 1px solid #e2bfd6;
    border-left: 5px solid #7C0664;
    border-radius: 6px;
    padding: 20px 25px; 
    margin-bottom: 25px; 
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.elbanat-content-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px; 
}

.elbanat-text-section {
    flex: 1;
    min-width: 250px;
}

.elbanat-title {
    margin: 0 0 5px 0 !important; 
    padding: 0 !important;
    color: #7C0664 !important;
    font-size: 1.75rem !important; 
    line-height: 1.1 !important; 
}

.elbanat-subtitle {
    margin: 0 0 2px 0 !important; 
    padding: 0 !important;
    color: #4a6375; 
    font-size: 0.95rem !important; 
    letter-spacing: 1px; 
    line-height: 1.1 !important;
}

.elbanat-title-secondary {
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    color: #7C0664 !important;
    font-size: 1.45rem !important; 
    line-height: 1.2 !important;
}

.elbanat-description {
    margin: 0 !important;
    color: #444444;
    font-size: 1.05rem; 
    line-height: 1.5;
}

.elbanat-badges {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.elbanat-badge {
    background-color: #e2bfd6;
    color: #400233;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #c49eb6;
    display: flex;
    align-items: center;
}

/* Pengaturan tata letak emoji bergambar */
.elbanat-emoji {
    margin-right: 6px;
    font-size: 1.1rem;
    display: inline-block;
    line-height: 1;
}

/* Pengaturan warna khusus untuk simbol teks centang (✔) */
.elbanat-check-text {
    color: #7C0664;
    margin-right: 8px;
    font-size: 1.15rem;
    font-weight: bold;
}

.elbanat-action-section {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.elbanat-align-end {
    text-align: right;
    justify-content: flex-end;
    margin-top: 10px;
}

.elbanat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.elbanat-btn-outline {
    background-color: #ffffff;
    color: #7C0664;
    border: 1px solid #7C0664;
    border-radius: 4px;
}

.elbanat-btn-outline:hover {
    background-color: #fbf2f8;
}

.elbanat-btn-solid {
    background-color: #7C0664;
    color: #ffffff;
    border: 1px solid #7C0664;
    border-radius: 4px;
}

.elbanat-btn-solid:hover {
    background-color: #5a0448;
    color: #ffffff;
}

.elbanat-btn-rounded {
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(124, 6, 100, 0.25); 
}

.elbanat-requirements {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.elbanat-req-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #444444;
}

/* --- DESAIN TABEL PROFESIONAL EL BANAT --- */
.elbanat-container {
    font-family: 'Urbanist', sans-serif;
    color: #333;
    margin-bottom: 30px;
}

.elbanat-title-bar {
    background-color: #7C0664;
    color: #ffffff;
    padding: 15px 20px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
}

.elbanat-title-bar::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 20px;
    background-color: #fff;
    margin-right: 12px;
}

.elbanat-table-new {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #eef2f3;
    border-top: none;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.elbanat-table-new td {
    padding: 16px 25px;
    border-bottom: 1px solid #f4f7f8;
    vertical-align: top;
    line-height: 1.6;
}

.elbanat-table-new tr:last-child td {
    border-bottom: none;
}

.elbanat-label-new {
    width: 30%;
    font-weight: 700;
    color: #455a64;
    background-color: #fcfdfe;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.elbanat-value-new {
    color: #263238;
    font-size: 1.05rem;
}

.elbanat-value-new strong {
    color: #7C0664;
}

.elbanat-link-new {
    color: #7C0664;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.elbanat-link-new:hover {
    border-bottom: 2px solid #7C0664;
}

/* Responsivitas untuk Smartphone */
@media (max-width: 768px) {
    .elbanat-label-new { width: 40%; padding: 12px 15px; font-size: 0.85rem; }
    .elbanat-value-new { padding: 12px 15px; font-size: 0.95rem; }
}

/* --- GRID INDEKSASI --- */
.eb-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.eb-grid a { display: block; transition: 0.3s; }
.eb-grid img { 
    height: 40px; 
    filter: grayscale(100%); 
    opacity: 0.6; 
    transition: 0.3s; 
}

.eb-grid a:hover img { 
    filter: grayscale(0%); 
    opacity: 1; 
}

.eb-grid a:hover { transform: scale(1.1); }

/* --- RESET & PEMAKSAAN VISUAL FOOTER --- */
.pkp_structure_footer_wrapper {
    display: block !important;           
    background-color: #7C0664 !important; 
    padding: 40px 0 !important;
    border-top: 4px solid #4a033c !important;
    width: 100% !important;
    min-height: 100px !important;        
}

/* --- PENATAAN LOGO PKP/OJS DI TENGAH --- */
.pkp_brand_footer {
    display: flex !important;
    justify-content: center !important;  
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    float: none !important;             
}

.pkp_brand_footer a {
    display: inline-block !important;
}

/* --- MENGUBAH LOGO MENJADI PUTIH --- */
.pkp_brand_footer a img {
    height: 85px !important;             
    width: auto !important;
    filter: brightness(0) invert(1) !important; 
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.pkp_brand_footer a img:hover {
    opacity: 1;
}

/* --- MENGHAPUS RESIDU TEKS BAWAAN (JIKA ADA) --- */
.pkp_footer_content {
    color: #ffffff !important;
    text-align: center !important;
    font-family: 'Urbanist', sans-serif !important;
    margin-bottom: 20px;
}

/* Kontainer untuk menengahkan tombol */
.btn-submission-wrapper {
    text-align: center;
    margin: 0 0 15px 0;
}

/* Desain utama tombol Make a Submission */
.btn-elbanat-submission {
    background-color: #7C0664; 
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Efek visual ketika kursor diarahkan ke tombol */
.btn-elbanat-submission:hover {
    background-color: #7C0664;
    color: #ffffff;
    transform: translateY(-2px); 
}

/* --- GAYA KARTU TEMPLATE ARTIKEL EL BANAT --- */

/* Kontainer Utama Kartu */
.eb-template-card {
    font-family: 'Urbanist', 'Segoe UI', Roboto, sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background-color: #ffffff;
}

/* Header Kartu */
.eb-template-header {
    background-color: #7C0664; 
    padding: 12px 20px;
    border-bottom: 5px solid #4a033c; 
}

.eb-template-header h4 {
    margin: 0;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

/* Area Konten & Tombol */
.eb-template-body {
    padding: 25px 20px;
    text-align: center;
}

.eb-template-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #7C0664;
    color: #ffffff !important;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    box-shadow: 0 4px 8px rgba(124, 6, 100, 0.3);
    transition: all 0.3s ease;
}

.eb-template-btn:hover {
    background-color: #4a033c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.eb-template-btn img {
    vertical-align: middle;
    margin-right: 8px;
    width: 22px;
}

.eb-template-footer-text {
    margin-top: 12px;
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}

/* --- CSS QUICK MENU EL BANAT SPESIFIK IKON (17 ITEMS) --- */
/* --- Custom Sidebar Card EL BANAT Theme --- */
.eb-menu-card {
    font-family: 'Urbanist', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    background-color: #ffffff;
}

.eb-menu-header {
    background-color: #7C0664; 
    padding: 12px 20px;
    border-bottom: 5px solid #4a033c; 
}

.eb-menu-header h4 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.eb-menu-body {
    padding: 25px 20px;
    text-align: center;
}

.eb-menu-body img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.eb-menu-body p {
    margin-top: 15px;
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    line-height: 1.5;
}

.eb-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eb-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.eb-menu-link {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    text-decoration: none !important;
    color: #444 !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* 2. Injeksi FontAwesome Secara Global pada Menu */
.eb-menu-link::before {
    font-family: 'FontAwesome' !important; 
    color: #7C0664; /* Warna Magenta Khas El-Banat */
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px; /* Lebar tetap agar teks sejajar sempurna secara vertikal */
    text-align: center;
    display: inline-block;
}

/* 3. Pemetaan Ikon Spesifik Berdasarkan Urutan List (nth-child) */

/* Menu Utama (Top-Level) */
.eb-menu-item:nth-child(1) .eb-menu-link::before { content: "\f10c"; } /* Focus: Circle */
.eb-menu-item:nth-child(2) .eb-menu-link::before { content: "\f023"; } /* Guidelines: Lock */
.eb-menu-item:nth-child(3) .eb-menu-link::before { content: "\f019"; } /* Template: Download */
.eb-menu-item:nth-child(4) .eb-menu-link::before { content: "\f25e"; } /* Indexing: CC */
.eb-menu-item:nth-child(5) .eb-menu-link::before { content: "\f007"; } /* Editorial Team: User */
.eb-menu-item:nth-child(6) .eb-menu-link::before { content: "\f0c0"; } /* Reviewers: Users */
.eb-menu-item:nth-child(7) .eb-menu-link::before { content: "\f017"; } /* Frequency: Clock */
.eb-menu-item:nth-child(8) .eb-menu-link::before { content: "\f155"; } /* Dollar Sign ($) */
.eb-menu-item:nth-child(9) .eb-menu-link::before { content: "\f095"; } /* Contact: Phone */
.eb-policy-content .eb-menu-item:nth-child(1) .eb-menu-link::before { content: "\f00b"; } /* Peer Review: Tasks */
.eb-policy-content .eb-menu-item:nth-child(2) .eb-menu-link::before { content: "\f1be"; } /* Ethics: Shield/Atom */
.eb-policy-content .eb-menu-item:nth-child(3) .eb-menu-link::before { content: "\f14b"; } /* Plagiarism: Doc/Pencil */
.eb-policy-content .eb-menu-item:nth-child(4) .eb-menu-link::before { content: "\f19d"; } /* Open Access: Cap */
.eb-policy-content .eb-menu-item:nth-child(5) .eb-menu-link::before { content: "\f1f9"; } /* Copyright: Copyright */
.eb-policy-content .eb-menu-item:nth-child(6) .eb-menu-link::before { content: "\f132"; } /* Privacy: Shield */

/* 4. Efek Interaktif (Hover) */
.eb-menu-item:hover { 
    background-color: #f5e6f1 !important; 
}

.eb-menu-item:hover .eb-menu-link { 
    color: #7C0664 !important; 
    padding-left: 22px !important; /* Efek geser halus saat disorot */
}
/* ==========================================================
   OPTIMASI RESPONSIF ADDITIONAL CONTENT EL BANAT (MOBILE VIEW)
   Fokus: Susunan Vertikal (Stacking), Lebar Penuh, & Teks Presisi
   ========================================================== */

@media (max-width: 768px) {
    
    /* 1. PERBAIKAN "CALL FOR PAPERS" (.elbanat-announcement) */
    .elbanat-content-wrap {
        /* KUNCI UTAMA: Memaksa tata letak berubah dari baris menjadi kolom */
        flex-direction: column !important; 
        align-items: flex-start !important;
        gap: 20px !important;
    }

    .elbanat-text-section {
        /* Memberikan ruang bernapas 100% agar teks tidak terhimpit */
        width: 100% !important; 
        min-width: 0 !important;
        flex: none !important;
    }

    .elbanat-action-section {
        width: 100% !important;
        flex: none !important;
        align-items: stretch !important; /* Memaksa tombol membentang penuh */
    }

    .elbanat-btn {
        width: 100% !important;
        justify-content: center !important;
        margin-bottom: 10px !important;
    }

    /* Mematikan pematahan kata paksa agar turun baris secara alami (Humanis) */
    .elbanat-description, 
    .elbanat-title, 
    .elbanat-subtitle,
    .elbanat-title-secondary {
        word-break: normal !important; 
        white-space: normal !important;
        overflow-wrap: break-word !important; 
    }

    /* Menata Lencana (Badges) agar rapi bertumpuk */
    .elbanat-badges {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }


    /* 2. PERBAIKAN DESKRIPSI JURNAL (.eb-hero & .eb-desc) */
    .eb-hero {
        /* Memaksa sampul jurnal dan teks bertumpuk ke bawah */
        flex-direction: column !important; 
        align-items: center !important;
        padding: 25px 15px !important;
    }

    .eb-cover {
        margin-right: 0 !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        max-width: 200px !important; /* Mengunci ukuran gambar agar tidak terlalu raksasa */
    }

    .eb-desc {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }

    .eb-desc p {
        text-align: left !important; /* Memastikan ergonomi membaca tetap nyaman */
    }
}

/* ==========================================================
   SAPU BERSIH: RESOLUSI HYPERLINK BIRU (DOI & KONTEN GLOBAL)
   ========================================================== */

/* 1. MENGUBAH WARNA DASAR TEKS TAUTAN MENJADI MAGENTA EL BANAT */
.pkp_structure_main a,
.obj_article_details .item.doi a,
.obj_article_summary .article-doi a,
.modern-article-card .article-doi a,
.pkp_structure_main .cmp_breadcrumbs a {
    color: #7C0664 !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
}

/* 2. EFEK HOVER (DISOROT): MEMBERIKAN UMPAN BALIK VISUAL */
/* Catatan: Menggunakan turunan warna yang lebih gelap (#4a033c) dipadukan dengan garis bawah presisi agar memenuhi standar aksesibilitas web */
.pkp_structure_main a:hover,
.obj_article_details .item.doi a:hover,
.obj_article_summary .article-doi a:hover,
.modern-article-card .article-doi a:hover,
.pkp_structure_main .cmp_breadcrumbs a:hover {
    color: #4a033c !important; 
    text-decoration: underline !important;
    text-decoration-color: #4a033c !important;
    text-decoration-thickness: 1.5px !important;
    text-underline-offset: 4px !important;
}

/* ==========================================================
   RESOLUSI AKSESIBILITAS: PENIMPAAN SPESIFIK TOMBOL GALLEY
   ========================================================== */

/* 1. MENGUNCI WARNA TEKS MENJADI PUTIH MUTLAK */
/* Logika: Menargetkan tag <a> yang terperangkap di dalam kelas pembungkus tombol OJS */
.obj_galley_link,
.galleys_links a,
.obj_article_summary .galleys_links a,
.modern-article-card .galleys_links a {
    background-color: #7C0664 !important; /* Latar tetap dipertahankan warna El Banat */
    
    /* HUKUM MUTLAK: Teks dipaksa putih demi rasio kontras visual */
    color: #ffffff !important; 
    
    border: 1px solid #7C0664 !important;
    text-decoration: none !important;
}

/* 2. UMPAN BALIK INTERAKTIF SAAT DISOROT KURSOR (HOVER) */
.obj_galley_link:hover,
.galleys_links a:hover,
.obj_article_summary .galleys_links a:hover,
.modern-article-card .galleys_links a:hover {
    background-color: #4a033c !important; /* Latar tombol berubah menjadi magenta sangat gelap */
    color: #ffffff !important; /* Teks tetap dikunci putih agar tidak ikut gelap */
    border-color: #4a033c !important;
    text-decoration: none !important;
}




/* ==========================================================
   REVISI: PEMANGKASAN TINGGI (VERTICAL SPACE) FOOTER OJS 3.3
   ========================================================== */

/* 1. Menciutkan jarak kosong di atas dan di bawah badan utama footer */
.pkp_structure_footer_wrapper,
div.pkp_structure_footer_wrapper {
    display: block !important;
    background-color: #7C0664 !important;
margin-top: 10px !important;
    
    /* NILAI BARU: Jarak atas dipangkas tajam menjadi 25px, bawah menjadi 15px */
    padding: 25px 20px 15px 20px !important; 
    
    width: 100% !important;
    border-top: none !important;
}

/* 2. Menarik teks hak cipta (copyright) ke atas agar lebih merapat dengan menu */
div.footer-copyright-info {
    text-align: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Urbanist', system-ui, sans-serif !important;
    
    /* NILAI BARU: Jarak atas dipangkas secara ekstrem dari 40px menjadi 15px */
    margin-top: 15px !important; 
    padding-top: 15px !important; 
margin-bottom: 10px !important;
    
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
}
/* Menyembunyikan elemen bawaan PKP yang mengganggu */
.pkp_structure_footer_wrapper .pkp_brand_footer {
    display: none !important;
}

/* 2. Memaksa Aktivasi Grid 4 Kolom */
.pkp_structure_footer_wrapper .custom-footer-grid,
div.custom-footer-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr 1fr 1fr !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: left !important; /* Mencegah teks berada di tengah */
}

/* 3. Menjinakkan Gambar Raksasa (Krusial) */
div.custom-footer-grid img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

div.custom-footer-grid img.footer-publisher-logo { 
    max-width: 150px !important; 
    margin-bottom: 15px !important;
}

div.custom-footer-grid img.cc-logo { 
    max-width: 88px !important; 
    margin-bottom: 10px !important;
}

div.custom-footer-grid img.oa-lock-img { 
    max-width: 40px !important; 
    margin-bottom: 10px !important; 
}

/* 4. Hierarki Tipografi Kustom */
div.custom-footer-grid h4, 
div.custom-footer-grid p, 
div.custom-footer-grid a,
div.custom-footer-grid li {
    color: #ffffff !important;
    font-family: 'Urbanist', system-ui, sans-serif !important;
    line-height: 1.6 !important;
}

/* ==========================================================
   REVISI MUTLAK: PENYESUAIAN GARIS PEMISAH (BORDER) FOOTER
   ========================================================== */

/* 1. MENGHAPUS GARIS DI BAWAH JUDUL FOOTER (Sesuai Referensi) */
div.custom-footer-grid h4.footer-heading {
    border-bottom: none !important; /* Membunuh garis di bawah judul */
    padding-bottom: 0 !important;   
    margin-bottom: 15px !important; 
    text-transform: uppercase !important;

}

/* 2. MENAMBAHKAN GARIS PEMISAH PADA SETIAP TAUTAN JURNAL */
div.custom-footer-grid ul.footer-journal-list li {
    /* Menambahkan garis putus-putus tipis transparan (putih 30%) */
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3) !important; 
    padding-bottom: 8px !important;
    margin-bottom: 8px !important;
}

/* 3. MENGHILANGKAN GARIS PADA TAUTAN TERAKHIR AGAR ESTETIS */
div.custom-footer-grid ul.footer-journal-list li:last-child {
    border-bottom: none !important; /* Menghapus garis di elemen terbawah */
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

div.custom-footer-grid ul.footer-journal-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

div.custom-footer-grid a {
    text-decoration: none !important;
    transition: opacity 0.3s ease !important;
}

div.custom-footer-grid a:hover {
    opacity: 0.7 !important;
    text-decoration: underline !important;
}

/* ==========================================================
   REVISI MUTLAK: TATA LETAK MEDIA QUERY (RESPONSIFITAS GRID)
   ========================================================== */

/* 1. KONDISI LAYAR MENENGAH (Tablet & Split Screen < 1024px) */
/* Memaksa transisi lebih awal menjadi matriks 2x2 seperti referensi kanan (Hijau) */
@media screen and (max-width: 991px) {
    .pkp_structure_footer_wrapper .custom-footer-grid,
    div.custom-footer-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 30px !important; /* Jarak vertikal 40px, horizontal 30px */
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* 2. KONDISI LAYAR SEMPIT (Ponsel Pintar / Mobile < 768px) */
/* Membunuh grid horizontal, menyusun semua elemen berurutan ke bawah (1 Kolom) */
@media screen and (max-width: 768px) {
    .pkp_structure_footer_wrapper .custom-footer-grid,
    div.custom-footer-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Penyesuaian mikro agar elemen tidak terlihat raksasa di layar HP */
    div.custom-footer-grid img.footer-publisher-logo { 
        max-width: 130px !important; 
    }
    
    div.custom-footer-grid h4.footer-heading {
        font-size: 1.05rem !important;
        margin-bottom: 12px !important;
    }
}

/* ==========================================================
   RESOLUSI MUTLAK: TOMBOL ADDITIONAL CONTENT (CALL FOR PAPERS)
   Fokus: Menyamakan dengan Tombol PDF (Latar Magenta, Teks Putih)
   ========================================================== */

/* 1. MENGUNCI LATAR MAGENTA & TEKS PUTIH PADA KEDUA TOMBOL */
.elbanat-action-section a.elbanat-btn,
.elbanat-btn-outline,
.elbanat-btn-solid,
.additional_content .elbanat-btn {
    background-color: #7C0664 !important; 
    color: #ffffff !important; 
    border: 1px solid #7C0664 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
}

/* 2. EFEK HOVER (DISOROT): MAGENTA LEBIH PEKAT */
.elbanat-action-section a.elbanat-btn:hover,
.elbanat-btn-outline:hover,
.elbanat-btn-solid:hover,
.additional_content .elbanat-btn:hover {
    background-color: #4a033c !important;
    border-color: #4a033c !important;
    color: #ffffff !important;
}

/* 3. PROTEKSI TEKS DARI INTERVENSI GLOBAL */
/* Mencegah teks di dalam tombol ikut menjadi magenta */
.elbanat-action-section a.elbanat-btn span,
.elbanat-action-section a.elbanat-btn strong,
.elbanat-btn-outline span,
.elbanat-btn-solid span,
.additional_content a[style*="background-color"] {
    color: #ffffff !important;
}

/* 4. KONVERSI IKON MS WORD MENJADI PUTIH */
/* Karena latar tombol sekarang gelap, ikon Word diubah menjadi putih murni */
.elbanat-action-section a.elbanat-btn img,
.elbanat-btn-outline img {
    filter: brightness(0) invert(1) !important;
    width: 20px !important;
    margin-right: 8px !important;
}


/* ==========================================================
   REVISI MUTLAK: PEMANGKASAN ELEMEN INDUK & PRESISI LOGO
   ========================================================== */

/* 1. MENGHANCURKAN ILUSI SPASI DARI KONTEN UTAMA OJS */
.pkp_structure_main, 
.pkp_structure_content {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* 2. PEMANGKASAN EKSTREM PADA BATAS FOOTER */
.pkp_structure_footer_wrapper,
div.pkp_structure_footer_wrapper {
    margin-top: 0 !important; 
    padding-top: 15px !important; /* Batas atas dipangkas sangat pendek */
    padding-bottom: 5px !important; 
}

/* 3. KONSISTENSI VISUAL UKURAN LOGO (DISAMAKAN MENJADI 88px) */
div.custom-footer-grid img.oa-lock-img { 
    max-width: 88px !important; /* Mengunci agar sama persis dengan lebar CC-BY-SA */
    height: auto !important;
    margin-bottom: 10px !important; 
}

/* 4. PEMANGKASAN SPASI AREA COPYRIGHT (BAWAH) */
div.footer-copyright-info {
    margin-top: 15px !important; 
    padding-top: 15px !important;
    margin-bottom: 0 !important; /* Membunuh sisa spasi di lantai layar */
    padding-bottom: 10px !important;
}

/* Container Utama */
.eb-menu-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    background: #fff;
}

/* Header Ungu */
.eb-menu-header {
    background-color: #721c5b; /* Warna ungu sesuai gambar */
    color: white;
    padding: 15px;
    text-align: center;
}

.eb-menu-header h4 {
    margin: 0;
    font-weight: bold;
    letter-spacing: 1px;
}

/* List Menu */
.eb-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eb-menu-item {
    border-bottom: 1px solid #eee;
}

.eb-menu-link {
    display: block;
    padding: 12px 20px;
    color: #444;
    text-decoration: none;
    transition: 0.3s;
}

.eb-menu-link:hover {
    background-color: #f9f9f9;
    color: #721c5b;
}

.eb-icon {
    display: inline-block;
    width: 25px;
    color: #721c5b;
}

/* Logika Dropdown (Hidden Menu) */
.eb-hidden-checkbox {
    display: none; /* Menyembunyikan checkbox asli */
}

.eb-policy-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.eb-policy-content {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0; /* Sembunyikan secara default */
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fdfdfd;
}

/* Tampilkan Konten Saat Checkbox Dicentang */
.eb-hidden-checkbox:checked ~ .eb-policy-content {
    max-height: 500px; /* Nilai besar agar semua sub-menu terlihat */
}

/* Rotasi Panah Saat Diklik */
.eb-hidden-checkbox:checked ~ .eb-policy-btn .eb-arrow-icon {
    transform: rotate(180deg);
}

.eb-arrow-icon {
    transition: 0.3s;
    font-size: 10px;
}