/* HEADER UTAMA */
.pkp_structure_head {
    position: relative;
}

/* tampilkan ISSN di header kanan atas */
.pkp_structure_head {
    position: relative;
}

.pkp_structure_head::after {
    content: "E-ISSN: 3124-6826";
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(248, 246, 246, 0.995);
    font-size: 22px;
    font-weight: bold;
}

/* ===== SEMBUNYIKAN SEMUA KONTEN ARTIKEL HOMEPAGE ===== */
.page_index_journal .current_issue {
    display: none !important;
}

/* BARCODE DI BAWAH ISSN */
.pkp_structure_head::before {
    content: "";
    position: absolute;

    top: 45px;   /* ini kunci posisi bawah ISSN */
    right: 25px; /* HARUS SAMA dengan ISSN */

    width: 160px;
    height: 50px;

    background-image: url("https://threegins.com/public/site/images/admin-journal/barcode-3124682600.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    background-color: white;
    padding: 3px;
    border-radius: 4px;

    z-index: 9999;
}