/* ===== SIDEBAR CONTAINER ===== */
.sita-sidebar {
  width: 100%;
  max-width: 300px;
  font-family: "Segoe UI", Arial, sans-serif;

  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;

  border: 1px solid #eee;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


/* ===== TITLE ===== */
.sita-title {
  background: linear-gradient(135deg, #f07f23, #ff9f45);
  color: white;

  padding: 16px;
  text-align: center;

  font-weight: 700;
  letter-spacing: 1px;
  font-size: 15px;
}


/* ===== LIST ===== */
.sita-list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: #faf6ef;
}


/* ===== ITEM ===== */
.sita-list li {
  margin: 5px 10px;
}


/* ===== LINK ===== */
.sita-list a {
  display: block;

  padding: 10px 14px;
  border-radius: 8px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  color: #004b63;
  background: #ffffff;

  transition: all .25s ease;
}


/* ===== HOVER EFFECT ===== */
.sita-list a:hover {
  background: #f07f23;
  color: white;

  transform: translateX(6px);
  box-shadow: 0 4px 10px rgba(240,127,35,.35);
}


/* ===== ACTIVE PAGE (optional) ===== */
.sita-list a.active {
  background: #d96a13;
  color: white;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sita-sidebar {
    max-width: 100%;
  }

  .sita-list a {
    font-size: 15px;
    padding: 12px 16px;
  }
}

.pkp_site_name img {
  max-height: 120px !important;
  width: auto;
}

.pkp_brand_footer img {
  max-height: 28px !important;
  opacity: 0.6;
}

/* sembunyikan logo gambar PKP */
.pkp_brand_footer img {
  display: none !important;
}

/* styling area footer */
.pkp_brand_footer {
  text-align: center;
  padding: 12px 0;
  font-size: 12px;
  color: #F5EFE3;
}

/* tambah teks pengganti */
.pkp_brand_footer::after {
  content: "Powered by Open Journal Systems (OJS)";
  letter-spacing: 0.3px;
}
.pkp_structure_head {
  background: #D96A13 !important;
  border-bottom: none;
}

/* =============================
   TOP NAVIGATION BAR
============================= */

/* background menu */
.pkp_site_nav_menu {
  background: #D96A13 !important;
  border: none;
}


/* link default */
.pkp_site_nav_menu a {
  color: #ffffff !important;
  font-weight: 600;
}


/* hover */
.pkp_site_nav_menu a:hover {
  background: #b8570f !important;
  color: #ffffff !important;
}


/* active/current page */
.pkp_site_nav_menu .current > a,
.pkp_site_nav_menu .active > a {
  background: #b8570f !important;
  color: #ffffff !important;
}


/* dropdown menu */
.pkp_site_nav_menu .dropdown-menu {
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #eee;
}

.pkp_site_nav_menu .dropdown-menu a {
  color: #333 !important;
}

.pkp_site_nav_menu .dropdown-menu a:hover {
  background: #D96A13;
  color: #fff !important;
}


/* WRAPPER */
.editorial-board {
  max-width: 1100px;
  margin: auto;
  padding: 30px 15px;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* TITLES */
.board-main-title {
  text-align: center;
  color: #D96A13;
  font-size: 26px;
  margin-bottom: 25px;
}

.section-title {
  margin: 30px 0 15px;
  font-size: 18px;
  font-weight: 700;
  border-left: 4px solid #D96A13;
  padding-left: 10px;
}

/* ===== WRAPPER ===== */
.editorial-board {
  max-width: 1000px;
  margin: auto;
  padding: 25px 15px;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ===== TITLES ===== */
.board-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  color: #D96A13;
}

.section-title {
  margin: 25px 0 10px;
  font-size: 16px;
  font-weight: 700;
}


/* ===== CHIEF ===== */
.chief-card {
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 14px 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 20px;
}


/* ===== GRID ===== */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}


/* ===== CARD ===== */
.editor-card {
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 12px 14px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  min-height: 70px;
}


/* ===== TEXT ===== */
.info {
  font-size: 13px;
  line-height: 1.4;
}

.info span {
  color: #666;
  font-size: 12px;
}


/* ===== ICONS ===== */
.icons {
  display: flex;
  gap: 6px;
}

.icons img {
  width: 18px;
  height: 18px;
  opacity: .8;
  transition: .2s;
}

.icons img:hover {
  opacity: 1;
  transform: scale(1.1);
}


/* ===== MOBILE ===== */
@media(max-width:600px){
  .editor-card,
  .chief-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/* nama editor */
.editor-card .info,
.chief-card .info {
  font-weight: 600;
}

/* afiliasi tetap normal */
.editor-card .info span,
.chief-card .info span {
  font-weight: 400;
  color: #666;
}


.reviewer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 4px;
  border-bottom: 1px solid #eee;
}


/* teks kiri */
.reviewer-info {
  display: flex;
  flex-direction: column;
}


/* NAMA (utama) */
.reviewer-name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}


/* UNIVERSITAS (sekunder) */
.reviewer-affil {
  font-size: 13px;
  color: #666;
  margin-top: 3px;
}


/* kanan icon */
.reviewer-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.reviewer-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  text-decoration: none;
  color: #444;
}

.reviewer-links img {
  width: 16px;
  height: 16px;
}


/* mobile */
@media(max-width:700px){
  .reviewer-item{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

