.ojs-sidebar-menu {
  background: #4d0252;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  margin-bottom: 20px;
}

.ojs-sidebar-menu .menu-title {
  background: linear-gradient(90deg, #7a1b82, #4d0252);
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 11px;
  font-size: 15px;
  letter-spacing: 1px;
}

.ojs-sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ojs-sidebar-menu ul li {
  /* border-bottom: 1px solid rgba(255,255,255,0.18); */
  border-bottom: none;
}

.ojs-sidebar-menu ul li:last-child {
  border-bottom: none;
}

.ojs-sidebar-menu ul li a {
  display: block;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.ojs-sidebar-menu ul li a:hover {
  background: #64086b;
  padding-left: 24px;
  border-left: 4px solid #d9a0dc;
}


/* Indexing Journal */
.ojs-indexing-sidebar {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-bottom: 20px;
  overflow: hidden;
}

.ojs-indexing-sidebar .indexing-title {
  background: linear-gradient(90deg, #7a1b82, #4d0252);
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  font-size: 14px;
  letter-spacing: 1px;
}

.indexing-list {
  list-style: none;
  padding: 15px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.indexing-list li {
  text-align: center;
}

.indexing-list img {
  max-width: 100%;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.indexing-list img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}


/* Download Sidebar */
.ojs-download-sidebar {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-bottom: 20px;
  overflow: hidden;
}

.download-title {
  background: linear-gradient(90deg, #7a1b82, #4d0252);
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  font-size: 14px;
}

.download-doc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  text-decoration: none;
  color: #4d0252;
  font-weight: 600;
  transition: background 0.3s ease;
}

.download-doc img {
  width: 36px;
  height: auto;
}

.download-doc:hover {
  background: #f3e6f4;
}


/* Information Sidebar */
.ojs-info-sidebar {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-bottom: 20px;
  overflow: hidden;
}

.ojs-info-sidebar .info-title {
  background: linear-gradient(90deg, #7a1b82, #4d0252);
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  font-size: 14px;
  letter-spacing: 1px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  border-bottom: 1px solid #eee;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li a {
  display: block;
  padding: 11px 14px;
  color: #4d0252;
  text-decoration: none;
  font-size: 13.5px;
  transition: all 0.3s ease;
}

.info-list li a:hover {
  background: #f3e6f4;
  padding-left: 20px;
}


/* Editorial Team Page */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.editorial-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  border-top: 4px solid #4d0252;
}

.editorial-card h5 {
  margin: 0 0 6px 0;
  color: #4d0252;
  font-size: 16px;
}

.editorial-card .affiliation {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.profile-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-links a {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 4px;
  background: #f3e6f4;
  color: #4d0252;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profile-links a:hover {
  background: #4d0252;
  color: #ffffff;
}

/* Responsive Logo */
/* Default (desktop) */
.pkp_site_name .is_img img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  width: auto;
}

/* Logo di tablet */
@media (max-width: 992px) {
  .pkp_site_name .is_img img {
    max-height: 100px;
  }
}

/* Logo di HP */
@media (max-width: 576px) {
  .pkp_site_name .is_img img {
    max-height: 30px;
  }
}

/* === Make a Submission Button (ARJWA Theme) === */
.block_make_submission_link {
  display: block !important;
  text-align: center !important;
  background: linear-gradient(135deg, #7a1b82, #4d0252) !important; /* gradasi ungu Arjwa */
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 12px 14px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(77, 2, 82, 0.35) !important;
  transition: all 0.25s ease !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
}

/* Hover effect */
.block_make_submission_link:hover {
  background: linear-gradient(135deg, #8f2a97, #5a0a60) !important; /* ungu lebih terang saat hover */
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px rgba(77, 2, 82, 0.45) !important;
}

/* Active (saat diklik) */
.block_make_submission_link:active {
  transform: translateY(0) !important;
  box-shadow: 0 3px 8px rgba(77, 2, 82, 0.3) !important;
}

.homepage_about p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* === ARJWA Archive Page === */
.arjwa-archive-page {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

.arjwa-archive-page h2 {
  color: #4d0252;
  border-bottom: 3px solid #7a1b82;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.arjwa-archive-page p {
  text-align: justify;
  margin-bottom: 12px;
  color: #333;
}

.arjwa-archive-link {
  text-align: center;
  margin: 20px 0;
}

.arjwa-archive-link a {
  display: inline-block;
  background: linear-gradient(135deg, #7a1b82, #4d0252);
  color: #ffffff !important;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(77, 2, 82, 0.35);
  transition: all 0.25s ease;
}

.arjwa-archive-link a:hover {
  background: linear-gradient(135deg, #8f2a97, #5a0a60);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(77, 2, 82, 0.45);
}


/* === arjwa Plain Footer === */
.arjwa-footer-plain {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #eeeeee;
  padding: 20px 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #000;
  margin-top: 30px;
}

.arjwa-footer-left {
  max-width: 70%;
}

.arjwa-footer-left img {
  margin: 8px 0;
}

.arjwa-footer-left a {
  color: #0066cc;
  text-decoration: none;
}

.arjwa-footer-left a:hover {
  text-decoration: underline;
}

.arjwa-footer-right {
  text-align: right;
  font-size: 14px;
}

/* === ARJWA Indexed By Block === */
.arjwa-indexing-block {
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(77, 2, 82, 0.2);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

.arjwa-indexing-block .indexing-title {
  background: linear-gradient(135deg, #7a1b82, #4d0252);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 4px solid #ffffff;
}

.arjwa-indexing-block .indexing-list {
  list-style: none;
  margin: 0;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.arjwa-indexing-block .indexing-list li {
  background: #f9f2fb;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

.arjwa-indexing-block .indexing-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(77, 2, 82, 0.3);
}

.arjwa-indexing-block .indexing-list img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}


/* === ARJWA Supported By Block === */
.arjwa-supported-block {
  border-radius: 6px;
  overflow: hidden;
  background: #f2f7f2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.arjwa-supported-title {
  background: linear-gradient(135deg, #7a1b82, #4d0252);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 4px solid #ffffff;
}

.arjwa-supported-item {
  display: block;
  text-align: center;
  margin: 12px;
  padding: 12px;
  background: #f9f2fb;
  border-radius: 6px;
  text-decoration: none !important;
  color: #7a1b82 !important;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

.arjwa-supported-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  /* background: #4d0252; */
}

.arjwa-supported-item img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); */
}

.arjwa-supported-item span {
  display: block;
  font-size: 13px;
}


/* === ARJWA Tools Block === */
.arjwa-tools-block {
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(77, 2, 82, 0.2);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

.arjwa-tools-title {
  background: linear-gradient(135deg, #7a1b82, #4d0252);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 4px solid #ffffff;
}

.arjwa-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
}

.arjwa-tool-item {
  background: #f9f2fb;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  text-decoration: none !important;
  color: #4d0252 !important;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

.arjwa-tool-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(77, 2, 82, 0.3);
}

.arjwa-tool-item img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  display: block;
  margin: 0 auto 6px auto;
  /* filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25)); */
}

.arjwa-tool-item span {
  font-size: 12px;
}

/* === ARJWA Visitor Block === */
.arjwa-visitor-block {
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(77, 2, 82, 0.2);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

.arjwa-visitor-title {
  background: linear-gradient(135deg, #7a1b82, #4d0252);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 4px solid #ffffff;
}

.arjwa-visitor-list {
  display: flex;
  flex-direction: column; /* atas-bawah biar besar */
  gap: 12px;
  padding: 12px;
}

.arjwa-visitor-item {
  background: #f9f2fb;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  text-decoration: none !important;
  color: #4d0252 !important;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

.arjwa-visitor-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(77, 2, 82, 0.3);
}

.arjwa-visitor-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 auto 6px auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
}

.arjwa-visitor-item span {
  font-size: 12px;
}