/* =====================================================
   FINAL CSS
   OJS 3.5.0.3 – Manuscript Theme (Child)
   Header Stabil + TOC Article Card Profesional
   ===================================================== */


/* =====================================================
   1. HEADER – STABIL & PROPORSIONAL (AMAN)
   ===================================================== */

/* Background header */
.pkp_structure_head {
  background-color: #4f7f92;
}

/* Area banner / nama jurnal */
.pkp_site_name {
  padding: 24px 0;
  text-align: center;
}

/* Banner image */
.pkp_site_name img {
  max-width: 100%;
  height: auto;
  max-height: 240px;   /* MEMBESARKAN BANNER DENGAN AMAN */
  object-fit: contain; /* TIDAK DIPAKSA, TIDAK BLUR */
}

/* Jika header pakai teks */
.pkp_site_name a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}


/* =====================================================
   2. NAVIGASI – NORMAL & RAPI
   ===================================================== */

.pkp_navigation_primary_wrapper {
  background-color: #ffffff;
  border-bottom: 1px solid #dddddd;
}

.pkp_navigation_primary > li > a {
  padding: 14px 18px;
  font-weight: 600;
  color: #444444;
}


/* =====================================================
   3. TOC – ARTICLE CARD ELEGAN & PROFESIONAL
   ===================================================== */

.obj_article_summary,
.article-summary {
  border: 2px solid #f36f21;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 28px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease-in-out;
}

/* Hover */
.obj_article_summary:hover,
.article-summary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* Judul artikel */
.obj_article_summary .title,
.article-summary .title,
.obj_article_summary h3,
.article-summary h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}

.obj_article_summary .title a,
.article-summary .title a,
.obj_article_summary h3 a,
.article-summary h3 a {
  color: #f36f21;
  text-decoration: none;
}

.obj_article_summary .title a:hover,
.article-summary .title a:hover {
  text-decoration: underline;
}

/* Subtitle */
.obj_article_summary .subtitle,
.article-summary .subtitle {
  font-size: 15px;
  color: #666666;
  margin-bottom: 14px;
}

/* Penulis */
.obj_article_summary .authors,
.article-summary .authors {
  font-size: 14px;
  color: #222222;
  margin-bottom: 14px;
}

/* Meta info */
.obj_article_summary .meta,
.article-summary .meta {
  font-size: 13px;
  color: #444444;
  margin-bottom: 12px;
}

/* Statistik */
.obj_article_summary .stats,
.article-summary .stats {
  font-size: 13px;
  color: #444444;
}

/* Area bawah */
.obj_article_summary .actions,
.article-summary .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* Tombol PDF */
.obj_article_summary .galley_link,
.article-summary .galley_link,
.obj_article_summary .btn,
.article-summary .btn {
  background-color: #f36f21;
  color: #ffffff !important;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  display: inline-block;
}

.obj_article_summary .galley_link:hover,
.article-summary .galley_link:hover {
  background-color: #d85e1b;
}

/* DOI */
.obj_article_summary .doi,
.article-summary .doi {
  margin-top: 8px;
  font-size: 13px;
}


/* =====================================================
   4. RESPONSIVE (MOBILE)
   ===================================================== */

@media (max-width: 768px) {

  .pkp_site_name {
    padding: 16px 0;
  }

  .pkp_site_name img {
    max-height: 180px;
  }

  .obj_article_summary,
  .article-summary {
    padding: 18px;
  }

  .obj_article_summary .title,
  .article-summary .title {
    font-size: 18px;
  }

  .obj_article_summary .actions,
  .article-summary .actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .obj_article_summary .galley_link,
  .article-summary .galley_link {
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
   FULL WIDTH HEADER FIX
   OJS 3.5.0.3 – Manuscript Theme
   ===================================================== */

/* Lepaskan batas container header */
.pkp_structure_head .pkp_container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Pastikan area site name full */
.pkp_site_name {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Banner benar-benar full */
.pkp_site_name img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block;
}

