/* Sidebar Container */
.sidebar-links {
  margin: 0 0 20px 0;
  padding: 0;
}

/* Sidebar Title */
.sidebar-links .sidebar-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
  color: #1a1a1a !important;
  border-bottom: 1.2px solid #6a714b !important;
  padding-bottom: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* Sidebar List */
.sidebar-links ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* List Items */
.sidebar-links ul li {
  margin: 1px 0 !important;
  padding: 1px 0 !important;
}

/* Sidebar Links (boxy style) */
.sidebar-links ul li a {
  text-decoration: none !important;
  color: #fff !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  padding: 10px 12px !important;
  border-radius: 6px !important;
  background: #8d9765 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
}

/* Sidebar Icons */
.sidebar-links ul li a i {
  margin-right: 8px !important;
  color: #c9a646 !important;
  min-width: 18px !important;
  text-align: center !important;
  font-size: 15px !important;
}

/* Hover Effect */
.sidebar-links ul li a:hover {
  color: #fff !important;
  background: #6a714b !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.sidebar-links ul li a:hover i {
  color: #fff !important;
}
```

/* Kecilkan logo OJS di footer */

.pkp_brand_footer::before {
  content: "" !important;
  display: block !important;
  width: 100px !important;       /* atur lebar */
  height: auto;       /* atur tinggi sesuai kebutuhan */
  margin: 0 auto;     /* biar center */
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.8;       /* opsional: transparan */
}

```
/* bg footer */
.pkp_structure_footer_wrapper {
    background: #f8f8f8;
    border-top: 1px solid #ddd;
    border-bottom: 1.43rem solid #228b22;
}

/* Container utama */
.reviewer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 20px auto;
  padding: 0;
}

/* Jadikan kartu clickable */
.reviewer-item {
  display: flex;
  align-items: flex-start;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none; /* hilangkan underline jika <a> */
  color: inherit;        /* warna tetap */
}

.reviewer-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  background: #fff;
}

/* Foto reviewer */
.reviewer-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  flex-shrink: 0;
  border: 2px solid #ddd;
}

/* Info reviewer */
.reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Nama reviewer */
.reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 2px 0 4px 0 !important;
  line-height: 1.2 !important;
  color: #333;
}

/* Afiliasi reviewer */
.reviewer-affil {
  font-size: 0.88rem;
  color: #666;
  margin: 0 !important;
  line-height: 1.2 !important;
}



.pkp_structure_main p {
  text-align: justify!important;
}

.pkp_block {
        padding: 1.143rem 1.243rem !important;
    }