
  /* =========================
     COLOR SYSTEM
  ========================== */
:root {

  --primary-color: #1e66d9;
  --primary-dark: #1c4689;
  --primary-light: #5a95eb;

  --accent-color: #6aa7ff;
  --accent-soft: #edf5ff;

  --success-color: #2f9b68;

  --white-color: #ffffff;
  --background-color: #f4f8fd;
  --border-color: #d7e3f3;

  --text-primary: #1f2d3d;
  --text-secondary: #5f6f85;

  --shadow-soft: 0 6px 18px rgba(47, 99, 181, 0.10);
  --shadow-hover: 0 12px 30px rgba(47, 99, 181, 0.18);

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --transition: all 0.3s ease;

  --font-family: "Segoe UI", Arial, Helvetica, sans-serif;

}
/* =========================================================
   GLOBAL BOX
========================================================= */

.content {
  font-family: var(--font-family);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  margin-bottom: 0 !important;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.content:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* =========================================================
   TITLE
========================================================= */

.box-title {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--white-color);
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  position: relative;
}

.box-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  left: 18px;
  bottom: 10px;
  border-radius: 10px;
}

/* =========================================================
   MENU ITEM
========================================================= */

.box-item {
  padding: 14px 18px;
  border-bottom: 1px solid #eef2f6;
  background: var(--white-color);
  transition: var(--transition);
  position: relative;
}

.box-item:last-child {
  border-bottom: none;
}

.box-item:hover {
  background: var(--accent-soft);
  padding-left: 24px;
}

/* =========================================================
   LINKS
========================================================= */

.box-item a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.box-item a:hover {
  color: var(--primary-color);
}

/* =========================================================
   ICONS
========================================================= */

.box-item em,
.box-item i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 18px;
  text-align: center;
  font-size: 14px;
}

/* =========================================================
   IMAGE
========================================================= */

.center-image {
  display: block;
  margin: 0 auto;
}

.index-img,
.download-img {
  max-width: 100%;
  height: auto;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.index-img:hover,
.download-img:hover {
  transform: scale(1.04);
}

/* =========================================================
   SUBMISSION IMAGE
========================================================= */

.submission-banner img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.submission-banner img:hover {
  transform: scale(1.01);
}

/* =========================================================
   COUNTER
========================================================= */

.counter-box {
  text-align: center;
}

.counter-box img {
  max-width: 100%;
  height: auto;
}

/* =========================================================
   HORIZONTAL LINE
========================================================= */

hr {
  border: 0;
  border-top: 1px dashed var(--border-color);
  margin: 16px 0;
}

/* =========================================================
   ARTICLE LIST
========================================================= */

.obj_article_summary {
  background: var(--white-color);
  border-radius: var(--radius-lg);
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #edf2f7;
  transition: var(--transition);
}

.obj_article_summary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* =========================================================
   ARTICLE TITLE
========================================================= */

.obj_article_summary .title a {
  color: var(--primary-dark);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.obj_article_summary .title a:hover {
  color: var(--accent-color);
}

/* =========================================================
   AUTHORS
========================================================= */

.obj_article_summary .meta .authors {
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   ARTICLE META
========================================================= */

.obj_article_summary .meta {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* =========================================================
   ABSTRACT / DESCRIPTION
========================================================= */

.obj_article_summary .description {
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 15px;
}

/* =========================================================
   READ MORE BUTTON
========================================================= */

.read_more a {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--white-color) !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.read_more a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* =========================================================
   H2 TITLE
========================================================= */

h2 {
  color: var(--primary-dark);
  font-size: 30px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-color)
  );
}

/* =========================================================
   H3 SUBTITLE
========================================================= */

h3 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--accent-color);
}

/* =========================================================
   ARTICLE CONTENT
========================================================= */

.article-details,
.article-summary,
.item.abstract,
.item.references,
.item.full_text {
  background: var(--white-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}

/* =========================================================
   PARAGRAPH
========================================================= */

.article-details p,
.article-summary p,
.item.abstract p,
.item.references p,
.item.full_text p {
  color: var(--text-primary);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 12px;
}

/* =========================================================
   ARTICLE TABLE
========================================================= */

.article-details table,
.item.references table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.article-details table th,
.article-details table td,
.item.references table th,
.item.references table td {
  border: 1px solid #e5e7eb;
  padding: 12px;
}

.article-details table th,
.item.references table th {
  background: var(--accent-soft);
  color: var(--primary-dark);
}

/* =========================================================
   BREADCRUMB
========================================================= */

.cmp_breadcrumbs {
  background: var(--white-color);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}

.cmp_breadcrumbs a {
  color: var(--primary-color);
  text-decoration: none;
}

.cmp_breadcrumbs a:hover {
  color: var(--accent-color);
}

/* =========================================================
   ISSUE TITLE
========================================================= */

.current_issue_title,
.page_issue_archive h1,
.page_article h1 {
  color: var(--primary-dark);
  font-weight: 700;
}

/* =========================================================
   JOURNAL FOOTER
========================================================= */

.journal-footer {
  margin-top: 40px;
  margin-bottom: 20px;
}

.journal-footer-card {
  background: var(--white-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #edf2f7;
  transition: var(--transition);
}

.journal-footer-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* =========================================================
   FOOTER TITLE
========================================================= */

.journal-footer-title {
  color: var(--primary-dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}

.journal-footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-color)
  );
}

/* =========================================================
   FOOTER CONTENT
========================================================= */

.journal-footer-content p {
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 14px;
}

.journal-footer-content strong {
  color: var(--primary-dark);
}

/* =========================================================
   FOOTER LINK
========================================================= */

.journal-footer-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.journal-footer-content a:hover {
  color: var(--accent-color);
}

/* =========================================================
   LICENSE SECTION
========================================================= */

.license-section {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}

.license-image {
  max-width: 140px;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
}

/* =========================================================
   HEADER IMAGE
========================================================= */

.pkp_site_name .is_img img {
  max-width: 100%;
  width: 100vw;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  max-height: 300px;
}

/* =========================================================
   PREMIUM SIDEBAR COVER CARD
========================================================= */

.exj-cover-card {
  position: relative;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7fafc 55%,
    #eef5fb 100%
  );
  border-radius: 26px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(40, 75, 99, 0.08);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.06),
    0 4px 10px rgba(40, 75, 99, 0.04);
  transition: all 0.35s ease;
}

/* glow effect */
.exj-cover-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(78, 165, 217, 0.16),
    transparent 70%
  );
  z-index: 0;
}

/* hover */
.exj-cover-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.10),
    0 8px 20px rgba(40, 75, 99, 0.08);
}

/* =========================================================
   COVER IMAGE
========================================================= */

.sidebar-cover-image {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.sidebar-cover-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(40, 75, 99, 0.08);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.10),
    0 4px 10px rgba(78, 165, 217, 0.08);
  transition: all 0.35s ease;
}

/* hover image */
.sidebar-cover-image img:hover {
  transform: scale(1.03);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.14),
    0 6px 18px rgba(78, 165, 217, 0.16);
}

/* =========================================================
   MAIN SUBMISSION BUTTON
========================================================= */

.sidebar-action-main {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.sidebar-action-main .exj-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;

  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );

  color: #ffffff !important;
  text-decoration: none;

  border-radius: 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;

  box-shadow:
    0 10px 22px rgba(40, 75, 99, 0.22);

  transition: all 0.3s ease;
}

/* button hover */
.sidebar-action-main .exj-btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.96;

  box-shadow:
    0 16px 28px rgba(40, 75, 99, 0.28);
}

/* =========================================================
   ACCOUNT BUTTONS
========================================================= */

.sidebar-account-buttons {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* register & login */
.sidebar-account-buttons .exj-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;

  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(40, 75, 99, 0.12);

  border-radius: 16px;

  color: var(--primary-dark);
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.05);

  transition: all 0.3s ease;
}

/* hover outline */
.sidebar-account-buttons .exj-btn-outline:hover {
  background: var(--accent-soft);
  color: var(--primary-color);

  transform: translateY(-2px);

  border-color: rgba(78, 165, 217, 0.30);

  box-shadow:
    0 10px 20px rgba(78, 165, 217, 0.12);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media screen and (max-width: 768px) {

  .exj-cover-card {
    padding: 18px;
    border-radius: 22px;
  }

  .sidebar-account-buttons {
    grid-template-columns: 1fr;
  }

  .sidebar-action-main .exj-btn-primary,
  .sidebar-account-buttons .exj-btn-outline {
    font-size: 14px;
  }
}
/* =========================================================
   SUBMISSION BUTTON
========================================================= */

.sidebar-action-main {
  margin-bottom: 14px;
}

.sidebar-action-main .exj-btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 16px !important;
  border-radius: 18px !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* =========================================================
   LOGIN & REGISTER BUTTONS
========================================================= */

.sidebar-account-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sidebar-account-buttons .exj-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 14px !important;
  border-radius: 16px !important;
  font-size: 14px;
  min-height: 48px;
}

/* =========================================================
   BUTTON BASE
========================================================= */

.exj-btn {
  text-decoration: none !important;
  transition: all 0.28s ease !important;
  cursor: pointer;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media screen and (max-width: 768px) {

  .box-title {
    font-size: 15px;
    padding: 12px 16px;
  }

  .box-item {
    padding: 12px 16px;
  }

  .box-item a {
    font-size: 13px;
  }

  .obj_article_summary {
    padding: 18px;
  }

  .obj_article_summary .title a {
    font-size: 14px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .journal-footer-card {
    padding: 20px;
  }

  .journal-footer-title {
    font-size: 20px;
  }

  .journal-footer-content p {
    font-size: 14px;
  }

  .exj-cover-card {
    padding: 16px;
    border-radius: 18px;
  }

  .sidebar-account-buttons {
    grid-template-columns: 1fr;
  }

  .sidebar-action-main .exj-btn-primary,
  .sidebar-account-buttons .exj-btn-outline {
    font-size: 14px;
  }
}

h2::after {
    content: "";
    display: none; /* garis tidak tampil */
}

html, body {
    background: #e8f2f9;
}