.pkp_site_name .is_img img {
	display: inline-block;
	max-height: 220px;
	max-width: 6000px;
	width: auto;
	height: auto
}
.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: .5rem;
}
.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{
    width: 18px;
    height: 18px;
    margin-right: .5rem;
}   
.team-aff ul li{
    margin-bottom: 0;
}
.team-aff ul li .tm_label{
    display: inline-block;
    width: 80px;
}
 
.team-aff ul li .ico-label{
    width: 18px;
    height: 18px;
    margin-right: .5rem;
}

/* Mengambil Font Awesome langsung ke dalam CSS */
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

    .sidebar-container {
        font-family: 'Inter', sans-serif;
        max-width: 100%;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #d1d5db;
        background: #ffffff;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    /* Bagian Header Menu */
    .sidebar-header {
        background: #2f3e46; /* Warna gelap original Anda */
        color: #ffffff;
        padding: 15px 20px;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .sidebar-header i {
        font-size: 16px;
        opacity: 0.9;
    }

    /* List Item */
    .sidebar-menu-item {
        display: flex;
        align-items: center;
        padding: 14px 20px;
        text-decoration: none;
        color: #374151;
        font-weight: 600;
        font-size: 14px;
        border-bottom: 1px solid #f3f4f6;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sidebar-menu-item:last-child {
        border-bottom: none;
    }

    /* Icon Style */
    .sidebar-menu-item i {
        width: 24px;
        font-size: 16px;
        color: #526d7a;
        margin-right: 12px;
        text-align: center;
        transition: color 0.3s ease;
    }

    /* Hover Effect */
    .sidebar-menu-item:hover {
        background-color: #f9fafb;
        color: #2f3e46;
        padding-left: 28px; /* Animasi geser yang elegan */
    }

    .sidebar-menu-item:hover i {
        color: #3b82f6; /* Warna ikon berubah saat hover */
    }

    /* Label Non-Link (seperti Indexing/Contact jika bukan link) */
    .sidebar-label {
        display: flex;
        align-items: center;
        padding: 14px 20px;
        color: #374151;
        font-weight: 600;
        font-size: 14px;
        border-bottom: 1px solid #f3f4f6;
    }