@charset "UTF-8";
/* CSS Document */

/**************************HEADER*************************************************/
.pkp_structure_head {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #feb201 !important;
    background-image: none !important;
    margin-bottom: .25em;
}

.pkp_site_name {
    width: 100%; /* Kontainer logo lebar penuh */
    display: flex;
    justify-content: center; /* Logo berada di tengah */
}

.pkp_site_name .is_img {
    width: 100%; /* Gambar lebar penuh */
}

.pkp_site_name .is_img img {
    width: 100%; /* Gambar akan mengambil seluruh lebar kontainer */
    height: auto; /* Pertahankan rasio aspek gambar */
    object-fit: cover; /* Memastikan gambar tetap terisi dengan baik */
}

.pkp_site_name_wrapper {
    background: none !important;
}


/**************************FOOTER*************************************************/
.pkp_brand_footer {
    display: none !important;
}

.pkp_structure_footer_wrapper {
    background-color: #151535 !important;
    border-top: 1px solid #ddd;
    border-bottom: 10px solid #151535 !important;
    color: #ffffff !important;
    padding: 25px 0;
    text-align: center;
}

.pkp_structure_footer_wrapper a {
    color: #ffffff !important;
    text-decoration: none;
}

.pkp_structure_footer_wrapper a:hover {
    text-decoration: underline !important;
}

/**************************CUSTOM BLOCK SIDEBAR***********************************/
.pkp_block {
    padding: 0px 3px 5px 5px;
    font-size: 14px;
    line-height: 20px;
    background-color: #f1f1f1 !important;
    margin-bottom: 1em !important;
}

.pkp_block .title {
    width: 100%;
    background-color: #151535 !important;
    height: 30px;
    font-size: 13px;
    color: white !important;
    padding-top: 0.4em;
    margin-bottom: 0px;
    border: 0px;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
}

.pkp_block .content {
    background-color: #f8f1e3 !important;
    padding: 1em;
}

.pkp_block .content ul li {
    padding: 0px 0;
    background-color: #f8f1e3 !important;
}

.pkp_block ul>li {
    border-bottom: 1px solid rgba(0, 0, 0, .125) !important;
}

.pkp_block ul>li a {
    color: #151535 !important;
    padding: .75rem 1rem;
    display: flex;
}

.pkp_block ul>li a:hover {
    text-decoration: none !important;
    background-color: #f0e2c5 !important;
}

/**************************ADDITIONAL CONTENT***********************************/
.pkp_page_index .additional_content {
    border-top: 0px solid #ddd;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.pkp_page_index .additional_content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

.pkp_page_index .additional_content .text {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .pkp_page_index .additional_content {
        flex-direction: column;
        align-items: center;
    }

    .pkp_page_index .additional_content img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
