/* 1. Memaksa Logo menjadi Banner Full Width */
.pkp_site_name .is_img img {
    width: 100% !important;  
    max-width: 100% !important;
    height: auto !important; 
    max-height: none !important; 
}

/* 2. Header & Banner Mepeet */
.pkp_structure_head {
    background-color: #ffffff !important; 
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 4px solid #800000 !important; /* Garis bawah Maroon Tebal */
}

.pkp_head_wrapper {
    max-width: 100% !important;
    padding: 0 !important;
}

/* 3. Pengaturan Latar Belakang Body */
body {
    background-color: #fdfafb !important; /* Putih dengan sedikit rona merah hangat */
    color: #1e293b;
}

/* 4. Styling Navigasi Utama (Current, Archives, About) */
.pkp_navigation_primary > li > a {
    color: #800000 !important; /* Merah Maroon */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 10px 15px !important;
}

.pkp_navigation_primary > li > a:hover {
    color: #b91c1c !important; /* Merah Terang saat hover */
    border-bottom: 2px solid #b91c1c;
}

/* 5. Konten Tengah (Card Layout) */
.pkp_structure_main {
    background: #ffffff;
    padding: 30px !important;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(128 0 0 / 0.1), 0 2px 4px -2px rgb(128 0 0 / 0.1);
    margin-top: 20px;
    margin-bottom: 40px;
}

/* 6. Mewarnai Judul Edisi & Artikel */
h2, h3, .obj_issue_summary h2 a, .obj_article_summary h3 a {
    color: #800000 !important; /* Deep Maroon */
    text-decoration: none;
    transition: 0.3s;
}

h2:hover, h3:hover, .obj_issue_summary h2 a:hover, .obj_article_summary h3 a:hover {
    color: #b91c1c !important;
}

/* 7. Styling Tombol PDF & View (Aksen Merah) */
.obj_article_summary .pages, .obj_article_summary .pdf {
    background-color: #fff1f2 !important; /* Pink sangat muda */
    color: #991b1b !important; /* Merah Tua */
    border: 1px solid #fecaca !important; /* Border Pink Lembut */
    padding: 5px 12px !important;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}

.obj_article_summary .pdf:hover {
    background-color: #991b1b !important;
    color: #ffffff !important;
}

/* 8. Footer Maroon Profesional */
.pkp_structure_footer {
    background-color: #800000 !important;
    color: #ffffff !important;
    padding: 40px 0 !important;
}

.pkp_structure_footer a {
    color: #fca5a5 !important; /* Link Pink Terang di footer */
}

/* 9. Sidebar */
.pkp_structure_sidebar {
    padding-top: 20px !important;
}

/* Tambahan: Merapikan garis pembatas artikel */
.obj_article_summary {
    border-color: #fee2e2 !important;
}