/* ===== SIDEBAR BOX STYLE ===== */
.sidebar-box {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  margin-bottom: 16px;
}

/* ===== SIDEBAR TITLE ===== */
.sidebar-title {
  background: #2c3e50;
  color: #ffffff;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

/* ===== SIDEBAR LIST ===== */
.sidebar-list {
  list-style: none;
  padding: 12px;
  margin: 0;
}

.sidebar-list li {
  border-bottom: 1px solid #eee;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list a {
  display: block;
  padding: 6px 0;
  color: #333;
  font-size: 13px;
  text-decoration: none;
}

.sidebar-list a:hover {
  color: #1a73e8;
  padding-left: 6px;
  transition: all 0.2s ease;
}

/* ===== INDEXED LOGO ===== */
.indexed-logos {
  padding: 12px;
  text-align: center;
}

.indexed-logos img {
  max-width: 90%;
  margin-bottom: 10px;
}

/* ===== VISITOR ===== */
.visitor-box {
  padding: 12px;
  text-align: center;
}

/* ===== FIX SIDEBAR VISIBILITY ===== */
.pkp_structure_sidebar {
  display: block !important;
}

/* ===== TOOLS IMAGE ===== */
.tools-image-box {
  padding: 12px;
  text-align: center;
}

.tools-image-box a {
  display: block;
  margin-bottom: 12px;
}

.tools-image-box img {
  width: 100%;
  max-width: 240px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  background: #fff;
  padding: 6px;
  transition: all 0.2s ease;
}

.tools-image-box img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ===== TOOLS GRID 2 COLUMN ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 12px;
}

.tools-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  background: #ffffff;
  padding: 6px;
  transition: all 0.2s ease;
}

.tools-grid a:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transform: scale(1.03);
}

.tools-grid img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

/* ===== MOBILE: 1 COLUMN ===== */
@media (max-width: 480px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   EDITORIAL TEAM SECTION
================================ */
.editorial-team {
  /* padding: 60px 16px; */
  background-color: #f9fafb;
}

.editorial-team .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f2933;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 40px;
  color: #4b5563;
  font-size: 1rem;
}

/* Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Card */
.team-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.team-info .role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 10px;
}

.team-info p {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.5;
}

.team-info .affiliation {
  font-size: 0.85rem;
  color: #6b7280;
}

/* ===============================
   TABLET
================================ */
@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card img {
    height: 260px;
  }
}

/* ===============================
   DESKTOP
================================ */
@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-title {
    font-size: 2.4rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
  }
}

/* =========================
   CUSTOM FOOTER
========================= */
.custom-footer {
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  font-size: 14px;
  color: #222;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 20px;
  display: flex;
  gap: 30px;
}

.footer-column {
  flex: 1;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-column p {
  line-height: 1.0;
  margin: 0;
}

.footer-column a {
  color: #0044cc;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Bottom copyright bar */
.footer-bottom {
  background: #dbe0e5; /* sesuaikan dengan warna theme */
  color: #000000;
  padding: 10px 15px;
  font-size: 13px;
  text-align: center;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 15px;
  }

  .footer-column {
    text-align: left;
  }
}

.pkp_brand_footer {
    display: none;
}

.pkp_structure_footer{
    text-align: center !important;
}

/* Menghilangkan teks judul jika gambar sudah berisi teks */
.pkp_site_name .is_text {
    display: none;
}

/* ===============================
   FULL WIDTH & RESPONSIVE HEADER
================================ */

/* 1. Menghilangkan batasan lebar pada container di dalam header */
.pkp_structure_head .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* 2. Menghilangkan padding pada wrapper nama situs */
.pkp_site_name_wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

/* 3. Memastikan link dan gambar memenuhi seluruh area */
.pkp_site_name, 
.pkp_site_name a, 
.pkp_site_name .is_img {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0; /* Menghapus celah putih di bawah gambar */
}

/* 4. Pengaturan gambar agar responsive dan tidak terpotong */
.pkp_site_name .is_img img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block;
}

/* 5. Khusus Mobile: Menyesuaikan Tombol Menu (Hamburger) agar tidak tertindih */
@media (max-width: 992px) {
    .pkp_navigation_primary_wrapper {
        position: relative;
        z-index: 20;
    }
    
    /* Jika tombol hamburger (garis tiga) tertutup, beri background transparan */
    .pkp_site_nav_toggle {
        top: 10px;
        left: 10px;
    }
}

.block_journals {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
}
.block_journals ul {
    list-style: none;
    padding: 0;
}
.block_journals li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}
.block_journals li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}