.pkp_site_name .is_img img { 
display: inline-block; 
max-height: 163px; 
max-width: 1000%; 
width: auto; 
height: auto 

}

.journal-info{
    width:100%;
    max-width:360px;
    font-family:Candara, Calibri, "Segoe UI", Arial, sans-serif;
}

.journal-section{
    margin-bottom:8px;
}

/* ===== Header ===== */

.journal-title{
    background:linear-gradient(to bottom,#4A75C5,#3B67BA);
    color:#ffffff;
    font-family:Candara, Calibri, "Segoe UI", Arial, sans-serif;
    font-size:16px;
    font-weight:700;
    text-align:center;
    padding:10px 12px;
    border-radius:5px 5px 0 0;
}

/* ===== Menu ===== */

.journal-info a.menu-item{
    display:block;
    background:#ffffff;
    color:#222;
    text-decoration:none;
    font-size:15px;
    padding:10px 15px;
    border:1px solid #d8d8d8;
    border-top:none;
    transition:all .2s ease;
}

.journal-info a.menu-item:hover{
    background:#f4f9ff;
    color:#0d47a1;
    text-decoration:none;
}

.journal-info a.menu-item:last-child{
    border-radius:0 0 8px 8px;
}

/* ===== Publisher ===== */

.publisher-box{
    background:#ffffff;
    border:1px solid #d8d8d8;
    border-top:none;
    border-radius:0 0 8px 8px;
    text-align:center;
    padding:15px;
}

.publisher-heading{
    font-size:15px;
    font-weight:700;
    color:#444;
    margin-bottom:10px;
    font-family:Candara, Calibri, "Segoe UI", Arial, sans-serif;
}

.publisher-heading.collaboration{
    margin-top:18px;
}

.publisher-logo{
    display:block;
    margin:0 auto;
    transition:.2s ease;
}

.publisher-logo:hover{
    transform:scale(1.03);
}

.publisher-box img{
    display:block;
    margin:0 auto;
}

.publisher-box img.fpik{
    width:210px !important;
    height:auto !important;
}

.publisher-box img.mskpi{
    width:60px !important;
    max-width:60px !important;
    height:auto !important;
}

/* ===== Accreditation ===== */

.accreditation-img{
    display:block;
    width:100%;
    max-width:300px;
    height:auto;
    margin:0 auto;
    border:1px solid #d8d8d8;
    border-radius:4px;
    transition:all .2s ease;
}

.accreditation-img:hover{
    opacity:.95;
    transform:scale(1.02);
}

/* ===== Indexing & Abstracting ===== */

.indexing-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.indexing-grid a{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    border:1px solid #d8d8d8;
    border-radius:6px;
    padding:4px;              /* diperkecil */
    text-decoration:none;
    transition:all .2s ease;
}

.indexing-grid a:hover{
    background:#f4f9ff;
    border-color:#c6dafc;
}

.indexing-grid img{
    display:block;
    width:100%;
    height:auto;
    transition:transform .2s ease;
}

.indexing-grid a:hover img{
    transform:scale(1.05);
}

/* ===== Visitor Statistics ===== */

.statistics-card{
    display:block;
    background:#ffffff;
    border:1px solid #d8d8d8;
    border-radius:6px;
    padding:12px;
    margin-bottom:12px;
    text-align:center;
    text-decoration:none;
    transition:all .2s ease;
}

.statistics-card:last-child{
    margin-bottom:0;
}

.statistics-card:hover{
    background:#f4f9ff;
    border-color:#c6dafc;
}

.statistics-img{
    display:block;
    margin:0 auto 8px;
    max-width:100%;
    height:auto;
}

.statistics-text{
    display:block;
    font-family:Candara, Calibri, "Segoe UI", Arial, sans-serif;
    font-size:15px;
    font-weight:700;
    color:#3B67BA;
}

.statistics-card:hover .statistics-text{
    color:#0d47a1;
}

/* =========================================
   FOOTER OJS
========================================= */

.pkp_structure_footer{
    background:#B7D1F8;
    padding:12px 24px;
}

/* Warna teks */
.pkp_structure_footer,
.pkp_structure_footer p,
.pkp_structure_footer strong,
.pkp_structure_footer span{
    color:#222 !important;
}

/* Link */
.pkp_structure_footer a{
    color:#0B4EA2 !important;
    text-decoration:underline;
}

.pkp_structure_footer a:hover{
    color:#08306B !important;
}

/* Sembunyikan logo bawaan OJS/PKP */
.pkp_brand_footer{
    display:none !important;
}

/* ===========================
   Layout Footer 2 Kolom
=========================== */

.footer-grid{
    display:flex;
    justify-content:space-between;
    align-items:stretch;
    gap:40px;
}

.footer-left{
    flex:1;
}

.footer-right{
    width:220px;
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;   /* Logo di kanan bawah */
}

/* Logo OJS */
.footer-ojs{
    width:120px;
    height:auto;
    display:block;
}

/* Responsive */
@media (max-width:768px){

    .pkp_structure_footer{
        padding:20px;
    }

    .footer-grid{
        flex-direction:column;
        gap:20px;
    }

    .footer-right{
        width:100%;
        justify-content:flex-start;
        align-items:flex-start;
    }

    .footer-ojs{
        width:160px;
    }

}