.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: 22px !important;

    /* 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 (BIRU ELEGAN)    */
/* ============================= */

.obj_article_summary {
    background: #eaf4ff; /* biru muda lembut */
    border: 1.5px solid #0b3d91; /* biru tua */
    border-left: 5px solid #0b3d91; /* aksen kiri */
    border-radius: 10px;

    padding: 18px 20px;
    margin: 0;
    height: 100%;

    transition: all 0.25s ease;
}

/* Hover lebih hidup tapi tetap halus */
.obj_article_summary:hover {
    box-shadow: 0 8px 22px rgba(11, 61, 145, 0.15);
    transform: translateY(-4px);
    background: #f2f8ff; /* sedikit lebih terang saat hover */
}


/* ============================= */
/*   TEKS & KONTEN              */
/* ============================= */

/* Judul */
.obj_article_summary .title a {
    color: #0b2e6d;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}

.obj_article_summary .title a:hover {
    color: #063070;
    text-decoration: underline;
}

/* Author */
.obj_article_summary .authors {
    color: #2f4f6f;
    font-size: 14px;
}

/* Meta */
.obj_article_summary .meta {
    flex-grow: 1;
    color: #4a6a85;
}


/* ============================= */
/*   BUTTON STYLE               */
/* ============================= */

.obj_article_summary .btn {
    background: #0b3d91;
    color: #ffffff;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 13px;
    border: none;
    transition: 0.2s ease;
}

.obj_article_summary .btn:hover {
    background: #082c6c;
}


/* 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 */
}