/* Background umum */
html, body {
    background-image: url("https://img.freepik.com/free-vector/seamless-tiled-decorative-pattern-design_1048-12401.jpg");
    margin: 0;
    padding: 0;
    background-color: transparent;
}

/* Kontainer utama dengan Flexbox */
.pkp_structure_content {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0;
    background: #ffffff;
}

/* Banner utama */
.homepage_image {
    flex: 1;
    display: block;
    margin: 0;
}

.pkp_site_name .is_img img {
    display: inline-block;
    max-height: 165px;
    max-width: 100%;
    width: auto;
    height: auto;
    margin-top: 20px;
}

/* Menambahkan jarak di bawah header untuk elemen berikutnya */
.pkp_structure_head + .pkp_structure_content {
    margin-top: 0; /* Hapus jarak tambahan */
    padding-top: 33px; /* Pastikan konten dimulai dengan jarak cukup */
}

/* Sidebar */
.pkp_structure_sidebar {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0;
    background-color: transparent;
    border: none;
    box-sizing: border-box;
    margin-top: 0;
}

.pkp_structure_sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkp_structure_sidebar ul li {
    margin-bottom: 0;
}

.pkp_structure_sidebar ul li a {
    display: block;
    color: #bf8b16; /* Hitam Gradasi Linier */
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
}

.pkp_structure_sidebar ul li a:hover {
    color: #bf8b16; /* Hitam Gradasi Linier */
}

/* Header dengan degradasi hijau army */
.pkp_structure_head, .site-header {
    background: linear-gradient(to right, #3b5323, #4b692f, #6b8e23);
    border-bottom: 2px solid #4b692f;
    color: white;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

/* Footer dengan degradasi Hitam Solid */
.pkp_footer {
    display: flex;
    background: linear-gradient(to right, #6b8e23, #4b692f, #3b5323);
    color: Black;
    padding: 20px;
    border-top: 2px solid #4b692f;
    box-sizing: border-box;
}

.pkp_footer_content {
    background: linear-gradient(to right, #6b8e23, #4b692f, #3b5323);
    flex: 7;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
}

.pkp_brand_footer {
    background: linear-gradient(to right, #6b8e23, #4b692f, #3b5323);
    flex: 3;
    text-align: right;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Warna link */
a {
    color: #3b5323; /* Hijau army */
}

a:hover {
    color: #6b8e23; /* Hijau olive */
}

/* Daftar Artikel */
.obj_article_summary {
    background-color: #f5f5f5;
    border: 1px solid #4b692f;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.obj_article_summary:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.15);
}

.obj_article_summary .title {
    font-size: 18px;
    font-weight: bold;
    color: #3b5323;
    margin-bottom: 10px;
    text-decoration: none;
}

.obj_article_summary .title:hover {
    color: #6b8e23;
}

.obj_article_summary .pdf-link {
    display: inline-block;
    background-color: #3b5323;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.obj_article_summary .pdf-link:hover {
    background-color: #4b692f;
}

/* Detail Artikel */
.obj_article_details .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.obj_article_details .main_entry {
    flex: 3;
}

.obj_article_details .entry_details {
    flex: 1;
    max-width: 250px;
    text-align: center;
}

.obj_article_details .entry_details .obj_galley_link.pdf {
    display: inline-block;
    background-color: #3b5323;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.obj_article_details .entry_details .obj_galley_link.pdf:hover {
    background-color: #4b692f;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
}

.obj_article_details .page_title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(to right, #3b5323, #4b692f, #6b8e23);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 20px;
    padding: 10px;
}

/* Responsivitas */
@media (max-width: 768px) {
    .obj_article_details .row {
        flex-direction: column;
        gap: 10px;
    }

    .obj_article_details .entry_details {
        max-width: 100%;
        text-align: center;
    }
}
