.obj_article_details .abstract {
    text-align: justify;
    color: #84060e; /* Warna teks menjadi abu-abu */
}
.team-aff ul li .tm_label{
    display: inline-block;
    width: 80px;
}
.team-aff ul li .ico-label{
    width: 18px;
    height: 18px;
    margin-right: .5rem;
}
.obj_article_details .abstract {
    text-align: justify;
}
.obj_article_details .references {
    text-align: justify;
}
.obj_article_details .keywords {
    text-align: justify;
}
.obj_article_details .authors {
    text-align: justify;
}
.obj_article_details .affiliation {
    text-align: justify;
}
.obj_article_details .item.citation {
    text-align: justify;
}
.obj_article_details .item.issue {
    text-align: justify;
}
.obj_article_details .item.copyright {
    text-align: justify;
}
.obj_issue_toc .description {
    text-align: justify;
}
.obj_issue_summary .description {
    text-align: justify;
}
/* Grid dua kolom dengan tinggi box seragam */
.cmp_article_list.articles {
  display: grid;
  grid-template-columns: 1fr 1fr; /* dua kolom seimbang */
  gap: 14px;
  margin-top: 20px;
  align-items: stretch; /* pastikan tinggi kolom seragam */
}

/* Setiap artikel sebagai box profesional */
.cmp_article_list.articles .obj_article_summary {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid #e0e0e0;
  padding: 16px;
  border-radius: 8px;
  background-color: #fafafa;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

/* Hover untuk efek elegan */
.cmp_article_list.articles .obj_article_summary:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Responsif: satu kolom untuk mobile */
@media (max-width: 768px) {
  .cmp_article_list.articles {
    grid-template-columns: 1fr;
  }
}
.homepage_image {
  display: none !important;
}
.read_more {
    display: inline-block;   /* supaya bisa dikasih margin */
    margin-top: 100px;        /* ubah 100px sesuai kebutuhan */
}
/* Judul artikel */
.obj_article_details .title {
    font-family: Cambria, serif;
    font-size: 10pt;
}

/* Nama penulis */
.obj_article_details .authors {
    font-family: Cambria, serif;
    font-size: 11pt;
}

.obj_article_summary>.title {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
    font-size: 10px;
    line-height: 15px;
    font-weight: 700;
    border-bottom: none;
    margin: 0;
}
.obj_article_summary .meta {
    position: relative;
    padding-top: .357rem;
    font-size: 10px;
    line-height: 14px;
}
.cmp_button_wire, .obj_galley_link {
    display: inline-block;
    padding: 0 1em;
    background: #fff;
    border: 1px solid #398325;
    border-radius: 3px;
    font-size: 8px;
    line-height: calc(2.143rem - 2px);
    color: #398325;
    text-decoration: none;
}
.obj_article_summary>.title a {
    text-decoration: none;
}
a {
    color: #000000;
}
body {
    font-family: "cambria", "Noto Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.87);
    background: #fff;
}
html, body {
    background: #ffffff;
}
.pkp_brand_footer {
    display: none;
}

/* OJS-compatible styling - matches typical PKP theme */
.editorial-board-page {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.editorial-board-page .title {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  border-bottom: 3px solid #0088cc;
  padding-bottom: 12px;
  margin-bottom: 30px;
  font-family: inherit;
}

.board-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.board-member {
  background: #ffffff;
  border: 1px solid #eaeef2;
  border-radius: 8px;
  padding: 20px;
  transition: box-shadow 0.2s ease, transform 0.1s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.board-member:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: #cbd5e0;
}

.member-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a5a8c;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.member-affiliation {
  font-size: 14px;
  color: #4a5568;
  margin: 0 0 16px 0;
  line-height: 1.4;
  font-style: normal;
}

.member-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.scholar-link, .scopus-link {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  background-color: #f7f9fc;
  border: 1px solid #e2e8f0;
  color: #2c3e50;
}

.scholar-link:hover, .scopus-link:hover {
  background-color: #edf2f7;
  border-color: #cbd5e0;
  text-decoration: none;
  color: #0088cc;
}

.scholar-link::before {
  content: "📖";
  font-size: 12px;
}

.scopus-link::before {
  content: "🔍";
  font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .board-members {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .editorial-board-page {
    padding: 16px;
  }
  
  .member-name {
    font-size: 17px;
  }
}

/* OJS default container compatibility */
.pkp_structure_content {
  width: 100%;
}
.editorial-board-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  color: #2c3e50;
  border-bottom: 3px solid #398325;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

/* Editor in Chief section */
.editor-chief-section {
  margin-bottom: 48px;
}

.chief-member {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.chief-card {
  max-width: 500px;
  width: 100%;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  border: 2px solid #398325;
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(57, 131, 37, 0.1);
}

.chief-card .member-name {
  font-size: 24px;
  font-weight: 700;
  color: #398325;
  margin-bottom: 12px;
  font-family: "cambria", "Noto Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
}

.chief-card .member-affiliation {
  font-size: 15px;
  margin-bottom: 20px;
  font-family: "cambria", "Noto Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
}

.chief-card .member-links {
  justify-content: center;
}

/* Editorial Board grid */
.editorial-section {
  margin-top: 20px;
}

.board-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.board-member {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.board-member:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #398325;
  transform: translateY(-2px);
}

.member-name {
  font-size: 17px;
  font-weight: 600;
  font-family: "cambria", "Noto Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  color: #398325;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.member-affiliation {
  font-size: 13px;
  font-family: "cambria", "Noto Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  color: #666;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.member-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.scholar-link, .scopus-link {
  font-size: 12px;
  font-weight: 500;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  background-color: #fff;
  border: 1px solid #398325;
  color: #398325;
}

.scholar-link:hover, .scopus-link:hover {
  background-color: #398325;
  border-color: #398325;
  text-decoration: none;
  color: #ffffff;
}

.scholar-link::before {
  content: "📖";
  font-size: 11px;
}

.scopus-link::before {
  content: "🔍";
  font-size: 11px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .board-members {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .editorial-board-page {
    padding: 16px;
  }
  
  .member-name {
    font-size: 16px;
  }
  
  .chief-card {
    padding: 20px 16px;
  }
  
  .chief-card .member-name {
    font-size: 20px;
  }
  
  .section-title {
    font-size: 18px;
  }
}

/* Ensure consistency with existing OJS styles */
.pkp_structure_content {
  width: 100%;
}

.obj_article_details .abstract {
  text-align: justify;
}