/* =========================================================
 * GLOBAL TYPOGRAPHY
 * ========================================================= */
section.item.abstract p,
section.item.references .value p,
section.sub_item.citation_display .csl-entry,
.journal-header p,
.info-value {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.7;
}

/* =========================================================
 * ABSTRACT
 * ========================================================= */
section.item.abstract p {
  margin-bottom: 8px;
}

/* =========================================================
 * REFERENCES
 * ========================================================= */
section.item.references .value p {
  padding-left: 1.8em;
  text-indent: -1.8em;

  hyphens: auto;
  -webkit-hyphens: auto;
}

/* DOI / URL handling */
section.item.references .value a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* =========================================================
 * HOW TO CITE / CITATION
 * ========================================================= */
/* =========================
 * ABSTRACT & CITATION (UNIFIED)
 * ========================= */
section.item.abstract p,
section.sub_item.citation_display .csl-entry {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.7;

  /* no hanging indent */
  text-indent: 0;
  padding-left: 0;

  hyphens: auto;
  -webkit-hyphens: auto;
}
/* =========================
 * ISSUE & SECTION (JUSTIFY LIKE ABSTRACT)
 * ========================= */
.item.issue section.sub_item .value,
.item.issue section.sub_item .value a {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.7;

  hyphens: auto;
  -webkit-hyphens: auto;
}


/* =========================================================
 * SIDEBAR
 * ========================================================= */
.ojs-sidebar-custom {
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.sidebar-box {
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
  background: #1c1088;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 10px;
  letter-spacing: 0.5px;
}

.sidebar-content {
  padding: 8px;
}

.sidebar-btn {
  width: 100%;
  background: #1c1088;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 6px;
  transition: all 0.25s ease;
}

.sidebar-btn:hover {
  background: #0f0b5f;
  transform: translateY(-1px);
}

.sidebar-btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.sidebar-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin-bottom: 8px;
}

.sidebar-label {
  background: #0d3aad;
  color: #ffffff;
  padding: 10px 15px;
  font-weight: 600;
  border-top-right-radius: 10px;
}

.sidebar-label-light {
  background: rgba(13, 58, 173, 0.39);
  padding: 10px;
  border-bottom-left-radius: 10px;
}

/* =========================================================
 * JOURNAL PROFILE
 * ========================================================= */
.journal-profile,
.journal-info {
  font-family: Cambria, Georgia, serif;
}

.journal-header {
  overflow: hidden;
  margin-bottom: 25px;
}

.journal-cover {
  float: left;
  width: 235px;
  max-width: 100%;
  margin: 0 25px 15px 15px;
  border: 1px solid #ccc;
}

.journal-clear {
  clear: both;
}

/* =========================================================
 * INDEXING GRID
 * ========================================================= */
.indexing-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.indexing-item {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.indexing-item img {
  width: 100%;
  max-width: 220px;
  filter: grayscale(20%);
}

.indexing-item:hover {
  transform: translateY(-5px);
}

.indexing-item:hover img {
  filter: grayscale(0%);
}

/* =========================================================
 * JOURNAL INFO TABLE
 * ========================================================= */
.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 8px;
  margin-bottom: 6px;
}

.info-label {
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  padding-right: 6px;
}

.info-label::after {
  content: ":";
  margin-left: 6px;
}

.info-value a {
  color: #0d3aad;
  text-decoration: none;
  font-weight: 600;
}

.info-value a:hover {
  text-decoration: underline;
}

/* =========================================================
 * RESPONSIVE
 * ========================================================= */
@media (max-width: 576px) {
  section.item.abstract p,
  section.item.references .value p,
  section.sub_item.citation_display .csl-entry,
  .info-value {
    text-align: left;
    padding-left: 0;
    text-indent: 0;
    hyphens: none;
  }
}

@media (max-width: 768px) {
  .journal-cover {
    float: none;
    display: block;
    margin: 0 auto 20px;
  }

  .indexing-box {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }

  .sidebar-title { font-size: 13px; }
  .sidebar-btn { font-size: 11px; }

  .info-row { grid-template-columns: 1fr; }
  .info-label::after { content: ""; }
  .info-label { margin-bottom: 2px; }
}

@media (max-width: 480px) {
  .indexing-box {
    grid-template-columns: 1fr;
  }
}
