.pkp_site_name {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pkp_site_name > a {
  padding-top: 0;
  padding-bottom: 0;
}
.pkp_site_name .is_img img {
  max-height: 200px !important;
}
.pkp_site_name_wrapper {
  padding-left: 0;
  padding-right: 0;
}
.pkp_navigation_user_wrapper {
  top: 0;
  right: 0;
  padding-right: 30px;
}
.pkp_structure_page {
  margin-top: 20px !important;
  margin-bottom: 20 !important;
  padding-bottom: 20 !important;
}

/* ===== MEMINDAHKAN ADDITIONAL CONTENT KE ATAS CURRENT ISSUE ===== */

.pkp_page_index .page_index_journal {
    display: flex;
    flex-direction: column;
}

.pkp_page_index .additional_content {
    order: -1;
    margin-bottom: 30px;
}


/* ===== STYLE BLOK DESKRIPSI MINAGRO (TANPA WARNA) ===== */

.additional_content {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 10px 0;
}

/* teks deskripsi */
.additional_content p {
    text-align: justify;
    line-height: 1.6;
    margin: 0;
}

/* cover jurnal */
.additional_content img {
    max-width: 220px;
    height: auto;
}

/* ============================= */
/*   FORCE GRID 2 KOLOM (FIX)    */
/* ============================= */

.pkp_page_index .current_issue .articles {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;

    /* PENTING: urutan kiri → kanan */
    grid-auto-flow: row !important;
}

/* Paksa semua item ikut grid */
.pkp_page_index .current_issue .articles .obj_article_summary {
    width: 100% !important;
    float: none !important;
    display: flex !important;
    flex-direction: column;
}


/* ============================= */
/*   CARD STYLE (SCOPUS CLEAN)   */
/* ============================= */

.obj_article_summary {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #94ab06;
    border-radius: 8px;
    padding: 18px 20px;
    margin: 0;

    height: 100%;
    transition: all 0.25s ease;
}

/* Hover */
.obj_article_summary:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

/* Judul */
.obj_article_summary .title a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}

.obj_article_summary .title a:hover {
    color: #94ab06;
}

/* Author */
.obj_article_summary .authors {
    color: #555;
    font-size: 14px;
}

/* Meta */
.obj_article_summary .meta {
    flex-grow: 1;
    color: #777;
}

/* Tombol */
.obj_article_summary .btn {
    background: #94ab06;
    color: #fff;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
}

/* Tombol selalu di bawah */
.obj_article_summary .galleys_links {
    margin-top: auto;
}


/* ============================= */
/*   RESPONSIVE                  */
/* ============================= */

@media (max-width: 992px) {
    .pkp_page_index .current_issue .articles {
        grid-template-columns: 1fr !important;
    }
}
/* === HOVER LINK PREMIUM HALUS (MINAGRO STYLE) === */
a {
    display: inline-block;
    transition: transform 0.12s ease, color 0.15s ease;
}

a:hover {
    transform: scale(1.02);
    color: #2e7d32; /* hijau akademik */
}