/* jieb (ctx 57)
   Pemisahan sidebar per halaman sesuai jenis blok:
   - HOMEPAGE  : menampilkan blok CUSTOM (block_custom); blok PLUGIN disembunyikan.
   - SUBPAGE   : menampilkan blok PLUGIN; blok CUSTOM disembunyikan.
   Pengaturan centang/urutan tetap via Website -> Sidebar (journal_settings.sidebar).
*/

/* Subpage: sembunyikan semua custom block (homepage-only) */
body:not(.pkp_page_index) .pkp_block.block_custom {
    display: none !important;
}

/* Homepage: sembunyikan semua plugin block (subpage-only), tampilkan custom */
body.pkp_page_index .pkp_block:not(.block_custom) {
    display: none !important;
}
