.pkp_site_name img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.journal-info{
    width:100%;
    max-width:360px;
    font-family:Candara, Calibri, "Segoe UI", Arial, sans-serif;
}

/* ===== Header ===== */

.journal-title{
    background:linear-gradient(to bottom,#4A75C5,#3B67BA);
    color:#ffffff;
    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;
}

/* =========================================
   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;
    }

}