/* Base Typography and Structure */
body {
    background: #ffffff;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: normal;
    min-width: 730px !important;
    margin: 0;
    padding: 0;
}

article, aside, footer, header, nav, section {
    display: block;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: normal;
    font-size: 16px;
}

/* Header */
.pkp_structure_head {
    margin: 0;
    padding: 0;
    background: transparent;
    min-height: 100%;
    width: 100%;
    display: inline-block;
    border-bottom: 0 solid #ddd;
}

.has_site_logo .pkp_head_wrapper {
    padding-top: 0;
}

.pkp_head_wrapper {
    background: white;
    width: 100%;
    height: auto;
}

/* Main Structure */
.pkp_structure_main {
    background: #FFFFFF;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    height: auto;
}

/* Sidebar */
.pkp_structure_sidebar {
    background: white ;
    height: auto;
}

/* Content */
.pkp_structure_content {
    background: #FFFFFF;
    padding: 0;
    height: auto;
    color: #222;
}

/* Footer */
.pkp_structure_footer_wrapper {
    background: rgba(0,0,0,0.05);
    border-top: 1px solid #ddd;
    border-bottom: 1.43rem solid #1f5981
}

.pkp_footer_content {
    background: #fff;
    width: 100%;
    padding: 30px;
    text-align: left;
    box-sizing: border-box;
}

.pkp_brand_footer {
    background: #fff;
    float: right;
    height: 100%;
    width: 0%;
    padding: 0;
}

/* Navigation */
.pkp_navigation_user {
     /* Jadikan user nav flex container */
    list-style: none;
    margin: 0;
    padding: 0;
}

.pkp_navigation_user > li {
    margin-left: 10px; /* Spasi antar item user nav */
}

.pkp_navigation_user > li:first-child {
    margin-left: 0;
}

.pkp_navigation_user > li > a {
    background-color: white;
    color: #fb6d0f; /* Warna teks yang kontras dengan latar navigasi */
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold; /* Sedikit tebal agar menonjol */
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pkp_navigation_user > li > a:hover,
.pkp_navigation_user > li > a:focus {
    background-color: #e0e0e0;
    color: #fb6d0f;
}

.pkp_site_nav_menu {
    background: transparent;
}

.pkp_navigation_primary_row {
    background: #fb6d0f;
    padding-left: 20px;
}

.pkp_navigation_primary > li > a {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 17px;
    font-weight: normal;
    display: block;
    color: white;
}

.pkp_navigation_user > li > a {
    background-color: white;
    color: blue;
}

/* Site Logo */
.pkp_site_name .is_img {
    display: inline-block;
    padding-top: 0;
    padding-bottom: 0;
}

.pkp_site_name .is_img img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
}

/* Editorial List */
.editorial-list {
    position: relative;
}

.editorial-list li {
    margin-bottom: 1.125rem;
}

.editorial-list .img-profile {
    position: absolute;
    width: 95px;
    height: 105px;
    border: 1px solid #ddd;
    padding: 0.5rem;
    box-sizing: border-box;
}

.editorial-list .img-profile .imgthumb {
    width: 80px;
    height: 90px;
    overflow: hidden;
    margin: 0 auto;
    object-fit: fill;
}

.editorial-list .img-profile img {
    width: 100%;
    height: 100%;
}

.team-content {
    margin-left: 100px;
    min-height: 130px;
}

.team-content .ico-label,
.team-aff ul li .ico-label {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
}

.team-aff ul li {
    margin-bottom: 0;
}

.team-aff ul li .tm_label {
    display: inline-block;
    width: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pkp_structure_footer_wrapper,
    .pkp_footer_content,
    .pkp_structure_main,
    .pkp_structure_sidebar,
    .team-content {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .editorial-list .img-profile {
        position: relative;
        margin-bottom: 10px;
    }

    .team-content {
        margin-left: 0;
    }

    .pkp_navigation_primary > li > a {
        font-size: 15px;
        padding: 10px 5px;
    }

    .pkp_navigation_primary_row {
        padding-left: 10px;
    }
}
