.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;
}


/* ===== CURRENT ISSUE ===== */

.pkp_page_index .current_issue {
    margin-top: 10px;
}

/* === CARD ARTIKEL MINAGRO (HIJAU LEMBUT #c4fea6) === */
.obj_article_summary {
    background: #f6fff2; /* sangat lembut (biar tidak terlalu terang) */
    border: 1px solid #c4fea6;
    border-left: 6px solid #7ed957; /* aksen hijau lebih tegas */
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 22px;
    transition: all 0.25s ease;
}

/* Hover modern */
.obj_article_summary:hover {
    background: #ecffe3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

/* Judul artikel */
.obj_article_summary .title a {
    color: #1b5e20;
    font-weight: 600;
    text-decoration: none;
}

.obj_article_summary .title a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Author */
.obj_article_summary .authors {
    color: #4e4e4e;
    font-size: 14px;
}

/* Subtitle / abstract */
.obj_article_summary .subtitle,
.obj_article_summary .meta {
    color: #666;
}

/* Tombol PDF */
.obj_article_summary .btn {
    background: #7ed957;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    padding: 7px 14px;
    font-weight: 500;
}

.obj_article_summary .btn:hover {
    background: #5fcf3c;
}

/* === 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 */
}