/* ==========================================
   1. SEMBUNYIKAN SEMUA LOGO OJS BAWAAN
   ========================================== */
/* Menyasar semua elemen bawaan PKP/OJS yang mencetak logo di bagian bawah */
.pkp_structure_footer .pkp_brand_footer,
.pkp_footer_content .pkp_brand_footer,
footer .pkp_brand_footer,
a.pkp_brand_footer,
.pkp_block.block_make_submission,
div.pkp_brand_footer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* ==========================================
   2. PAKSA CONTAINER FOOTER MENJADI FLEXBOX
   ========================================== */
.pkp_structure_footer,
.pkp_footer_content {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* Bagian Kiri: Teks Lisensi & Alamat */
.jiqsi-footer-left {
    flex: 1 1 65% !important;
    min-width: 280px !important;
    text-align: justify !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #333333 !important;
    padding-right: 15px !important;
}

/* Bagian Kanan: Logo PKP OJS Kustom */
.jiqsi-footer-right {
    flex: 0 0 30% !important;
    min-width: 180px !important;
    text-align: right !important;
}

.jiqsi-footer-right img {
    max-width: 180px !important;
    width: 100% !important;
    height: auto !important;
    display: inline-block !important;
}

/* Penyesuaian Tampilan Layar HP (Mobile Responsive) */
@media (max-width: 768px) {
    .pkp_structure_footer,
    .pkp_footer_content {
        flex-direction: column !important;
    }
    .jiqsi-footer-left {
        flex: 1 1 100% !important;
        text-align: center !important;
        padding-right: 0 !important;
        margin-bottom: 15px !important;
    }
    .jiqsi-footer-right {
        flex: 0 0 100% !important;
        text-align: center !important;
    }
}