/* === ATUR HEADER IMAGE (Gambar Beranda) === */
.pkp_site_name .is_img img {
  width: 100% !important;
  max-height: 280px !important; /* tinggi header seperti JPKM */
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-bottom: 5px solid #2d5e4f;
}

/* === HILANGKAN TEKS JUDUL KALO PAKAI GAMBAR SAJA === */
.pkp_site_name h1, .pkp_site_name .journal-title {
  display: none;
}

/* === RESPONSIVE HEADER === */
@media screen and (max-width: 768px) {
  .pkp_site_name .is_img img {
    max-height: 180px !important;
  }
}
.homepage_about {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.homepage_about h2 {
  color: #2d5e4f;
  border-bottom: 3px solid #2d5e4f;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.homepage_about h3 {
  color: #2d5e4f;
  margin-top: 30px;
  font-size: 1.5rem;
}

.homepage_about p {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.homepage_about ul {
  list-style: square;
  margin: 0 0 20px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.homepage_about .scope-list {
  list-style: disc;
  margin-left: 25px;
}

.homepage_about .badges {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.homepage_about .badges img {
  max-width: 120px;
  height: auto;
  display: block;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .homepage_about {
    padding: 20px;
  }
  .homepage_about .badges {
    gap: 15px;
  }
  .homepage_about h2 {
    font-size: 1.6rem;
  }
  .homepage_about h3 {
    font-size: 1.3rem;
  }

  .table-journal-info td, .table-journal-info th {
    display: block;
    width: 100%;
  }
}
.pkp_block.block_custom ul li {
  margin-bottom: 12px;
  line-height: 0.5;
}

.pkp_block.block_custom ul li a {
  color: #333;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.pkp_block.block_custom ul li a:hover {
  color: #2d5e4f;
  font-weight: bold;
  padding-left: 5px;
}
/* 🔹 Footer Wrapper lebih ringkas */
.pkp_structure_footer_wrapper {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* 🔹 Kurangi jarak antar kolom */
.pkp_footer_content > div {
  margin-bottom: 5px;
}

/* 🔹 Perkecil ukuran judul kolom */
.pkp_footer_content h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

/* 🔹 Perhalus teks paragraf dan jarak antar baris */
.pkp_footer_content p {
  font-size: 0.85rem;
  line-height: 1.3;
  margin: 2px 0;
}

/* 🔹 Ukuran logo OJS lebih kecil */
.pkp_brand_footer img {
  max-width: 80px;
  margin-top: 5px;
}

/* 🔹 Margin bawah untuk bagian copyright */
.pkp_structure_footer .text-center {
  padding-top: 5px;
  margin-top: 5px;
  font-size: 0.7rem;
  line-height: 1.2;
}


.about-journal {
  background: #f4f9f9;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.about-journal .container {
  max-width: 900px;
  margin: auto;
}
.about-journal h2 {
  font-size: 2rem;
  color: #2d5e4f;
  text-align: center;
  margin-bottom: 20px;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.tab-btn {
  background: #e0f0ef;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.tab-btn.active, .tab-btn:hover {
  background: #2d5e4f;
  color: #fff;
}
.tab-content {
  display: none;
  font-size: 1rem;
  line-height: 1.6;
}
.tab-content.active {
  display: block;
}
.info-list {
  list-style: none;
  padding: 0;
}
.info-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.info-list i {
  color: #2d5e4f;
  margin-right: 8px;
}

/* Accordion hanya dengan CSS */
.accordion-container {
  font-family: "Times New Roman", Times, serif;
  font-size: 13pt;
  line-height: 1.7;
  max-width: 900px;
  margin: auto;
  padding: 30px;
  background: #f4f4f4;
  border-radius: 8px;
}
.accordion-container h2 {
  text-align: center;
  color: #2d5e4f;
  margin-bottom: 25px;
}
.accordion-item {
  margin-bottom: 10px;
}
.accordion-item input {
  display: none;
}
.accordion-item label {
  display: block;
  padding: 10px 15px;
  background-color: #e0f0ef;
  color: #2d5e4f;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.accordion-item label:hover {
  background-color: #2d5e4f;
  color: #fff;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  padding: 0 15px;
  border-left: 3px solid #2d5e4f;
}
.accordion-item input:checked ~ .accordion-content {
  max-height: 1000px;
  padding: 15px;
}

.table-journal-info {
  width: 100%;
  max-width: 700px;
  margin: auto;
  border-collapse: collapse;
  font-family: "Times New Roman", Times, serif;
  font-size: 13pt;
  background-color: #fefefe;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.table-journal-info th,
.table-journal-info td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.table-journal-info th {
  background-color: #2d5e4f;
  color: white;
  font-weight: normal;
  width: 30%;
}
.table-journal-info tr:hover {
  background-color: #f0f8f7;
  transition: background 0.3s ease;
}

/* Sidebar search styling */
.search-sidebar {
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.search-sidebar input[type="text"],
.search-sidebar input[type="date"] {
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 13px;
}

.search-sidebar button {
  background-color: #165073;
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.search-sidebar button:hover {
  background-color: #14415c;
}
