/* Stylesheet Elegan untuk Jurnal Ekonomi Syariah
  Fokus pada keterbacaan, profesionalisme, dan estetika modern.
*/

/* 1. Impor Font dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather:wght@400;700&display=swap');

/* Palet Warna:
   Hijau Profesional: #014d4e
   Emas Aksen: #c9b071
   Abu-abu Netral: #f5f5f5
   Teks Utama: #333333
*/

body {
  font-family: 'Merriweather', serif; /* Font Serif untuk keterbacaan maksimal */
  color: #333333;
}

h1, h2, h3, h4, h5, h6, .title, .pkp_block .title {
  font-family: 'Lato', sans-serif; /* Font Sans-serif untuk semua judul */
}

a {
  color: #014d4e; /* Warna link utama menggunakan hijau profesional */
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* --- Struktur Utama --- */

.pkp_structure_page {
  margin: 0 auto;
  max-width: 1160px;
  background: #ffffff; /* Latar belakang putih bersih */
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
}

.pkp_structure_head {
  background-color: #ffffff;
  border-bottom: 3px solid #014d4e;
  padding-top: 20px;
  padding-bottom: 20px;
}

.pkp_structure_sidebar.left {
  background-color: #f5f5f5; /* Abu-abu netral untuk sidebar */
  border-right: 1px solid #e0e0e0;
}

.pkp_structure_footer_wrapper {
  background: #014d4e; /* Footer dengan warna hijau profesional */
  color: #ffffff;
}
.pkp_footer_content a {
  color: #ffffff;
}


/* --- Menu Vertikal --- */
.vertical-menu {
  width: 100%;
}
.vertical-menu a {
    background-color: transparent; /* Latar belakang bersih */
    color: #333333;
    display: block;
    padding: 12px 15px;
    font-family: 'Lato', sans-serif;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease-in-out;
}
.vertical-menu a:hover {
  background-color: rgba(1, 77, 78, 0.1); /* Sedikit warna hijau saat hover */
  color: #014d4e;
  text-decoration: none;
}
.vertical-menu a.active {
    background-color: #014d4e;
    color: white;
    border-left: 5px solid #c9b071; /* Aksen emas untuk item aktif */
    padding-left: 10px;
}
.pkp_structure_sidebar.left .title {
    background-color: #014d4e;
    color: white;
    margin: 0;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 15px;
    font-size: 1.2em;
}

/* --- Halaman Detail Artikel & Daftar Artikel --- */
.obj_article_details .page_title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 2.5em;
  color: #333;
  padding: 10px 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #c9b071; /* Garis bawah emas sebagai aksen elegan */
  /* Menghilangkan background dan shadow yang lama */
  background-color: transparent;
  box-shadow: none;
}
.obj_article_details .abstract {
  text-align: justify;
  line-height: 1.8;
}
.obj_issue_toc .articles > li {
  margin-bottom: 25px;
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  border-radius: 8px; /* Sudut lebih lembut */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Bayangan lebih halus */
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.cmp_article_list.articles li:hover {
  transform: translateY(-3px); /* Efek terangkat saat hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background-color: #fff; /* Warna tetap putih */
}

/* --- Lainnya --- */
.pkp_navigation_primary_row {
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}
section.homepage_about {
  padding: 30px 20px;
  font-size: 1.05em;
  color: #333333;
  background: #f5f5f5; /* Latar belakang abu-abu muda yang bersih */
  margin-top: 21px;
  text-align: justify;
  border-radius: 8px;
}
section.homepage_about h2 {
  color: #014d4e;
  text-shadow: none;
}