/* =========================================================
   BETA-BAREKENG - FINAL CSS CLEAN VERSION
   Cleaned, merged, deduplicated, and syntax-fixed
========================================================= */

/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
  --primary-blue: #003399;
  --primary-gold: #ffcc00;
  --light-blue: #e6f0ff;
  --dark-blue: #002266;
  --text-light: #ffffff;
  --text-dark: #333333;

  --bb-blue-1: #0f4c81;
  --bb-blue-2: #1d70b8;
  --bb-blue-3: #0f4c81;
  --bb-blue-soft: #eef6ff;
  --bb-border: #dbe8f5;
  --bb-border-2: #e5edf5;
  --bb-text: #1f2937;
  --bb-text-soft: #334155;
  --bb-warning-bg: #fff8e8;
  --bb-warning-border: #f4d58d;
  --bb-warning-accent: #d9a11a;
}

/* =========================================================
   GLOBAL
========================================================= */
body {
  background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%) !important;
  background-attachment: fixed !important;
  background-size: cover;
  min-width: 130px !important;
  color: var(--text-dark);
}

a {
  transition: all 0.25s ease;
}

.pkp_structure_main {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 51, 153, 0.05);
}

.pkp_structure_main h1 {
  font-weight: 600;
  font-size: 20px;
  color: var(--primary-blue);
  border-bottom: 2px solid var(--primary-gold);
  padding-bottom: 10px;
}

.pkp_structure_main a {
  color: var(--primary-blue) !important;
}

.pkp_structure_main a:hover {
  color: var(--primary-gold) !important;
}

.main_entry .item.abstract,
.homepage_about p {
  text-align: justify;
}

.current_issue {
  display: block;
}

/* =========================================================
   HEADER
========================================================= */
.pkp_structure_head {
  background: linear-gradient(135deg, #003399 0%, #0044aa 100%);
  background-attachment: fixed;
  background-size: cover;
  display: block;
  height: 100%;
  width: 100%;
  border-bottom: 3px solid var(--primary-gold);
}

.pkp_head_wrapper {
  background: linear-gradient(135deg, #003399 0%, #0044aa 100%);
}

.pkp_site_name .is_img img {
  display: block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

/* =========================================================
   PRIMARY NAVIGATION
========================================================= */
.pkp_navigation_primary_row {
  background: linear-gradient(135deg, #003399 0%, #0044aa 100%);
  color: var(--text-light);
  font-weight: bold;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 2px solid var(--primary-gold);
}

.pkp_navigation_primary {
  background: transparent !important;
}

.pkp_navigation_primary > li > a {
  color: var(--text-light) !important;
  font-weight: 600;
  padding: 12px 20px !important;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.pkp_navigation_primary > li > a:hover {
  background: rgba(255,255,255,0.15) !important;
  color: var(--primary-gold) !important;
}

.pkp_navigation_primary > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.pkp_navigation_primary > li > a:hover::after {
  width: 80%;
}

/* Dropdown */
.pkp_navigation_primary .dropdown-menu {
  background: linear-gradient(135deg, #003399 0%, #0044aa 100%) !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 30px rgba(0, 51, 153, 0.3) !important;
  padding: 10px 0 !important;
  margin-top: 5px !important;
  animation: fadeIn 0.3s ease;
}

.pkp_navigation_primary .dropdown-menu li a {
  color: var(--text-light) !important;
  padding: 10px 25px !important;
  font-size: 13px;
  transition: all 0.3s ease;
  position: relative;
}

.pkp_navigation_primary .dropdown-menu li a:hover {
  background: rgba(255,204,0,0.2) !important;
  color: var(--primary-gold) !important;
  padding-left: 35px !important;
}

.pkp_navigation_primary .dropdown-menu li a::before {
  content: "►";
  position: absolute;
  left: 10px;
  font-size: 10px;
  color: var(--primary-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pkp_navigation_primary .dropdown-menu li a:hover::before {
  opacity: 1;
}

/* User nav */
.pkp_navigation_user {
  background: transparent !important;
}

.pkp_navigation_user > li > a {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 8px 15px !important;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.pkp_navigation_user > li > a:hover {
  background: rgba(255,204,0,0.2) !important;
  color: var(--primary-gold) !important;
}

/* Search */
.pkp_search {
  background: rgba(255,255,255,0.15) !important;
  border-radius: 30px !important;
  padding: 3px !important;
  margin: 5px 0 !important;
}

.pkp_search input[type="text"] {
  background: rgba(255,255,255,0.2) !important;
  border: none !important;
  color: var(--text-light) !important;
  border-radius: 25px !important;
  padding: 6px 15px !important;
}

.pkp_search input[type="text"]::placeholder {
  color: rgba(255,255,255,0.7) !important;
}

.pkp_search button {
  background: var(--primary-gold) !important;
  color: var(--primary-blue) !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 6px 20px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.pkp_search button:hover {
  background: #ffdd44 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,204,0,0.3);
}

/* =========================================================
   FOOTER
========================================================= */
.pkp_structure_footer_wrapper {
  background: linear-gradient(135deg, #003399 0%, #002266 100%);
  border-top: 3px solid var(--primary-gold);
  border-bottom: 20px solid #ffffff;
}

.pkp_brand_footer {
  padding: 0;
  float: right;
  display: block;
  max-width: 0;
}

.pkp_structure_footer,
.pkp_structure_footer * {
  color: #d4af37 !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}

.pkp_structure_footer {
  padding: 8px 6px !important;
}

.pkp_structure_footer a,
.pkp_structure_footer a:visited {
  color: #d4af37 !important;
  text-decoration: none !important;
}

.pkp_structure_footer a:hover,
.pkp_structure_footer a:focus {
  text-decoration: underline !important;
  opacity: 0.95;
}

/* =========================================================
   GENERAL CONTENT ELEMENTS
========================================================= */
.pkp_structure_main .content .hvr-underline-from-center img {
  max-width: 100%;
  width: 25px;
  height: 25px;
}

.pkp_structure_main .content img {
  max-width: 100%;
  width: 55px;
  height: 55px;
}

.column {
  float: left;
  width: 33.33%;
}

.badan {
  margin-top: -15px;
}

.badan a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background: var(--primary-gold);
  color: var(--primary-blue) !important;
  text-align: left;
  font-weight: 600;
  transition: all 0.3s ease;
}

.badan a:hover {
  background: var(--primary-blue);
  color: var(--primary-gold) !important;
  font-weight: bold;
  padding-left: 20px;
}

/* Issue/article summary */
.obj_article_summary {
  box-shadow: 0 5px 15px rgba(0, 51, 153, 0.1);
  padding: 20px;
  border-radius: 10px;
  background: #ffffff;
  border-left: 4px solid var(--primary-gold);
  padding-bottom: 10px !important;
  border-bottom: solid 2px var(--primary-blue) !important;
  font-size: 12px;
}

.obj_article_summary:hover {
  background: #f8f9ff;
  box-shadow: 0 8px 25px rgba(0, 51, 153, 0.15);
}

/* Galley button */
.obj_galley_link,
.obj_galley_link:link,
.obj_galley_link:visited,
.obj_galley_link:hover,
.obj_galley_link:focus,
.obj_galley_link:active,
.obj_galley_link a,
.obj_galley_link a:link,
.obj_galley_link a:visited,
.obj_galley_link a:hover,
.obj_galley_link a:focus,
.obj_galley_link a:active {
  color: #ffffff !important;
}

.obj_galley_link {
  font-weight: 700;
  text-transform: capitalize !important;
  background: var(--primary-blue) !important;
  border: none !important;
  border-radius: 5px !important;
  transition: all 0.3s ease !important;
}

.obj_galley_link:hover {
  background: var(--primary-gold) !important;
}

/* Issue summary box if used custom */
.issue-summary {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.issue-summary:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 5px 15px rgba(255,204,0,0.1);
}

/* =========================================================
   SIDEBAR BLOCK
========================================================= */
.pkp_block {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%) !important;
  border: 2px solid var(--primary-blue) !important;
  border-radius: 15px !important;
  padding: 20px !important;
  box-shadow: 0 10px 30px rgba(0,51,153,0.1) !important;
  margin-bottom: 20px !important;
  position: relative !important;
  overflow: hidden !important;
}

.pkp_block .title {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0044aa 100%) !important;
  color: var(--text-light) !important;
  padding: 12px 20px !important;
  border-radius: 10px !important;
  font-size: 1.1em !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: -10px 0 15px 0 !important;
  text-align: center !important;
  border-left: 5px solid var(--primary-gold) !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.pkp_block a {
  color: var(--primary-blue) !important;
  text-decoration: none !important;
  display: block !important;
  padding: 8px 12px !important;
  margin: 5px 0 !important;
  background: rgba(0,51,153,0.05) !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  font-size: 0.95em !important;
}

.pkp_block a:hover {
  background: rgba(255,204,0,0.1) !important;
  color: var(--primary-blue) !important;
  transform: translateX(5px);
  border-left: 3px solid var(--primary-gold);
}

/* =========================================================
   SHARED STATIC PAGE STYLES
========================================================= */
.bb-page-common {
  max-width: 1000px;
  margin: 24px auto;
  padding: 14px 18px 40px 18px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.75;
  color: var(--bb-text);
}

.bb-header-common {
  background: linear-gradient(135deg, var(--bb-blue-1) 0%, var(--bb-blue-2) 100%);
  color: #ffffff;
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.18);
  margin-bottom: 24px;
}

.bb-header-common h1 {
  margin: 0 0 10px 0;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}

.bb-header-common p {
  margin: 0;
  font-size: 15px;
  color: #eef6ff;
}

.bb-toc-common {
  background: #f8fbff;
  border: 1px solid var(--bb-border);
  border-left: 6px solid var(--bb-blue-2);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(29, 112, 184, 0.08);
}

.bb-toc-common h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 21px;
  color: var(--bb-blue-1);
}

.bb-toc-common ul {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 28px;
}

.bb-toc-common li {
  margin-bottom: 8px;
}

.bb-toc-common a {
  color: var(--bb-blue-1);
  text-decoration: none;
  font-weight: 600;
}

.bb-toc-common a:hover {
  color: #b7791f;
  text-decoration: underline;
}

.bb-card-common {
  background: #ffffff;
  border: 1px solid var(--bb-border-2);
  border-radius: 16px;
  padding: 22px 22px 18px 22px;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(15, 76, 129, 0.06);
  text-align: justify;
}

.bb-card-common h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 22px;
  color: var(--bb-blue-1);
  padding-bottom: 8px;
  border-bottom: 2px solid #dceaf7;
  position: relative;
}

.bb-card-common h2::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--bb-blue-2);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.bb-card-common p {
  margin: 0 0 12px 0;
  font-size: 15px;
}

.bb-card-common ul {
  margin: 8px 0 12px 0;
  padding-left: 22px;
}

.bb-card-common li {
  margin-bottom: 7px;
}

.bb-note-common {
  background: #f5faff;
  border-left: 5px solid var(--bb-blue-2);
  padding: 14px 16px;
  border-radius: 10px;
  margin: 12px 0;
  color: #243b53;
  font-size: 15px;
}

.bb-highlight-common {
  background: linear-gradient(135deg, var(--bb-warning-bg) 0%, #fffef8 100%);
  border: 1px solid var(--bb-warning-border);
  border-left: 6px solid var(--bb-warning-accent);
}

.bb-highlight-common h2 {
  color: #9a6700;
  border-bottom-color: #f4e1ad;
}

.bb-back-common {
  margin-top: 14px;
  margin-bottom: 0;
}

.bb-back-common a {
  display: inline-block;
  font-size: 13px;
  color: var(--bb-blue-2);
  text-decoration: none;
  font-weight: 600;
  background: #eef6ff;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d2e7fb;
}

.bb-back-common a:hover {
  background: #dceeff;
  color: var(--bb-blue-1);
}

/* =========================================================
   AUTHOR GUIDELINES
========================================================= */
#bb-guidelines.bb-guidelines-page,
#bb-open-access.bb-open-access-page,
#bb-peer-review.bb-pr-page,
#bb-plagiarism.bb-plagiarism-page,
#bb-ai-policy.bb-ai-page,
#bb-apc.bb-apc-page,
#bb-copyright.bb-copyright-page,
#bb-license.bb-license-page,
#bb-coi.bb-coi-page,
#bb-awp.bb-awp-page,
#bb-aimscope.bb-as-page,
#bb-ads.bb-ads-page {
  max-width: 1000px;
  margin: 24px auto;
  padding: 14px 18px 40px 18px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.75;
  color: var(--bb-text);
}

/* =========================================================
   COMMON PAGE HEADERS
========================================================= */
#bb-guidelines .bb-guidelines-header,
#bb-open-access .bb-oa-header,
#bb-peer-review .bb-pr-header,
#bb-plagiarism .bb-plag-header,
#bb-ai-policy .bb-ai-header,
#bb-apc .bb-apc-header,
#bb-copyright .bb-cp-header,
#bb-license .bb-license-header,
#bb-coi .bb-coi-header,
#bb-awp .bb-awp-header,
#bb-aimscope .bb-as-header,
#bb-ads .bb-ads-header,
#bb-frequency .bb-freq-header,
#bb-indexing .bb-indexing-header,
#bb-reviewers .bb-reviewers-header {
  background: linear-gradient(135deg, var(--bb-blue-1) 0%, var(--bb-blue-2) 100%);
  color: #ffffff;
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.18);
  margin-bottom: 24px;
}

#bb-guidelines .bb-guidelines-header h1,
#bb-open-access .bb-oa-header h1,
#bb-peer-review .bb-pr-header h1,
#bb-plagiarism .bb-plag-header h1,
#bb-ai-policy .bb-ai-header h1,
#bb-apc .bb-apc-header h1,
#bb-copyright .bb-cp-header h1,
#bb-license .bb-license-header h1,
#bb-coi .bb-coi-header h1,
#bb-awp .bb-awp-header h1,
#bb-aimscope .bb-as-header h1,
#bb-ads .bb-ads-header h1,
#bb-frequency .bb-freq-header h1,
#bb-indexing .bb-indexing-header h1,
#bb-reviewers .bb-reviewers-header h1 {
  margin: 0 0 10px 0;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}

#bb-guidelines .bb-guidelines-header p,
#bb-open-access .bb-oa-header p,
#bb-peer-review .bb-pr-header p,
#bb-plagiarism .bb-plag-header p,
#bb-ai-policy .bb-ai-header p,
#bb-apc .bb-apc-header p,
#bb-copyright .bb-cp-header p,
#bb-license .bb-license-header p,
#bb-coi .bb-coi-header p,
#bb-awp .bb-awp-header p,
#bb-aimscope .bb-as-header p,
#bb-ads .bb-ads-header p,
#bb-frequency .bb-freq-header p,
#bb-indexing .bb-indexing-header p,
#bb-reviewers .bb-reviewers-header p {
  margin: 0;
  font-size: 15px;
  color: #eef6ff;
}

/* =========================================================
   COMMON TOC
========================================================= */
#bb-guidelines .bb-guidelines-toc,
#bb-open-access .bb-oa-toc,
#bb-peer-review .bb-pr-toc,
#bb-plagiarism .bb-plag-toc,
#bb-ai-policy .bb-ai-toc,
#bb-apc .bb-apc-toc,
#bb-copyright .bb-cp-toc,
#bb-license .bb-license-toc,
#bb-coi .bb-coi-toc,
#bb-awp .bb-awp-toc,
#bb-aimscope .bb-as-toc,
#bb-ads .bb-ads-toc {
  background: #f8fbff;
  border: 1px solid var(--bb-border);
  border-left: 6px solid var(--bb-blue-2);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(29, 112, 184, 0.08);
}

#bb-guidelines .bb-guidelines-toc h2,
#bb-open-access .bb-oa-toc h2,
#bb-peer-review .bb-pr-toc h2,
#bb-plagiarism .bb-plag-toc h2,
#bb-ai-policy .bb-ai-toc h2,
#bb-apc .bb-apc-toc h2,
#bb-copyright .bb-cp-toc h2,
#bb-license .bb-license-toc h2,
#bb-coi .bb-coi-toc h2,
#bb-awp .bb-awp-toc h2,
#bb-aimscope .bb-as-toc h2,
#bb-ads .bb-ads-toc h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 21px;
  color: var(--bb-blue-1);
}

#bb-guidelines .bb-guidelines-toc ul,
#bb-open-access .bb-oa-toc ul,
#bb-peer-review .bb-pr-toc ul,
#bb-plagiarism .bb-plag-toc ul,
#bb-ai-policy .bb-ai-toc ul,
#bb-apc .bb-apc-toc ul,
#bb-copyright .bb-cp-toc ul,
#bb-license .bb-license-toc ul,
#bb-coi .bb-coi-toc ul,
#bb-awp .bb-awp-toc ul,
#bb-aimscope .bb-as-toc ul,
#bb-ads .bb-ads-toc ul {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 28px;
}

#bb-guidelines .bb-guidelines-toc li,
#bb-open-access .bb-oa-toc li,
#bb-peer-review .bb-pr-toc li,
#bb-plagiarism .bb-plag-toc li,
#bb-ai-policy .bb-ai-toc li,
#bb-apc .bb-apc-toc li,
#bb-copyright .bb-cp-toc li,
#bb-license .bb-license-toc li,
#bb-coi .bb-coi-toc li,
#bb-awp .bb-awp-toc li,
#bb-aimscope .bb-as-toc li,
#bb-ads .bb-ads-toc li {
  margin-bottom: 8px;
}

#bb-guidelines .bb-guidelines-toc a,
#bb-open-access .bb-oa-toc a,
#bb-peer-review .bb-pr-toc a,
#bb-plagiarism .bb-plag-toc a,
#bb-ai-policy .bb-ai-toc a,
#bb-apc .bb-apc-toc a,
#bb-copyright .bb-cp-toc a,
#bb-license .bb-license-toc a,
#bb-coi .bb-coi-toc a,
#bb-awp .bb-awp-toc a,
#bb-aimscope .bb-as-toc a,
#bb-ads .bb-ads-toc a {
  color: var(--bb-blue-1);
  text-decoration: none;
  font-weight: 600;
}

#bb-guidelines .bb-guidelines-toc a:hover,
#bb-open-access .bb-oa-toc a:hover,
#bb-peer-review .bb-pr-toc a:hover,
#bb-plagiarism .bb-plag-toc a:hover,
#bb-ai-policy .bb-ai-toc a:hover,
#bb-apc .bb-apc-toc a:hover,
#bb-copyright .bb-cp-toc a:hover,
#bb-license .bb-license-toc a:hover,
#bb-coi .bb-coi-toc a:hover,
#bb-awp .bb-awp-toc a:hover,
#bb-aimscope .bb-as-toc a:hover,
#bb-ads .bb-ads-toc a:hover {
  color: #b7791f;
  text-decoration: underline;
}

/* =========================================================
   COMMON CARDS
========================================================= */
#bb-guidelines .bb-card,
#bb-open-access .bb-oa-card,
#bb-peer-review .bb-pr-card,
#bb-plagiarism .bb-plag-card,
#bb-ai-policy .bb-ai-card,
#bb-apc .bb-apc-card,
#bb-copyright .bb-cp-card,
#bb-license .bb-license-card,
#bb-coi .bb-coi-card,
#bb-awp .bb-awp-card,
#bb-aimscope .bb-as-card,
#bb-ads .bb-ads-card,
#bb-frequency .bb-freq-card,
#bb-frequency .bb-freq-note {
  background: #ffffff;
  border: 1px solid var(--bb-border-2);
  border-radius: 16px;
  padding: 22px 22px 18px 22px;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(15, 76, 129, 0.06);
  text-align: justify;
}

#bb-guidelines .bb-card h2,
#bb-open-access .bb-oa-card h2,
#bb-peer-review .bb-pr-card h2,
#bb-plagiarism .bb-plag-card h2,
#bb-ai-policy .bb-ai-card h2,
#bb-apc .bb-apc-card h2,
#bb-copyright .bb-cp-card h2,
#bb-license .bb-license-card h2,
#bb-coi .bb-coi-card h2,
#bb-awp .bb-awp-card h2,
#bb-aimscope .bb-as-card h2,
#bb-ads .bb-ads-card h2,
#bb-frequency .bb-freq-card h2,
#bb-frequency .bb-freq-note h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 22px;
  color: var(--bb-blue-1);
  padding-bottom: 8px;
  border-bottom: 2px solid #dceaf7;
  position: relative;
}

#bb-guidelines .bb-card h2::before,
#bb-open-access .bb-oa-card h2::before,
#bb-peer-review .bb-pr-card h2::before,
#bb-plagiarism .bb-plag-card h2::before,
#bb-ai-policy .bb-ai-card h2::before,
#bb-apc .bb-apc-card h2::before,
#bb-copyright .bb-cp-card h2::before,
#bb-license .bb-license-card h2::before,
#bb-coi .bb-coi-card h2::before,
#bb-awp .bb-awp-card h2::before,
#bb-aimscope .bb-as-card h2::before,
#bb-ads .bb-ads-card h2::before,
#bb-frequency .bb-freq-card h2::before,
#bb-frequency .bb-freq-note h2::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--bb-blue-2);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

#bb-guidelines .bb-card p,
#bb-open-access .bb-oa-card p,
#bb-peer-review .bb-pr-card p,
#bb-plagiarism .bb-plag-card p,
#bb-ai-policy .bb-ai-card p,
#bb-apc .bb-apc-card p,
#bb-copyright .bb-cp-card p,
#bb-license .bb-license-card p,
#bb-coi .bb-coi-card p,
#bb-awp .bb-awp-card p,
#bb-aimscope .bb-as-card p,
#bb-ads .bb-ads-card p,
#bb-frequency .bb-freq-card p,
#bb-frequency .bb-freq-note p {
  margin: 0 0 12px 0;
  font-size: 15px;
}

#bb-guidelines .bb-card ul,
#bb-open-access .bb-oa-card ul,
#bb-peer-review .bb-pr-card ul,
#bb-plagiarism .bb-plag-card ul,
#bb-ai-policy .bb-ai-card ul,
#bb-apc .bb-apc-card ul,
#bb-copyright .bb-cp-card ul,
#bb-license .bb-license-card ul,
#bb-coi .bb-coi-card ul,
#bb-awp .bb-awp-card ul,
#bb-aimscope .bb-as-card ul,
#bb-ads .bb-ads-card ul {
  margin: 8px 0 12px 0;
  padding-left: 22px;
}

#bb-guidelines .bb-card li,
#bb-open-access .bb-oa-card li,
#bb-peer-review .bb-pr-card li,
#bb-plagiarism .bb-plag-card li,
#bb-ai-policy .bb-ai-card li,
#bb-apc .bb-apc-card li,
#bb-copyright .bb-cp-card li,
#bb-license .bb-license-card li,
#bb-coi .bb-coi-card li,
#bb-awp .bb-awp-card li,
#bb-aimscope .bb-as-card li,
#bb-ads .bb-ads-card li {
  margin-bottom: 7px;
}

/* =========================================================
   HIGHLIGHT / NOTE
========================================================= */
#bb-guidelines .bb-note,
#bb-open-access .bb-oa-note,
#bb-plagiarism .bb-plag-note,
#bb-ai-policy .bb-ai-note,
#bb-license .bb-license-note {
  background: #f5faff;
  border-left: 5px solid var(--bb-blue-2);
  padding: 14px 16px;
  border-radius: 10px;
  margin: 12px 0;
  color: #243b53;
  font-size: 15px;
}

#bb-guidelines .bb-highlight,
#bb-open-access .bb-oa-highlight,
#bb-plagiarism .bb-plag-highlight,
#bb-ai-policy .bb-ai-highlight,
#bb-copyright .bb-cp-highlight,
#bb-license .bb-license-warning,
#bb-coi .bb-coi-highlight,
#bb-awp .bb-awp-highlight,
#bb-ads .bb-ads-highlight,
#bb-aimscope .bb-as-highlight,
#bb-frequency .bb-freq-note,
#bb-apc .bb-apc-note-card {
  background: linear-gradient(135deg, var(--bb-warning-bg) 0%, #fffef8 100%);
  border: 1px solid var(--bb-warning-border);
  border-left: 6px solid var(--bb-warning-accent);
}

#bb-guidelines .bb-highlight h2,
#bb-open-access .bb-oa-highlight h2,
#bb-plagiarism .bb-plag-highlight h2,
#bb-ai-policy .bb-ai-highlight h2,
#bb-copyright .bb-cp-highlight h2,
#bb-license .bb-license-warning h2,
#bb-coi .bb-coi-highlight h2,
#bb-awp .bb-awp-highlight h2,
#bb-ads .bb-ads-highlight h2,
#bb-aimscope .bb-as-highlight h2,
#bb-frequency .bb-freq-note h2,
#bb-apc .bb-apc-note-card h2 {
  color: #9a6700;
  border-bottom-color: #f4e1ad;
}

/* Back link */
#bb-guidelines .bb-back,
#bb-open-access .bb-back,
#bb-peer-review .bb-back,
#bb-plagiarism .bb-back,
#bb-ai-policy .bb-back,
#bb-apc .bb-back,
#bb-copyright .bb-back,
#bb-license .bb-back,
#bb-coi .bb-back,
#bb-awp .bb-back,
#bb-aimscope .bb-back,
#bb-ads .bb-back {
  margin-top: 14px;
  margin-bottom: 0;
}

#bb-guidelines .bb-back a,
#bb-open-access .bb-back a,
#bb-peer-review .bb-back a,
#bb-plagiarism .bb-back a,
#bb-ai-policy .bb-back a,
#bb-apc .bb-back a,
#bb-copyright .bb-back a,
#bb-license .bb-back a,
#bb-coi .bb-back a,
#bb-awp .bb-back a,
#bb-aimscope .bb-back a,
#bb-ads .bb-back a {
  display: inline-block;
  font-size: 13px;
  color: var(--bb-blue-2);
  text-decoration: none;
  font-weight: 600;
  background: #eef6ff;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d2e7fb;
}

#bb-guidelines .bb-back a:hover,
#bb-open-access .bb-back a:hover,
#bb-peer-review .bb-back a:hover,
#bb-plagiarism .bb-back a:hover,
#bb-ai-policy .bb-back a:hover,
#bb-apc .bb-back a:hover,
#bb-copyright .bb-back a:hover,
#bb-license .bb-back a:hover,
#bb-coi .bb-back a:hover,
#bb-awp .bb-back a:hover,
#bb-aimscope .bb-back a:hover,
#bb-ads .bb-back a:hover {
  background: #dceeff;
  color: var(--bb-blue-1);
}

/* =========================================================
   SPECIAL: APC
========================================================= */
#bb-apc .bb-apc-highlight-box {
  background: linear-gradient(135deg, #eef7ff 0%, #f9fcff 100%);
  border: 1px solid #cfe2f6;
  border-left: 6px solid var(--bb-blue-2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

#bb-apc .bb-apc-highlight-box p {
  margin: 0;
  font-size: 17px;
  color: var(--bb-blue-1);
}

/* =========================================================
   SPECIAL: FREQUENCY
========================================================= */
#bb-frequency.bb-frequency-page {
  max-width: 980px;
  margin: 24px auto;
  padding: 14px 18px 40px 18px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.75;
  color: var(--bb-text);
}

#bb-frequency .bb-freq-months {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 18px 0 20px 0;
}

#bb-frequency .bb-month-box {
  flex: 1 1 220px;
  background: linear-gradient(135deg, #eef6ff 0%, #f9fcff 100%);
  border: 1px solid #cfe2f6;
  border-left: 6px solid var(--bb-blue-2);
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.08);
}

#bb-frequency .bb-month-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--bb-blue-1);
  letter-spacing: 0.5px;
}

/* =========================================================
   SPECIAL: INDEXING
========================================================= */
#bb-indexing.bb-indexing-page {
  max-width: 1100px;
  margin: 24px auto;
  padding: 14px 18px 42px 18px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.75;
  color: var(--bb-text);
}

#bb-indexing .bb-indexing-intro,
#bb-indexing .bb-indexing-note {
  background: #f8fbff;
  border: 1px solid var(--bb-border);
  border-left: 6px solid var(--bb-blue-2);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(29, 112, 184, 0.08);
}

#bb-indexing .bb-indexing-intro h2,
#bb-indexing .bb-indexing-note h2 {
  margin: 0 0 10px 0;
  font-size: 22px;
  color: var(--bb-blue-1);
}

#bb-indexing .bb-indexing-intro p,
#bb-indexing .bb-indexing-note p {
  margin: 0;
  font-size: 15px;
}

#bb-indexing .bb-indexing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

#bb-indexing .bb-index-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--bb-border-2);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#bb-indexing .bb-index-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 76, 129, 0.12);
}

#bb-indexing .bb-index-icon {
  min-width: 64px;
  height: 64px;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  letter-spacing: 0.5px;
}

#bb-indexing .bb-index-icon.scholar { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); }
#bb-indexing .bb-index-icon.dimensions { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); }
#bb-indexing .bb-index-icon.crossref { background: linear-gradient(135deg, #111827 0%, #374151 100%); font-size: 16px; }
#bb-indexing .bb-index-icon.base { background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%); }
#bb-indexing .bb-index-icon.garuda { background: linear-gradient(135deg, #b45309 0%, #d97706 100%); }

#bb-indexing .bb-index-content {
  flex: 1;
}

#bb-indexing .bb-index-content h3 {
  margin: 0 0 8px 0;
  font-size: 21px;
  color: #0f172a;
}

#bb-indexing .bb-index-content p {
  margin: 0 0 12px 0;
  font-size: 15px;
  color: #475569;
  text-align: justify;
}

#bb-indexing .bb-index-content a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--bb-blue-1);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #d4e6f7;
}

#bb-indexing .bb-index-content a:hover {
  background: #dceeff;
  color: #0a3d6b;
}

/* =========================================================
   SPECIAL: REVIEWERS
========================================================= */
#bb-reviewers.bb-reviewers-page {
  max-width: 1140px;
  margin: 24px auto;
  padding: 16px 18px 42px 18px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  color: var(--bb-text);
}

#bb-reviewers .bb-reviewers-intro,
#bb-reviewers .bb-reviewers-footer-note {
  background: #f8fbff;
  border: 1px solid var(--bb-border);
  border-left: 6px solid var(--bb-blue-2);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(29, 112, 184, 0.08);
}

#bb-reviewers .bb-reviewers-intro h2,
#bb-reviewers .bb-reviewers-footer-note h2 {
  margin: 0 0 10px 0;
  font-size: 22px;
  color: var(--bb-blue-1);
}

#bb-reviewers .bb-reviewers-intro p,
#bb-reviewers .bb-reviewers-footer-note p {
  margin: 0;
  font-size: 15px;
}

#bb-reviewers .bb-reviewers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

#bb-reviewers .bb-reviewer-card {
  background: #ffffff;
  border: 1px solid var(--bb-border-2);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#bb-reviewers .bb-reviewer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 76, 129, 0.12);
}

#bb-reviewers .bb-reviewer-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

#bb-reviewers .bb-reviewer-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bb-blue-2) 0%, var(--bb-blue-1) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(15, 76, 129, 0.18);
}

#bb-reviewers .bb-reviewer-main h3 {
  margin: 0 0 4px 0;
  font-size: 20px;
  line-height: 1.35;
  color: #0f172a;
}

#bb-reviewers .bb-affiliation {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

#bb-reviewers .bb-reviewer-section {
  margin-bottom: 18px;
  padding: 14px 16px;
  background: #f9fbfd;
  border: 1px solid #e7eef5;
  border-radius: 12px;
}

#bb-reviewers .bb-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--bb-blue-2);
}

#bb-reviewers .bb-reviewer-section p {
  margin: 0;
  font-size: 15px;
  color: var(--bb-text-soft);
}

#bb-reviewers .bb-reviewer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#bb-reviewers .bb-reviewer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

#bb-reviewers .bb-reviewer-links a i {
  font-size: 14px;
}

#bb-reviewers .bb-reviewer-links a.scholar {
  background: #eef6ff;
  color: var(--bb-blue-1);
  border-color: #cfe0f3;
}

#bb-reviewers .bb-reviewer-links a.scholar:hover {
  background: #dbeeff;
}

#bb-reviewers .bb-reviewer-links a.scopus {
  background: #fff4e8;
  color: #a85700;
  border-color: #f2d2ad;
}

#bb-reviewers .bb-reviewer-links a.scopus:hover {
  background: #ffe8cc;
}

#bb-reviewers .bb-reviewer-links a.rg {
  background: #ebfffb;
  color: #0b7a6b;
  border-color: #bde8df;
}

#bb-reviewers .bb-reviewer-links a.rg:hover {
  background: #d7faf3;
}

/* =========================================================
   PEER REVIEW FLOWCHART
========================================================= */
#bb-peer-review .bb-flowchart {
  margin-top: 16px;
  background: #f9fbfd;
  border: 1px solid #e2ebf3;
  border-radius: 16px;
  padding: 24px 16px;
}

#bb-peer-review .bb-flow-step {
  background: #ffffff;
  border: 1px solid #cfe0ef;
  border-left: 5px solid var(--bb-blue-2);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  font-weight: 600;
  color: #24415c;
  box-shadow: 0 3px 10px rgba(15, 76, 129, 0.05);
  margin: 0 auto;
  max-width: 560px;
}

#bb-peer-review .bb-flow-subtext {
  text-align: center;
  font-size: 13px;
  color: #5b7083;
  margin-top: 8px;
  margin-bottom: 8px;
}

#bb-peer-review .bb-flow-arrow {
  text-align: center;
  font-size: 26px;
  color: #7aa7cc;
  margin: 8px 0;
  font-weight: 700;
}

#bb-peer-review .bb-flow-decision {
  border-left-color: #d9a11a;
  background: #fffaf0;
}

#bb-peer-review .bb-reject {
  border-left-color: #d64545;
  background: #fff5f5;
}

#bb-peer-review .bb-accept {
  border-left-color: #2f9e44;
  background: #f2fcf5;
}

#bb-peer-review .bb-flow-branches {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}

#bb-peer-review .bb-flow-branch {
  background: #ffffff;
  border: 1px dashed #d4e2ef;
  border-radius: 14px;
  padding: 16px 12px;
}

#bb-peer-review .bb-flow-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#bb-peer-review .bb-flow-label.yes { color: #2f9e44; }
#bb-peer-review .bb-flow-label.no { color: #d64545; }

/* =========================================================
   PUBLICATION ETHICS PAGE STYLE
========================================================= */
#main-content.page_about {
  max-width: 980px;
  margin: 25px auto;
  padding: 20px 24px 40px 24px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.08);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.75;
  color: #243447;
}

#main-content.page_about a {
  color: #0b5fa5;
  text-decoration: none;
}

#main-content.page_about a:hover {
  color: #c58b00;
  text-decoration: underline;
}

#main-content.page_about h2#ToC {
  font-size: 24px !important;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #0a4d8c 0%, #1177cc 100%);
  border: none !important;
  border-radius: 14px;
  padding: 16px 20px !important;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(17, 119, 204, 0.18);
  letter-spacing: 0.3px;
}

#main-content.page_about h2#ToC + div > p:first-of-type {
  background: #f8fbff;
  border: 1px solid #dbe9f6;
  border-left: 5px solid #1177cc;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 28px;
  box-shadow: 0 4px 12px rgba(17, 119, 204, 0.06);
}

#main-content.page_about h2#ToC + div > p:first-of-type a {
  display: inline-block;
  margin: 4px 0;
  font-size: 14px !important;
  font-weight: 600;
  color: #0a4d8c;
  padding-left: 4px;
}

#main-content.page_about h2#ToC + div > p:first-of-type a::before {
  content: "▸ ";
  color: #d39b12;
  font-weight: bold;
}

#main-content.page_about h2#statement,
#main-content.page_about h2#deditor,
#main-content.page_about h2#dauthor,
#main-content.page_about h2#dreviewer,
#main-content.page_about h2#references {
  font-size: 22px !important;
  font-weight: 700;
  color: #0a4d8c;
  background: linear-gradient(90deg, #eef6fc 0%, #ffffff 100%);
  border: none !important;
  border-left: 6px solid #1177cc;
  border-radius: 12px;
  padding: 12px 16px !important;
  margin-top: 30px;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

#main-content.page_about p {
  font-size: 15px;
  color: #334155;
  margin-bottom: 14px;
}

#main-content.page_about span[style*="font-size: small"] {
  font-size: 15px !important;
  color: #334155 !important;
  line-height: 1.8;
}

#main-content.page_about p strong {
  color: #163a63;
  font-weight: 700;
}

#main-content.page_about h2#statement + div > p,
#main-content.page_about h2#deditor + p,
#main-content.page_about h2#deditor ~ p,
#main-content.page_about h2#dauthor + p,
#main-content.page_about h2#dauthor ~ p,
#main-content.page_about h2#dreviewer + p,
#main-content.page_about h2#dreviewer ~ p,
#main-content.page_about h2#references ~ ul,
#main-content.page_about h2#references ~ p {
  background: #ffffff;
  border: 1px solid #e6eef5;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.04);
}

#main-content.page_about ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

#main-content.page_about ul li {
  margin-bottom: 10px;
  color: #334155;
}

#main-content.page_about h2#references ~ ul {
  list-style: none;
  padding-left: 18px;
}

#main-content.page_about h2#references ~ ul li {
  position: relative;
  padding-left: 18px;
}

#main-content.page_about h2#references ~ ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d39b12;
  font-size: 18px;
  line-height: 1.2;
}

#main-content.page_about a[href="#ToC"] {
  display: inline-block;
  margin-top: 4px;
  padding: 7px 14px;
  background: #eef6fc;
  color: #0a4d8c !important;
  border: 1px solid #cfe1f2;
  border-radius: 999px;
  font-size: 12px !important;
  font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(17, 119, 204, 0.08);
}

#main-content.page_about a[href="#ToC"]:hover {
  background: #1177cc;
  color: #ffffff !important;
  border-color: #1177cc;
}

#main-content.page_about hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #cfdbe8, transparent);
  margin: 30px 0 20px;
}

#main-content.page_about img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

#main-content.page_about h2#statement + div > p:hover,
#main-content.page_about h2#deditor ~ p:hover,
#main-content.page_about h2#dauthor ~ p:hover,
#main-content.page_about h2#dreviewer ~ p:hover,
#main-content.page_about h2#references ~ ul:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 51, 102, 0.06);
  transition: all 0.25s ease;
}

/* =========================================================
   HOME CUSTOM BLOCK
========================================================= */
.custom-home-block {
  position: relative;
  margin-top: 30px;
  margin-bottom: 26px;
}

.custom-home-block .custom-block-wrapper {
  position: relative;
  background: #ffffff;
  border: 1px solid #d9e5f2;
  border-radius: 16px;
  padding: 18px;
  overflow: visible;
  box-shadow: 0 6px 18px rgba(15, 76, 129, 0.08);
}

.custom-home-block .custom-block-header {
  background: linear-gradient(135deg, var(--bb-blue-1) 0%, var(--bb-blue-2) 100%);
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.custom-home-block .custom-block-header .block-title {
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.custom-home-block .custom-block-content {
  padding: 0;
  background: #ffffff;
}

/* Tab header jika dipakai */
.custom-block-tab {
  position: absolute;
  top: -18px;
  left: 20px;
  background: linear-gradient(135deg, var(--bb-blue-1) 0%, var(--bb-blue-2) 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 4px 10px rgba(15, 76, 129, 0.16);
  z-index: 5;
}

/* Journal identity table */
.journal-identity-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.journal-identity-table tr:nth-child(odd) {
  background: #f8fbff;
}

.journal-identity-table tr:nth-child(even) {
  background: #ffffff;
}

.journal-identity-table td {
  padding: 5px 10px !important;
  border: 1px solid #e3edf7;
  vertical-align: top;
  line-height: 1.3 !important;
}

.journal-identity-table .label-cell {
  width: 28%;
  background: #eef6ff;
  color: var(--bb-blue-1);
  font-weight: 600;
}

.journal-identity-table .value-cell {
  color: var(--bb-text-soft);
}

/* About journal */
.about-journal-box {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid var(--bb-border);
  border-left: 6px solid var(--bb-blue-2);
  border-radius: 14px;
  padding: 18px 18px 14px 18px;
  margin-top: 10px;
}

.about-journal-box h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: var(--bb-blue-1);
  font-weight: 700;
}

.about-journal-box p {
  margin: 0 0 12px 0;
  line-height: 1.8;
  color: var(--bb-text-soft);
  text-align: justify;
}

.about-journal-box p:last-child {
  margin-bottom: 0;
}

/* Indexed by */
.custom-home-block.indexed-by-block {
  margin-bottom: 14px !important;
}

.indexed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.indexed-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border: 1px solid var(--bb-border);
  border-radius: 14px;
  background: #fdfefe;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.04);
}

.indexed-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(15, 76, 129, 0.1);
  background: #f8fbff;
}

.indexed-item img {
  max-width: 90px;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
}

.indexed-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--bb-blue-1);
  text-align: center;
}

/* Before submission */
.custom-home-block.before-submission-block {
  margin-top: 42px !important;
}

.custom-home-block.before-submission-block .custom-block-wrapper {
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.1);
}

.submission-info {
  background: #f8fbff;
  border: 1px solid var(--bb-border);
  border-left: 6px solid var(--bb-blue-2);
  border-radius: 14px;
  padding: 18px;
}

.submission-info p {
  margin: 0 0 14px 0;
  color: var(--bb-text-soft);
  line-height: 1.8;
  text-align: justify;
}

.submission-info .highlight {
  color: #b7791f;
  font-weight: 700;
}

.submission-note {
  background: #eef6ff;
  border: 1px solid #cfe2f6;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--bb-blue-1);
  font-size: 14px;
}

/* =========================================================
   ANIMATION
========================================================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  #bb-reviewers .bb-reviewers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .indexed-grid,
  #bb-indexing .bb-indexing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #bb-reviewers .bb-reviewers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pkp_block {
    padding: 15px !important;
  }

  .pkp_navigation_primary .dropdown-menu {
    background: linear-gradient(135deg, #003399 0%, #0044aa 100%) !important;
  }

  .pkp_structure_footer {
    padding: 5px 4px !important;
  }

  .homepage_about {
    margin-top: 30px;
  }

  #main-content.page_about {
    padding: 14px 12px 28px 12px;
    border-radius: 12px;
  }

  #main-content.page_about h2#ToC {
    font-size: 20px !important;
    padding: 14px 16px !important;
  }

  #main-content.page_about h2#statement,
  #main-content.page_about h2#deditor,
  #main-content.page_about h2#dauthor,
  #main-content.page_about h2#dreviewer,
  #main-content.page_about h2#references {
    font-size: 19px !important;
    padding: 10px 14px !important;
  }

  #main-content.page_about p,
  #main-content.page_about span[style*="font-size: small"] {
    font-size: 14px !important;
  }

  #bb-guidelines .bb-guidelines-toc ul,
  #bb-open-access .bb-oa-toc ul,
  #bb-peer-review .bb-pr-toc ul,
  #bb-plagiarism .bb-plag-toc ul,
  #bb-ai-policy .bb-ai-toc ul,
  #bb-apc .bb-apc-toc ul,
  #bb-copyright .bb-cp-toc ul,
  #bb-license .bb-license-toc ul,
  #bb-coi .bb-coi-toc ul,
  #bb-awp .bb-awp-toc ul,
  #bb-aimscope .bb-as-toc ul,
  #bb-ads .bb-ads-toc ul {
    columns: 1;
  }

  #bb-guidelines.bb-guidelines-page,
  #bb-open-access.bb-open-access-page,
  #bb-peer-review.bb-pr-page,
  #bb-plagiarism.bb-plagiarism-page,
  #bb-ai-policy.bb-ai-page,
  #bb-apc.bb-apc-page,
  #bb-copyright.bb-copyright-page,
  #bb-license.bb-license-page,
  #bb-coi.bb-coi-page,
  #bb-awp.bb-awp-page,
  #bb-aimscope.bb-as-page,
  #bb-ads.bb-ads-page,
  #bb-frequency.bb-frequency-page,
  #bb-indexing.bb-indexing-page,
  #bb-reviewers.bb-reviewers-page {
    padding: 8px 10px 30px 10px;
  }

  #bb-guidelines .bb-guidelines-header,
  #bb-open-access .bb-oa-header,
  #bb-peer-review .bb-pr-header,
  #bb-plagiarism .bb-plag-header,
  #bb-ai-policy .bb-ai-header,
  #bb-apc .bb-apc-header,
  #bb-copyright .bb-cp-header,
  #bb-license .bb-license-header,
  #bb-coi .bb-coi-header,
  #bb-awp .bb-awp-header,
  #bb-aimscope .bb-as-header,
  #bb-ads .bb-ads-header,
  #bb-frequency .bb-freq-header,
  #bb-indexing .bb-indexing-header,
  #bb-reviewers .bb-reviewers-header {
    padding: 20px 16px;
  }

  #bb-guidelines .bb-guidelines-header h1,
  #bb-open-access .bb-oa-header h1,
  #bb-peer-review .bb-pr-header h1,
  #bb-plagiarism .bb-plag-header h1,
  #bb-ai-policy .bb-ai-header h1,
  #bb-apc .bb-apc-header h1,
  #bb-copyright .bb-cp-header h1,
  #bb-license .bb-license-header h1,
  #bb-coi .bb-coi-header h1,
  #bb-awp .bb-awp-header h1,
  #bb-aimscope .bb-as-header h1,
  #bb-ads .bb-ads-header h1,
  #bb-frequency .bb-freq-header h1,
  #bb-indexing .bb-indexing-header h1,
  #bb-reviewers .bb-reviewers-header h1 {
    font-size: 24px;
  }

  #bb-guidelines .bb-card,
  #bb-open-access .bb-oa-card,
  #bb-peer-review .bb-pr-card,
  #bb-plagiarism .bb-plag-card,
  #bb-ai-policy .bb-ai-card,
  #bb-apc .bb-apc-card,
  #bb-copyright .bb-cp-card,
  #bb-license .bb-license-card,
  #bb-coi .bb-coi-card,
  #bb-awp .bb-awp-card,
  #bb-aimscope .bb-as-card,
  #bb-ads .bb-ads-card,
  #bb-frequency .bb-freq-card,
  #bb-frequency .bb-freq-note,
  #bb-indexing .bb-index-card,
  #bb-reviewers .bb-reviewer-card {
    padding: 18px 16px;
  }

  #bb-guidelines .bb-card h2,
  #bb-open-access .bb-oa-card h2,
  #bb-peer-review .bb-pr-card h2,
  #bb-plagiarism .bb-plag-card h2,
  #bb-ai-policy .bb-ai-card h2,
  #bb-apc .bb-apc-card h2,
  #bb-copyright .bb-cp-card h2,
  #bb-license .bb-license-card h2,
  #bb-coi .bb-coi-card h2,
  #bb-awp .bb-awp-card h2,
  #bb-aimscope .bb-as-card h2,
  #bb-ads .bb-ads-card h2,
  #bb-frequency .bb-freq-card h2,
  #bb-frequency .bb-freq-note h2 {
    font-size: 20px;
  }

  #bb-indexing .bb-indexing-grid,
  #bb-reviewers .bb-reviewers-grid,
  #bb-peer-review .bb-flow-branches,
  .indexed-grid {
    grid-template-columns: 1fr;
  }

  #bb-indexing .bb-index-icon {
    min-width: 56px;
    height: 56px;
    font-size: 18px;
  }

  #bb-indexing .bb-index-content h3,
  #bb-reviewers .bb-reviewer-main h3 {
    font-size: 18px;
  }

  #bb-reviewers .bb-reviewer-top {
    align-items: flex-start;
  }

  #bb-frequency .bb-month-name {
    font-size: 20px;
  }

  .custom-home-block .custom-block-header .block-title {
    font-size: 18px;
  }

  .custom-home-block .custom-block-wrapper {
    padding: 14px;
  }

  .journal-identity-table,
  .journal-identity-table tbody,
  .journal-identity-table tr,
  .journal-identity-table td {
    display: block;
    width: 100%;
  }

  .journal-identity-table tr {
    margin-bottom: 10px;
    border: 1px solid #e3edf7;
    border-radius: 10px;
    overflow: hidden;
  }

  .journal-identity-table td {
    border: none;
    border-bottom: 1px solid #eaf2f9;
  }

  .journal-identity-table td:last-child {
    border-bottom: none;
  }

  .journal-identity-table .label-cell {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .homepage_about {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .homepage_image {
    width: 90%;
    margin: 0;
  }

  .homepage_about {
    margin-top: 0;
  }
}



/* =========================================================
   Hyperlink di Editor in Chief
========================================================= */
.journal-identity-table .editor-links-cell .inline-link-plain,
.journal-identity-table .editor-links-cell .inline-link-plain:link,
.journal-identity-table .editor-links-cell .inline-link-plain:visited {
  display: inline !important;
  width: auto !important;
  margin: 0 2px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  color: #0f4c81 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.journal-identity-table .editor-links-cell .inline-link-plain:hover {
  color: #b7791f !important;
  text-decoration: underline !important;
  transform: none !important;
}


/* =========================================
   BETA-BAREKENG - About Journal Elegant Style
========================================= */

#bb-about-journal.bb-about-page {
  max-width: 1000px;
  margin: 28px auto;
  padding: 16px 18px 40px 18px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.85;
  color: #1f2937;
}

#bb-about-journal .bb-about-hero {
  background: linear-gradient(135deg, #0f4c81 0%, #1d70b8 100%);
  color: #ffffff;
  padding: 30px 26px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(15, 76, 129, 0.18);
  margin-bottom: 26px;
}

#bb-about-journal .bb-about-hero h1 {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}

#bb-about-journal .bb-about-hero p {
  margin: 0;
  font-size: 15px;
  color: #eef6ff;
  text-align: justify;
}

#bb-about-journal .bb-about-card {
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 18px;
  padding: 24px 24px 20px 24px;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.06);
  text-align: justify;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#bb-about-journal .bb-about-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 76, 129, 0.10);
}

#bb-about-journal .bb-about-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 22px;
  color: #0f4c81;
  padding-bottom: 8px;
  border-bottom: 2px solid #dceaf7;
  position: relative;
}

#bb-about-journal .bb-about-card h2::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #1d70b8;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

#bb-about-journal .bb-about-card p {
  margin: 0 0 14px 0;
  font-size: 15px;
  color: #334155;
  text-align: justify;
}

#bb-about-journal .bb-about-card p:last-child {
  margin-bottom: 0;
}

#bb-about-journal .bb-about-highlight {
  background: linear-gradient(135deg, #fff8e8 0%, #fffef8 100%);
  border: 1px solid #f4d58d;
  border-left: 6px solid #d9a11a;
}

#bb-about-journal .bb-about-highlight h2 {
  color: #9a6700;
  border-bottom-color: #f4e1ad;
}

@media (max-width: 768px) {
  #bb-about-journal.bb-about-page {
    padding: 10px 10px 30px 10px;
  }

  #bb-about-journal .bb-about-hero {
    padding: 22px 18px;
  }

  #bb-about-journal .bb-about-hero h1 {
    font-size: 25px;
  }

  #bb-about-journal .bb-about-card {
    padding: 18px 16px;
  }

  #bb-about-journal .bb-about-card h2 {
    font-size: 20px;
  }

  #bb-about-journal .bb-about-card p,
  #bb-about-journal .bb-about-hero p {
    font-size: 14px;
  }
}







/* =========================================
   GLOBAL CUSTOM BLOCK STYLE
========================================= */
.custom-home-block {
    margin: 24px 0;
}

.custom-home-block .custom-block-wrapper {
    background: #ffffff;
    border: 1px solid #d8e2f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(13, 47, 111, 0.08);
}

.custom-home-block .custom-block-header {
    background: linear-gradient(135deg, #0d2f6f 0%, #114aa3 100%);
    padding: 14px 22px;
}

.custom-home-block .block-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.custom-home-block .custom-block-content {
    padding: 24px;
    color: #2d3a4b;
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================
   JOURNAL IDENTITY TABLE
========================================= */
.journal-identity-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.journal-identity-table tr:nth-child(odd) {
    background: #f8fbff;
}

.journal-identity-table tr:nth-child(even) {
    background: #ffffff;
}

.journal-identity-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e3ebf5;
    vertical-align: top;
}

.journal-identity-table .label-cell {
    width: 30%;
    font-weight: 700;
    color: #0d2f6f;
    background: #f1f6fc;
}

.journal-identity-table .value-cell {
    color: #314255;
}

.journal-identity-table a {
    color: #114aa3;
    text-decoration: none;
    word-break: break-word;
}

.journal-identity-table a:hover {
    text-decoration: underline;
}

.editor-links-cell a {
    margin-left: 6px;
    white-space: nowrap;
}

.inline-link-plain {
    color: #114aa3;
    text-decoration: none;
    font-weight: 600;
}

.inline-link-plain:hover {
    text-decoration: underline;
}

/* =========================================
   ABOUT JOURNAL: LEFT TEXT + RIGHT IMAGE
========================================= */
.about-journal-box.about-journal-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: nowrap;
}

.about-journal-text {
    flex: 1 1 auto;
    max-width: calc(100% - 320px);
}

.about-journal-text p {
    margin: 0 0 16px 0;
    text-align: justify;
    font-size: 15px;
    line-height: 1.9;
    color: #314255;
}

.about-journal-text strong {
    color: #0d2f6f;
}

.about-journal-cover {
    flex: 0 0 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-journal-cover img {
    max-width: 100%;
    width: 250px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

/* =========================================
   INDEXED BY
========================================= */
.indexed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
    align-items: center;
}

.indexed-grid img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #dce6f2;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* =========================================
   BEFORE SUBMISSION
========================================= */
.submission-info p {
    margin: 0 0 18px 0;
    text-align: justify;
    color: #314255;
    line-height: 1.9;
}

.highlight {
    color: #0d2f6f;
    font-weight: 700;
}

.submission-note {
    background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 100%);
    border-left: 5px solid #114aa3;
    padding: 14px 16px;
    border-radius: 10px;
    color: #314255;
    box-shadow: inset 0 0 0 1px #dbe7f5;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
    .about-journal-box.about-journal-flex {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .about-journal-text {
        max-width: 100%;
        width: 100%;
    }

    .about-journal-cover {
        flex: 1 1 100%;
    }

    .about-journal-cover img {
        width: 200px;
    }

    .journal-identity-table,
    .journal-identity-table tbody,
    .journal-identity-table tr,
    .journal-identity-table td {
        display: block;
        width: 100%;
    }

    .journal-identity-table tr {
        margin-bottom: 10px;
        border: 1px solid #e3ebf5;
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
    }

    .journal-identity-table td {
        border-bottom: 1px solid #edf2f8;
    }

    .journal-identity-table .label-cell {
        width: 100%;
        background: #f1f6fc;
    }
}




/* =========================================================
   FOOTER CUSTOM OJS - FULL CENTER, TANPA LOGO PKP
========================================================= */

/* footer wrapper OJS */
.pkp_structure_footer_wrapper,
.pkp_structure_footer {
    background: #003399 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    border: 0 !important;
    min-height: auto !important;
}

/* sembunyikan logo / tulisan PKP */
.pkp_brand_footer,
.pkp_structure_footer .pkp_brand_footer,
.pkp_structure_footer_wrapper .pkp_brand_footer {
    display: none !important;
}

/* hilangkan ruang kosong bawaan footer content */
.pkp_footer_content {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    text-align: center !important;
    border: 0 !important;
}

/* footer custom utama */
.bb-footer-full {
    width: 100% !important;
    background: #003399 !important;
    border-top: 4px solid #f4c542;
    color: #f4c542;
    text-align: center;
    margin: 0 auto !important;
    padding: 10px 0 8px 0 !important; /* diperkecil bawahnya */
    box-sizing: border-box;
}

/* pembungkus konten */
.bb-footer-wrap {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto !important;
    padding: 0 24px 0 24px;
    box-sizing: border-box;
    text-align: center;
    background: transparent !important;
}

/* dua kolom */
.bb-footer-top {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
    justify-content: center;
    margin: 0 auto !important;
    padding: 0 0 12px 0;
    position: relative;
    text-align: center;
    background: transparent !important;
}

/* garis bawah dua kolom */
.bb-footer-top::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(244, 197, 66, 0.35);
}

.bb-footer-col {
    padding: 0 8px;
    text-align: center;
    background: transparent !important;
}

.bb-footer-col h3 {
    margin: 0 0 6px 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #f4c542;
    text-align: center;
}

.bb-footer-col p {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: #f4c542;
    text-align: center;
}

.bb-footer-col p + p {
    margin-top: 2px;
}

.bb-footer-full a {
    color: #f4c542 !important;
    text-decoration: none;
}

.bb-footer-full a:hover {
    text-decoration: underline;
}

/* copyright tanpa jarak kosong bawah */
.bb-footer-bottom {
    margin-top: 14px;
    padding-top: 4px;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    text-align: center;
    background: transparent !important;
}

.bb-footer-bottom p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 17px;
    line-height: 1.35;
    color: #f4c542;
    text-align: center;
}

/* paksa semua elemen footer transparan */
.bb-footer-full *,
.bb-footer-wrap,
.bb-footer-top,
.bb-footer-col,
.bb-footer-bottom {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* hilangkan ruang kosong tambahan dari elemen footer bawaan */
.pkp_structure_footer_wrapper::before,
.pkp_structure_footer_wrapper::after,
.pkp_structure_footer::before,
.pkp_structure_footer::after {
    display: none !important;
    content: none !important;
}

/* responsive */
@media (max-width: 768px) {
    .bb-footer-full {
        padding: 10px 0 6px 0 !important;
    }

    .bb-footer-wrap {
        padding: 0 16px;
    }

    .bb-footer-top {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-bottom: 12px;
    }

    .bb-footer-col h3 {
        font-size: 20px;
    }

    .bb-footer-col p,
    .bb-footer-bottom p {
        font-size: 15px;
    }

    .bb-footer-bottom {
        margin-top: 14px;
    }
}







