/* =========================================================
   1. STRUKTUR UTAMA KONTEN TENGAH (BAGIAN DI BAWAH HEADER)
   ========================================================= */

/* Latar belakang halaman bersih dan lembut khas JPGA */
body {
    background-color: #f4f6f9 !important;
}

/* Memposisikan Konten Tengah & Sidebar Pas di Tengah Layar */
html body .pkp_structure_page,
html body .pkp_structure_body {
    max-width: 1250px !important;
    width: 92% !important;
    margin: 20px auto !important;
    float: none !important;
}

/* Flexbox Layout: Konten Utama (70%) & Sidebar (27%) */
@media (min-width: 992px) {
    html body .pkp_structure_content {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
    }

    html body .pkp_structure_main {
        width: 70% !important;
        max-width: 70% !important;
        float: none !important;
        margin: 0 !important;
    }

    html body .pkp_structure_sidebar {
        width: 27% !important;
        max-width: 27% !important;
        float: none !important;
        margin: 0 !important;
    }
}

/* =========================================================
   2. DESAIN KARTU ARTIKEL (GAYA JPGA LAKASPIA)
   ========================================================= */

/* Kartu Artikel */
.obj_article_summary {
    background: #ffffff !important;
    border: 1px solid #e1e8ed !important;
    border-radius: 8px !important;
    padding: 20px 24px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.25s ease-in-out !important;
}

/* Efek Hover saat Kursor di Atas Artikel */
.obj_article_summary:hover {
    border-color: #0d6efd !important;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.08) !important;
    transform: translateY(-2px) !important;
}

/* Judul Artikel */
.obj_article_summary .title a {
    color: #1a202c !important;
    font-size: 1.08rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    line-height: 1.45 !important;
}

.obj_article_summary .title a:hover {
    color: #0d6efd !important;
}

/* Penulis Artikel */
.obj_article_summary .authors {
    font-size: 0.88rem !important;
    color: #4a5568 !important;
    font-weight: 500 !important;
    margin-top: 6px !important;
    margin-bottom: 10px !important;
}

/* Tombol Baca PDF (Rounded Oval Khas JPGA) */
.obj_article_summary .galleys_links {
    margin-top: 15px !important;
    padding-top: 12px !important;
    border-top: 1px dashed #edf2f7 !important;
}

.obj_article_summary .galleys_links li a.galley_link {
    background-color: #0d6efd !important;
    color: #ffffff !important;
    border-radius: 50px !important; /* Bentuk rounded oval */
    padding: 6px 18px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: background-color 0.2s ease !important;
}

.obj_article_summary .galleys_links li a.galley_link:hover {
    background-color: #0b5ed7 !important;
    box-shadow: 0 2px 6px rgba(13, 110, 253, 0.3) !important;
}

/* =========================================================
   3. DESAIN SIDEBAR (BLOK KANAN)
   ========================================================= */

.pkp_block {
    background: #ffffff !important;
    border: 1px solid #e1e8ed !important;
    border-radius: 8px !important;
    padding: 18px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}

/* Judul Blok Sidebar dengan Akses Garis Biru Bawah */
.pkp_block .title {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding-bottom: 8px !important;
    margin-bottom: 14px !important;
    border-bottom: 2px solid #0d6efd !important;
}