/* ============================================================
   1. HEADER & LOGO FULL WIDTH
   ============================================================ */
.pkp_structure_head {
    padding: 0 !important;
}

.pkp_head_wrapper {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.pkp_site_name_wrapper {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
}

.pkp_site_name, .pkp_site_name a.is_img {
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    line-height: 0 !important;
}

.pkp_site_name .is_img img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
    margin: 0 !important;
    border: none !important;
}

/* ============================================================
   2. SIDEBAR CUSTOM BLOCK (ISSN, DLL)
   ============================================================ */
.pkp_block.block_custom, 
.pkp_block.block_custom .content {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.sidebar-header {
    padding: 10px !important;
    background: #0d2455;
    color: white;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid #696969;
}

.sidebar-body {
    padding: 0 !important;
    background: white;
    text-align: center;
}

.sidebar-body img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.pkp_structure_sidebar .pkp_grid_item {
    padding: 0 !important;
}

/* ============================================================
   SOLUSI FINAL: KEMBALIKAN CARD & PAKSA 3 BARIS
   ============================================================ */

.obj_article_summary {
    display: flex !important;
    padding: 20px !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    margin-bottom: 25px !important;
    background: #fff !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.obj_article_summary .cover {
    flex: 0 0 140px;
    margin-right: 25px;
}

.obj_article_summary .main {
    flex: 1;
    display: flex;
    flex-direction: column; /* MEMAKSA 3 BARIS */
}

.obj_article_summary .title {
    margin: 0 0 10px 0 !important;
    font-size: 1.25em !important;
}

.obj_article_summary .meta {
    margin-bottom: 15px !important;
}

.obj_article_summary .authors {
    font-style: italic;
    color: #555;
}

.obj_article_summary .galleys_links {
    margin-top: auto !important; /* Menaruh PDF di paling bawah */
}

.obj_article_summary .galleys_links li a {
    background: #0d2455 !important;
    color: white !important;
    padding: 6px 15px !important;
    border-radius: 4px;
    text-decoration: none !important;
}

/* ============================================================
   4. RESPONSIVE MOBILE
   ============================================================ */
@media (max-width: 600px) {
    .obj_article_summary {
        flex-direction: column;
        align-items: flex-start;
    }
    .obj_article_summary .cover {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}