/* =================================================================
   JOURNAL 1 — Custom Stylesheet (Fresh Redesign)
   Base: oklch(72.3% 0.219 149.579) — Emerald Bright Green
   ================================================================= */

/* ====================== CSS VARIABLES ======================== */
:root {
  --green:         oklch(72.3% 0.219 149.579);
  --green-vib:     oklch(78%   0.24  149.579);
  --green-dark:    oklch(44%   0.20  149.579);
  --green-deeper:  oklch(30%   0.16  149.579);
  --green-light:   oklch(87%   0.09  149.579);
  --green-pale:    oklch(96%   0.04  149.579);

  --blue:          oklch(64%   0.22  248);
  --purple:        oklch(62%   0.22  295);
  --amber:         oklch(76%   0.22  66);
  --rose:          oklch(65%   0.22  12);
  --teal:          oklch(69%   0.21  195);
  --cyan:          oklch(81%   0.16  210);
  --indigo:        oklch(56%   0.22  270);

  --text:          oklch(20%   0.04  149.579);
  --text-mid:      oklch(48%   0.06  149.579);
  --text-light:    oklch(66%   0.04  149.579);
  --white:         #ffffff;
  --bg:            oklch(98%   0.008 149.579);

  --r-sm:          10px;
  --r-md:          20px;
  --r-lg:          28px;
  --r-xl:          36px;
  --r-pill:        9999px;

  --shadow-xs:  0 1px  6px oklch(40% 0.18 149.579 / 0.08);
  --shadow-sm:  0 3px 14px oklch(40% 0.18 149.579 / 0.11);
  --shadow-md:  0 7px 28px oklch(40% 0.18 149.579 / 0.16);
  --shadow-lg:  0 14px 44px oklch(40% 0.18 149.579 / 0.22);

  --g-green:  linear-gradient(135deg, oklch(67% 0.23 155), oklch(76% 0.23 138));
  --g-teal:   linear-gradient(135deg, oklch(60% 0.22 195), oklch(73% 0.17 180));
  --g-blue:   linear-gradient(135deg, oklch(56% 0.24 248), oklch(70% 0.18 220));
  --g-purple: linear-gradient(135deg, oklch(54% 0.24 295), oklch(67% 0.18 310));
  --g-amber:  linear-gradient(135deg, oklch(68% 0.24 55),  oklch(82% 0.20 75));
  --g-rose:   linear-gradient(135deg, oklch(58% 0.24 12),  oklch(70% 0.20 30));
  --g-header: linear-gradient(120deg, oklch(67% 0.23 155) 0%, oklch(72.3% 0.219 149.579) 50%, oklch(76% 0.22 138) 100%);
  --g-header-v2: linear-gradient(120deg, oklch(0.57 0.17 157.91) 0%, oklch(0.67 0.23 149.08) 50%, oklch(0.78 0.24 138.3) 100%);
  --g-header-v3: linear-gradient(120deg, oklch(0.37 0.17 29.15) 0%, oklch(0.47 0.21 29.4) 50%, oklch(0.61 0.26 26.77) 100%);

  /* Footer: midnight navy → deep teal → emerald gelap */
  --g-footer:
    radial-gradient(circle at 12% 18%, oklch(66% 0.15 188 / 0.18), transparent 32%),
    radial-gradient(circle at 88% 82%, oklch(58% 0.17 155 / 0.16), transparent 34%),
    linear-gradient(135deg,
      oklch(24% 0.07 238) 0%,
      oklch(26% 0.10 205) 52%,
      oklch(28% 0.12 168) 100%
    );
  --footer-text:   oklch(91% 0.025 190);
  --footer-muted:  oklch(79% 0.045 195);
  --footer-accent: oklch(84% 0.13 188);

  /* Lebar container bawaan tema default OJS 3.3.x */
  --ojs-container-tablet:  728px;
  --ojs-container-desktop: 952px;
  --ojs-container-large:   1160px;
}

/* ====================== GLOBAL BASE ========================= */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Open Sans', 'Lato', 'Noto Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

a { color: var(--green-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', 'Noto Serif', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--green-deeper);
  margin-top: 0;
}

img { max-width: 100%; height: auto; display: block; }

.pkp_structure_page { min-height: 100vh; display: flex; flex-direction: column; }

/* ==================================================================
   OJS 3.3.x — HEADER DUA BARIS
   ------------------------------------------------------------------
   Desktop:
   Baris 1 : Logo / Nama Jurnal                 User Menu
   Baris 2 : Navigasi Utama                     Search

   Mobile:
   Logo                                      Hamburger
   Navigasi terbuka di bawahnya

   Latar header : penuh
   Container isi: mengikuti ukuran responsif bawaan OJS 3.3.x
   ================================================================== */


/* ------------------------------------------------------------------
   1. STRUKTUR UTAMA HEADER
   ------------------------------------------------------------------ */

.pkp_structure_head {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;

  width: 100% !important;
  margin: 0 !important;

  background: var(--g-header-v3, #165b45) !important;
  border: 0 !important;
  border-bottom: 0 !important;

  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.18) !important;
}

/* Pastikan perhitungan lebar elemen header konsisten */
.pkp_structure_head,
.pkp_structure_head *,
.pkp_structure_head *::before,
.pkp_structure_head *::after {
  box-sizing: border-box;
}


/* ------------------------------------------------------------------
   2. CONTAINER HEADER RESPONSIF STANDAR OJS 3.3.X
   ------------------------------------------------------------------ */

.pkp_head_wrapper,
.has_site_logo .pkp_head_wrapper {
  position: relative !important;

  width: 100% !important;
  max-width: none !important;

  margin-right: auto !important;
  margin-left: auto !important;

  padding-right: clamp(1rem, 3vw, 2rem) !important;
  padding-left: clamp(1rem, 3vw, 2rem) !important;
}


/*
 * Jangan gunakan display:none pada #siteNav.
 * Pada OJS elemen ini dapat digunakan sebagai target navigasi
 * dan aksesibilitas.
 */
#siteNav {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* ------------------------------------------------------------------
   3. LOGO / NAMA JURNAL
   ------------------------------------------------------------------ */

.pkp_site_name_wrapper {
  position: static !important;

  display: flex !important;
  align-items: center !important;

  width: auto !important;
  height: auto !important;
  min-width: 0 !important;

  padding: 0 !important;
  margin: 0 !important;
}

.pkp_site_name {
  position: static !important;
  inset: auto !important;

  display: flex !important;
  align-items: center !important;

  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;

  padding: 0 !important;
  margin: 0 !important;

  background: transparent !important;
  overflow: visible !important;
}


/* Nama jurnal dalam bentuk teks */

.pkp_site_name .is_text,
.pkp_site_name .is_text:visited {
  display: block !important;

  max-width: 350px !important;
  padding: 0 !important;
  margin: 0 !important;

  color: #ffffff !important;

  font-family:
    "Lora",
    "Noto Serif",
    Georgia,
    serif !important;

  font-size: clamp(1.1rem, 1.8vw, 1.45rem) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;

  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.22) !important;

  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;

  transition:
    color 0.2s ease,
    opacity 0.2s ease !important;
}

.pkp_site_name .is_text:hover,
.pkp_site_name .is_text:focus-visible {
  color: var(--green-pale, #dff5e8) !important;
}


/* Logo dalam bentuk gambar */

.pkp_site_name .is_img {
  display: flex !important;
  align-items: center !important;

  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pkp_site_name .is_img img {
  display: block !important;

  width: auto !important;
  height: auto !important;

  max-width: min(260px, 100%) !important;
  max-height: 64px !important;

  object-fit: contain !important;
  object-position: left center !important;

  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2)) !important;
}


/* ------------------------------------------------------------------
   4. TOMBOL HAMBURGER
   ------------------------------------------------------------------ */

.pkp_site_nav_toggle {
  position: static !important;
  inset: auto !important;
  transform: none !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex: 0 0 44px !important;

  width: 44px !important;
  height: 44px !important;

  padding: 0 !important;
  margin: 0 !important;

  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.14) !important;

  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: var(--r-sm, 8px) !important;

  box-shadow: none !important;
  cursor: pointer !important;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease !important;
}

.pkp_site_nav_toggle:hover,
.pkp_site_nav_toggle:focus-visible {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
}

.pkp_site_nav_toggle > span,
.pkp_site_nav_toggle > span::before,
.pkp_site_nav_toggle > span::after {
  background-color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}


/* ==================================================================
   DESKTOP DAN TABLET BESAR
   ================================================================== */

@media (min-width: 992px) {

  /* ---------------------------------------------------------------
     Grid utama:
     kolom 1 = logo
     kolom 2 = user menu
     baris 2 = primary navigation
     --------------------------------------------------------------- */

  .pkp_head_wrapper,
  .has_site_logo .pkp_head_wrapper {
    display: grid !important;

    grid-template-columns:
      minmax(220px, 360px)
      minmax(0, 1fr) !important;

    grid-template-rows:
      minmax(78px, auto)
      auto !important;

    column-gap: 1.5rem !important;
    row-gap: 0 !important;
  }

  .pkp_site_nav_toggle {
    display: none !important;
  }


  /* Membuat isi nav menjadi bagian langsung dari grid header */
  .pkp_site_nav_menu {
    display: contents !important;
  }


  /* ---------------------------------------------------------------
     BARIS 1 KOLOM 1 — LOGO
     --------------------------------------------------------------- */

  .pkp_site_name_wrapper {
    grid-column: 1 !important;
    grid-row: 1 !important;

    align-self: stretch !important;

    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }


  /* ---------------------------------------------------------------
     BARIS 1 KOLOM 2 — USER MENU
     --------------------------------------------------------------- */

  #navigationUserWrapper,
  .pkp_navigation_user_wrapper {
    position: static !important;
    inset: auto !important;
    transform: none !important;

    grid-column: 2 !important;
    grid-row: 1 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    min-width: 0 !important;

    padding: 0.75rem 0 !important;
    margin: 0 !important;

    border: 0 !important;
    background: transparent !important;
  }

  #navigationUser,
  .pkp_navigation_user,
  .pkp_navigation_user.pkp_navigation_user {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: wrap !important;

    gap: 0.4rem !important;

    min-width: 0 !important;

    padding: 0 !important;
    margin: 0 !important;

    list-style: none !important;
    border: 0 !important;
  }

  #navigationUser > li,
  .pkp_navigation_user > li {
    position: relative !important;

    padding: 0 !important;
    margin: 0 !important;
  }

  #navigationUser > li > a,
  .pkp_navigation_user > li > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 0.4rem !important;

    min-height: 36px !important;

    padding: 0.4rem 0.9rem !important;
    margin: 0 !important;

    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.08) !important;

    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: var(--r-pill, 999px) !important;

    font-size: 0.82rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.01em !important;

    text-decoration: none !important;
    white-space: nowrap !important;

    transition:
      color 0.2s ease,
      background-color 0.2s ease,
      border-color 0.2s ease !important;
  }

  #navigationUser > li > a:hover,
  #navigationUser > li > a:focus-visible,
  .pkp_navigation_user > li > a:hover,
  .pkp_navigation_user > li > a:focus-visible {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
    outline: none !important;
  }

  #navigationUser > li.profile > a::before,
  .pkp_navigation_user > li.profile > a::before {
    content: "\f007";

    font-family: FontAwesome;
    font-size: 0.78rem;
    font-weight: normal;
    line-height: 1;
  }


  /* ---------------------------------------------------------------
     BARIS 2 — PRIMARY NAVIGATION
     --------------------------------------------------------------- */

  .pkp_navigation_primary_row {
    position: static !important;

    grid-column: 1 / -1 !important;
    grid-row: 2 !important;

    display: flex !important;
    align-items: center !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 50px !important;

    padding: 0.35rem 0 !important;
    margin: 0 !important;

    border-top:
      1px solid rgba(255, 255, 255, 0.18) !important;

    background: transparent !important;
  }

  .pkp_navigation_primary_wrapper,
  .has_site_logo .pkp_navigation_primary_wrapper {
    position: static !important;
    inset: auto !important;
    transform: none !important;

    display: flex !important;
    align-items: center !important;

    gap: 0.75rem !important;

    flex: 1 1 auto !important;

    width: 100% !important;
    min-width: 0 !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
  }

  #navigationPrimary,
  .pkp_navigation_primary {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;

    gap: 0.15rem !important;

    flex: 1 1 auto !important;

    min-width: 0 !important;

    padding: 0 !important;
    margin: 0 !important;

    list-style: none !important;
  }

  #navigationPrimary > li,
  .pkp_navigation_primary > li {
    position: relative !important;

    padding: 0 !important;
    margin: 0 !important;
  }

  #navigationPrimary > li > a,
  .pkp_navigation_primary > li > a {
    display: inline-flex !important;
    align-items: center !important;

    min-height: 38px !important;

    padding: 0.5rem 0.9rem !important;
    margin: 0 !important;

    color: rgba(255, 255, 255, 0.92) !important;
    background: transparent !important;

    border: 0 !important;
    border-radius: var(--r-pill, 999px) !important;

    font-size: 0.9rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.01em !important;

    text-decoration: none !important;
    white-space: nowrap !important;

    transition:
      color 0.2s ease,
      background-color 0.2s ease !important;
  }

  #navigationPrimary > li > a:hover,
  #navigationPrimary > li > a:focus-visible,
  .pkp_navigation_primary > li > a:hover,
  .pkp_navigation_primary > li > a:focus-visible {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2) !important;

    border: 0 !important;
    border-bottom: 0 !important;
    outline: none !important;
  }
  
  #navigationPrimary > li:nth-child(1) > a:before {
    content: "\f015";
    font-family: FontAwesome;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1;
    margin-right: 0.4rem;
  }
  
  #navigationPrimary > li:nth-child(2) > a:before {
    content: "\f046";
    font-family: FontAwesome;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1;
    margin-right: 0.4rem;
  }

  #navigationPrimary > li:nth-child(3) > a:before {
    content: "\f187";
    font-family: FontAwesome;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1;
    margin-right: 0.4rem;
  }
  
  #navigationPrimary > li:nth-child(4) > a:before {
    content: "\f1ea";
    font-family: FontAwesome;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1;
    margin-right: 0.4rem;
  }
  
  #navigationPrimary > li:nth-child(5) > a:before {
    content: "\f05a";
    font-family: FontAwesome;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1;
    margin-right: 0.4rem;
  }

  /* ---------------------------------------------------------------
     SEARCH DESKTOP
     --------------------------------------------------------------- */

  .pkp_navigation_search_wrapper {
    display: flex !important;
    align-items: center !important;

    flex: 0 0 auto !important;

    padding: 0 !important;
    margin: 0 0 0 auto !important;
  }

  .pkp_search.pkp_search_desktop {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 0.45rem !important;

    min-height: 38px !important;

    padding: 0.48rem 1rem !important;
    margin: 0 !important;

    color: rgba(255, 255, 255, 0.92) !important;
    background: rgba(255, 255, 255, 0.12) !important;

    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--r-pill, 999px) !important;

    font-size: 0.82rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;

    text-decoration: none !important;
    white-space: nowrap !important;

    transition:
      color 0.2s ease,
      background-color 0.2s ease,
      border-color 0.2s ease !important;
  }

  .pkp_search.pkp_search_desktop:hover,
  .pkp_search.pkp_search_desktop:focus-visible {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.24) !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
    outline: none !important;
  }

  .pkp_search.pkp_search_desktop .fa {
    font-size: 0.8rem !important;
    line-height: 1 !important;
  }
}


/* ==================================================================
   MOBILE DAN TABLET KECIL
   ================================================================== */

@media (max-width: 991px) {

  .pkp_head_wrapper,
  .has_site_logo .pkp_head_wrapper {
    display: grid !important;

    grid-template-columns:
      minmax(0, 1fr)
      auto !important;

    grid-template-rows: auto auto !important;

    align-items: center !important;

    gap: 0.6rem 0.75rem !important;

    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
  }


  /* Logo di kiri */

  .pkp_site_name_wrapper {
    grid-column: 1 !important;
    grid-row: 1 !important;

    min-width: 0 !important;
  }

  .pkp_site_name .is_text,
  .pkp_site_name .is_text:visited {
    max-width: 100% !important;
    font-size: clamp(1rem, 4vw, 1.25rem) !important;
  }

  .pkp_site_name .is_img img {
    max-width: min(220px, 100%) !important;
    max-height: 52px !important;
  }


  /* Hamburger di kanan */

  .pkp_site_nav_toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;

    justify-self: end !important;
  }


  /* Container menu mobile */

  .pkp_site_nav_menu {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;

    display: none !important;
    flex-direction: column !important;

    width: 100% !important;
    min-width: 0 !important;
    max-height: calc(100vh - 90px) !important;

    padding: 0.35rem !important;
    margin: 0 !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;

    background: var(--green-dark, #134b3b) !important;

    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: var(--r-md, 12px) !important;

    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.2) !important;
  }

  .pkp_site_nav_menu--isOpen {
    display: flex !important;
  }


  /* Primary navigation mobile */

  .pkp_navigation_primary_row {
    order: 1 !important;

    display: block !important;

    width: 100% !important;

    padding: 0.35rem !important;
    margin: 0 !important;

    border: 0 !important;
    background: transparent !important;
  }

  .pkp_navigation_primary_wrapper,
  .has_site_logo .pkp_navigation_primary_wrapper {
    display: block !important;

    width: 100% !important;

    padding: 0 !important;
    margin: 0 !important;
  }

  #navigationPrimary,
  .pkp_navigation_primary {
    display: flex !important;
    flex-direction: column !important;

    gap: 0.15rem !important;

    width: 100% !important;

    padding: 0 !important;
    margin: 0 !important;

    list-style: none !important;
  }

  #navigationPrimary > li,
  .pkp_navigation_primary > li {
    position: relative !important;

    display: block !important;
    width: 100% !important;

    padding: 0 !important;
    margin: 0 !important;
  }

  #navigationPrimary > li > a,
  .pkp_navigation_primary > li > a {
    display: flex !important;
    align-items: center !important;

    width: 100% !important;
    min-height: 42px !important;

    padding: 0.65rem 0.8rem !important;
    margin: 0 !important;

    color: rgba(255, 255, 255, 0.92) !important;
    background: transparent !important;

    border: 0 !important;
    border-radius: var(--r-sm, 8px) !important;

    font-size: 0.9rem !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;

    text-decoration: none !important;
  }

  #navigationPrimary > li > a:hover,
  #navigationPrimary > li > a:focus-visible,
  .pkp_navigation_primary > li > a:hover,
  .pkp_navigation_primary > li > a:focus-visible {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.14) !important;
    outline: none !important;
  }


  /* User menu mobile */

  #navigationUserWrapper,
  .pkp_navigation_user_wrapper {
    position: static !important;
    inset: auto !important;
    transform: none !important;

    order: 2 !important;

    display: flex !important;

    width: 100% !important;

    padding: 0.7rem !important;
    margin: 0 !important;

    border: 0 !important;
    border-top:
      1px solid rgba(255, 255, 255, 0.15) !important;

    background: transparent !important;
  }

  #navigationUser,
  .pkp_navigation_user {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;

    gap: 0.4rem !important;

    width: 100% !important;

    padding: 0 !important;
    margin: 0 !important;

    list-style: none !important;
  }

  #navigationUser > li,
  .pkp_navigation_user > li {
    position: relative !important;

    padding: 0 !important;
    margin: 0 !important;
  }

  #navigationUser > li > a,
  .pkp_navigation_user > li > a {
    display: inline-flex !important;
    align-items: center !important;

    min-height: 38px !important;

    padding: 0.5rem 0.8rem !important;
    margin: 0 !important;

    color: rgba(255, 255, 255, 0.92) !important;
    background: rgba(255, 255, 255, 0.09) !important;

    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-radius: var(--r-pill, 999px) !important;

    font-size: 0.82rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;

    text-decoration: none !important;
  }

  #navigationUser > li > a:hover,
  #navigationUser > li > a:focus-visible,
  .pkp_navigation_user > li > a:hover,
  .pkp_navigation_user > li > a:focus-visible {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.18) !important;
    outline: none !important;
  }


  /* Search mobile apabila tetap ditampilkan oleh tema */

  .pkp_navigation_search_wrapper {
    width: 100% !important;

    padding: 0.35rem 0 !important;
    margin: 0 !important;
  }

  .pkp_search.pkp_search_desktop {
    justify-content: center !important;

    width: 100% !important;
    min-height: 42px !important;

    padding: 0.6rem 0.8rem !important;

    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;

    border:
      1px solid rgba(255, 255, 255, 0.24) !important;

    border-radius: var(--r-sm, 8px) !important;
  }
}


/* ==================================================================
   DROPDOWN MENU
   ================================================================== */

.pkp_structure_head .dropdown-menu,
.pkp_structure_head #navigationPrimary > li > ul,
.pkp_structure_head .pkp_navigation_primary > li > ul {
  z-index: 1100 !important;

  min-width: 210px !important;

  padding: 0.45rem !important;
  margin-top: 0.25rem !important;

  background: var(--white, #ffffff) !important;

  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: var(--r-md, 10px) !important;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18) !important;
}

.pkp_structure_head .dropdown-menu li {
  padding: 0 !important;
  margin: 0 !important;
}

.pkp_structure_head .dropdown-menu a,
.pkp_structure_head .dropdown-menu.show a,
.pkp_structure_head #navigationPrimary > li > ul a,
.pkp_structure_head .pkp_navigation_primary > li > ul a {
  display: flex !important;
  align-items: center !important;

  width: 100% !important;

  padding: 0.55rem 0.8rem !important;
  margin: 0 !important;

  color: var(--green-dark, #134b3b) !important;
  background: transparent !important;

  border: 0 !important;
  border-radius: var(--r-sm, 7px) !important;

  font-size: 0.875rem !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;

  text-decoration: none !important;
  white-space: normal !important;

  transition:
    color 0.15s ease,
    background-color 0.15s ease !important;
}

.pkp_structure_head .dropdown-menu a:hover,
.pkp_structure_head .dropdown-menu a:focus-visible,
.pkp_structure_head #navigationPrimary > li > ul a:hover,
.pkp_structure_head #navigationPrimary > li > ul a:focus-visible,
.pkp_structure_head .pkp_navigation_primary > li > ul a:hover,
.pkp_structure_head .pkp_navigation_primary > li > ul a:focus-visible {
  color: var(--green-deeper, #0d3b2f) !important;
  background: var(--green-pale, #e1f4e9) !important;
  outline: none !important;
}


/* Dropdown mobile dibuat menyatu dengan panel menu */

@media (max-width: 991px) {
  .pkp_structure_head .dropdown-menu,
  .pkp_structure_head #navigationPrimary > li > ul,
  .pkp_structure_head .pkp_navigation_primary > li > ul {
    position: static !important;
    inset: auto !important;
    transform: none !important;

    width: 100% !important;
    min-width: 0 !important;

    padding: 0.35rem !important;
    margin: 0.2rem 0 0.4rem !important;

    background: rgba(255, 255, 255, 0.96) !important;

    border: 0 !important;
    border-radius: var(--r-sm, 8px) !important;

    box-shadow: none !important;
  }
}


/* ==================================================================
   FOCUS KEYBOARD
   ================================================================== */

.pkp_structure_head a:focus-visible,
.pkp_structure_head button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95) !important;
  outline-offset: 2px !important;
}


/* ==================================================================
   LAYAR SANGAT KECIL
   ================================================================== */

@media (max-width: 420px) {
  .pkp_head_wrapper,
  .has_site_logo .pkp_head_wrapper {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }

  .pkp_site_name .is_img img {
    max-width: 180px !important;
    max-height: 48px !important;
  }

  .pkp_site_name .is_text,
  .pkp_site_name .is_text:visited {
    font-size: 1rem !important;
  }

  #navigationUser,
  .pkp_navigation_user {
    align-items: stretch !important;
  }

  #navigationUser > li,
  .pkp_navigation_user > li {
    flex: 1 1 auto !important;
  }

  #navigationUser > li > a,
  .pkp_navigation_user > li > a {
    justify-content: center !important;
    width: 100% !important;
  }
}

/* ===================================================================
   MAIN CONTENT LAYOUT
   ================================================================= */

.pkp_structure_content {
  display: flex;
  flex: 1;
  max-width: none;
  margin: 2rem auto;
  padding: 0 !important;
  gap: 0 !important;
  width: 100%;
}

.pkp_structure_main { flex: 1; min-width: 0; }

.pkp_structure_main:before, .pkp_structure_main:after {
    background: transparent !important;
}

.pkp_structure_main h2 {
    margin: 0 0 1.43rem !important;
}

.pkp_page_index .current_issue .read_more {
    color: #FFF !important;
}
.pkp_page_index .current_issue .read_more:after {
    top: 9px !important;
}

/* ===================================================================
   SIDEBAR
   ================================================================= */

.pkp_structure_sidebar { width: 300px; flex-shrink: 0; }

/* Sidebar block — floating card, no boxy border */
.pkp_structure_sidebar .pkp_block {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}

/* Colorful gradient arc at top — NOT a flat border strip */
.pkp_structure_sidebar .pkp_block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.block_browse .pkp_block::before,
.pkp_structure_sidebar .pkp_block:nth-child(1)::before { background: var(--g-green); }
.pkp_structure_sidebar .pkp_block:nth-child(2)::before { background: var(--g-teal); }
.pkp_structure_sidebar .pkp_block:nth-child(3)::before { background: var(--g-blue); }
.pkp_structure_sidebar .pkp_block:nth-child(4)::before { background: var(--g-purple); }
.pkp_structure_sidebar .pkp_block:nth-child(5)::before { background: var(--g-amber); }
.pkp_structure_sidebar .pkp_block:nth-child(n+6)::before { background: var(--g-rose); }

.pkp_structure_sidebar .pkp_block h2,
.pkp_structure_sidebar .pkp_block .block_title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pkp_structure_sidebar .pkp_block h2::before {
  font-family: FontAwesome;
  color: var(--green);
  font-size: 0.9rem;
  width: 1.3em;
  text-align: center;
  flex-shrink: 0;
}
.block_browse     .pkp_block h2::before { content: "\f07c"; color: var(--green); }
.block_information .pkp_block h2::before { content: "\f05a"; color: var(--teal); }
.block_subscription .pkp_block h2::before { content: "\f4c4"; color: var(--amber); }
.block_language    .pkp_block h2::before { content: "\f0ac"; color: var(--blue); }
.block_custom      .pkp_block h2::before { content: "\f0f4"; color: var(--purple); }

.pkp_structure_sidebar ul { list-style: none; margin: 0; padding: 0; }
.pkp_structure_sidebar ul li {
}
.pkp_structure_sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.1rem;
  color: var(--green-dark);
  font-size: 0.875rem;
  transition: color .2s, transform .18s;
}
.pkp_structure_sidebar ul li a::before {
  font-family: FontAwesome;
  content: "\f054";
  font-size: 0.6rem;
  color: var(--green);
  flex-shrink: 0;
}
.pkp_structure_sidebar ul li a:hover { color: var(--green); transform: translateX(4px); }

/* Make Submission button */
.pkp_structure_sidebar .pkp_block .pkp_button,
.pkp_structure_sidebar .pkp_block a.pkp_button,
.pkp_structure_sidebar .pkp_block input[type=submit] {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--g-green);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: 0.55rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px oklch(72.3% 0.219 149.579 / 0.38);
  transition: filter .2s, transform .18s;
  width: 100%;
  justify-content: center;
}
.pkp_structure_sidebar .pkp_block .pkp_button::before,
.pkp_structure_sidebar .pkp_block a.pkp_button::before {
  font-family: FontAwesome;
  content: "\f044";
}
.pkp_structure_sidebar .pkp_block .pkp_button:hover { filter: brightness(1.1); transform: translateY(-2px); color: #fff; }

/* ===================================================================
   HOMEPAGE
   ================================================================= */

.page_index_journal { padding: 0; }

/* Hero banner image */
.homepage_image {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.homepage_image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.homepage_image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(30% 0.16 149.579 / 0.5) 0%, transparent 50%);
  pointer-events: none;
}

/* About section — soft gradient bg, NOT a box */
.homepage_about {
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, var(--white) 55%, var(--green-pale));
  box-shadow: var(--shadow-sm);
  padding: 2rem 2.4rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.homepage_about::after {
  font-family: FontAwesome;
  content: "\f05a";
  position: absolute;
  right: 20px; top: -12px;
  font-size: 7rem;
  color: var(--green-light);
  opacity: 0.75;
  pointer-events: none;
  line-height: 1;
  top: 15px !important;
}
.homepage_about h2 {
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.homepage_about h2::before {
  font-family: FontAwesome;
  content: "\f05a";
  color: var(--teal);
  font-size: 1.4rem;
}

/* ===================================================================
   ANNOUNCEMENTS
   ================================================================= */

.cmp_announcements {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
/* Wave top accent — NOT a flat stripe */
.cmp_announcements::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--g-amber);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.cmp_announcements > h2 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.cmp_announcements > h2::before {
  font-family: FontAwesome;
  content: "\f0a1";
  color: var(--amber);
  font-size: 1.1rem;
}

.obj_announcement_summary {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 0;
}
.obj_announcement_summary:last-child { border-bottom: none; }
.obj_announcement_summary::before {
  font-family: FontAwesome;
  content: "\f0a1";
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.2em;
  font-size: 0.85rem;
}
.obj_announcement_summary h3,
.obj_announcement_summary h4 { margin: 0 0 0.22rem; font-size: 0.9rem; }
.obj_announcement_summary h3 a,
.obj_announcement_summary h4 a { color: var(--green-dark); }
.obj_announcement_summary h3 a:hover,
.obj_announcement_summary h4 a:hover { color: var(--green); }
.obj_announcement_summary .date {
  font-size: 0.76rem;
  color: var(--text-light);
  display: flex; align-items: center; gap: 0.3rem;
}
.obj_announcement_summary .date::before {
  font-family: FontAwesome;
  content: "\f073";
  color: var(--teal);
  font-size: 0.7rem;
}

.cmp_announcements .highlight_first > .obj_announcement_summary:first-child,
.cmp_announcements .obj_announcement_summary:first-of-type {
  background: linear-gradient(135deg, var(--green-pale), oklch(95% 0.06 200));
  border-radius: var(--r-md);
  padding: 1.1rem;
  border-bottom: none;
  margin-bottom: 0.5rem;
  border-left: none;
}

/* ===================================================================
   CURRENT ISSUE
   ================================================================= */

.current_issue {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.current_issue::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: var(--g-green);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.current_issue > h2 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 0.55rem;
  display: flex; align-items: center; gap: 0.55rem;
}
.current_issue > h2::before {
  font-family: FontAwesome;
  content: "\f02d";
  color: var(--green);
  font-size: 1.4rem;
}

.current_issue_title {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  background: var(--green-pale);
  border-radius: var(--r-pill);
  padding: 0.42rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.4rem;
}
.current_issue_title::before {
  font-family: FontAwesome;
  content: "\f145";
  color: var(--green);
  font-size: 1rem;
}

/* ===================================================================
   ISSUE TOC
   ================================================================= */

.obj_issue_toc .heading { margin-bottom: 1.1rem; }

.obj_issue_toc .heading .cover {
  display: inline-block;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.85rem;
  transition: box-shadow .25s;
}
.obj_issue_toc .heading .cover:hover { box-shadow: var(--shadow-md); }
.obj_issue_toc .heading .cover img {
  max-width: 200px;
  height: auto;
  transition: transform .3s;
}
.obj_issue_toc .heading .cover:hover img { transform: scale(1.04); }

.obj_issue_toc .published {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--green-pale);
  border-radius: var(--r-pill);
  padding: 0.28rem 0.82rem;
  margin-bottom: 1rem;
}
.obj_issue_toc .published::before {
  font-family: FontAwesome;
  content: "\f073";
  color: var(--green);
  font-size: 1rem;
}
.obj_issue_toc .published .label { display: none; }

/* Section headings as colorful pills */
.obj_issue_toc .section > h2,
.obj_issue_toc .section > h3,
.obj_issue_toc .section > h4 {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  background: var(--g-green);
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-pill);
  margin: 1.3rem 0 0.85rem;
  box-shadow: 0 3px 12px oklch(72.3% 0.219 149.579 / 0.3);
  top: -25px;
}
.obj_issue_toc .section > h2::before,
.obj_issue_toc .section > h3::before,
.obj_issue_toc .section > h4::before {
  font-family: FontAwesome;
  content: "\f02d";
  font-size: 1.4rem;
}

.obj_issue_toc .galleys { margin-bottom: 1rem; }
.obj_issue_toc .galleys > h2,
.obj_issue_toc .galleys > h3 {
  font-size: 0.95rem;
  color: var(--green-dark);
  display: flex; align-items: center; gap: 0.45rem;
  margin-bottom: 0.6rem;
}
.obj_issue_toc .galleys > h2::before {
  font-family: FontAwesome;
  content: "\f56d";
  color: var(--rose);
}

/* ===================================================================
   ARTICLE SUMMARY CARD
   ================================================================= */

.cmp_article_list { list-style: none; margin: 0; padding: 0; }
.cmp_article_list > li { padding: 0; }

.obj_article_summary {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.6rem;
  margin-bottom: 0;
  transition: box-shadow .25s, transform .22s;
  position: relative;
  overflow: hidden;
}
/* Subtle gradient band at top — replaces boxy left border */
.obj_article_summary::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--g-green);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.obj_article_summary:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.obj_article_summary .title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  line-height: 1.45;
}
.obj_article_summary .title a {
  color: var(--green-deeper);
  font-weight: 600;
  display: block; 
  align-items: flex-start; gap: 0.5rem;
}
.obj_article_summary .title a::before {
  font-family: FontAwesome;
  content: "\f15b";
  color: var(--green);
  margin-top: 0.2em;
  flex-shrink: 0;
  font-size: 1rem;
}
.obj_article_summary .title a:hover { color: var(--green); }
.obj_article_summary .subtitle {
  display: block;
  font-size: 0.86rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-mid);
  margin-top: 0.15rem;
}

.obj_article_summary .cover {
  float: right;
  margin: 0 0 0.7rem 1rem;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.obj_article_summary .cover img { width: 70px; height: auto; transition: transform .3s; }
.obj_article_summary .cover:hover img { transform: scale(1.06); }

.obj_article_summary .meta {
  display: flex; flex-wrap: wrap; gap: 0.35rem 0.9rem;
  font-size: 0.8rem;
  margin-bottom: 0.65rem;
}
.obj_article_summary .meta .authors {
  color: var(--teal); font-weight: 600;
  display: flex; align-items: center; gap: 0.3rem;
}
.obj_article_summary .meta .authors::before {
  font-family: FontAwesome; content: "\f007";
  font-size: 1rem;
}
.obj_article_summary .meta .pages {
  color: var(--text-light);
  display: flex; align-items: center; gap: 0.3rem;
}
.obj_article_summary .meta .pages::before {
  font-family: FontAwesome; content: "\f15c";
  color: var(--blue); font-size: 0.73rem;
}
.obj_article_summary .meta .published {
  color: var(--text-light);
  display: flex; align-items: center; gap: 0.3rem;
}
.obj_article_summary .meta .published::before {
  font-family: FontAwesome; content: "\f073";
  color: var(--amber); font-size: 0.73rem;
}

/* Statistics row */
.statistik {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.74rem;
  color: var(--text-light);
  background: var(--green-pale);
  border-radius: var(--r-pill);
  padding: 0.28rem 0.82rem;
  margin-top: 0.45rem;
}
.statistik::before {
  font-family: FontAwesome;
  content: "\f201";
  color: var(--green);
  font-size: 0.8rem;
}

/* ===================================================================
   GALLEY LINKS (PDF, HTML, etc.)
   ================================================================= */

.galleys_links {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.42rem; align-items: center;
}

.obj_galley_link,
.obj_galley_link_supplementary {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  padding: 0.36rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--g-green);
  box-shadow: 0 3px 10px oklch(0% 0 0 / 0.14);
  transition: filter .2s, transform .18s, box-shadow .2s;
}
.obj_galley_link:hover,
.obj_galley_link_supplementary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px oklch(0% 0 0 / 0.22);
  color: var(--white);
}

.obj_galley_link.pdf        { 
    background: #fff;
}
.obj_galley_link.pdf::before  { font-family: FontAwesome; content: "\f1c1"; }

.obj_galley_link.html       { background: var(--g-amber); }
.obj_galley_link.html::before { font-family: FontAwesome; content: "\f13b"; }

.obj_galley_link.file,
.obj_galley_link.doc,
.obj_galley_link.docx       { background: var(--g-blue); }
.obj_galley_link.file::before,
.obj_galley_link.doc::before,
.obj_galley_link.docx::before { font-family: FontAwesome; content: "\f15b"; }

.obj_galley_link_supplementary { background: var(--g-purple); }
.obj_galley_link_supplementary::before { font-family: FontAwesome; content: "\f0c1"; }

.obj_galley_link.pdf {
    color: #00bb4f !important;
    border: 0 !important;
    margin-top: 10px;
}

.obj_galley_link.pdf::before {
    font-size: 1rem !important;
}
/* ===================================================================
   READ MORE BUTTON
   ================================================================= */

.block_make_submission_link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.48rem !important;
  background: var(--g-green) !important;
  color: var(--white) !important;
  padding: 0.58rem 1.5rem !important;
  border-radius: var(--r-pill) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  margin-top: 1.2rem !important;
  box-shadow: 0 4px 16px oklch(72.3% 0.219 149.579 / 0.38) !important;
  transition: filter .22s, transform .2s, box-shadow .2s !important;  
    display: inline-block;
    position: relative;
    padding-right: 2.143rem;
    font-size: .93rem;
    font-weight: 700;
    line-height: 2.143rem;
    color: #006798;
    text-decoration: none;
    margin-bottom: 1.43rem;
    width: 100%;
    justify-content: space-between;
    border: 0 !important;
}

.block_make_submission_link::after,
a.block_make_submission_link::after {
  font-family: FontAwesome;
  content: "\f054";
  font-size: 0.7rem;
}
.block_make_submission_link:hover,
a.block_make_submission_link:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 8px 24px oklch(72.3% 0.219 149.579 / 0.48);
}

.read_more,
a.read_more {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  background: var(--g-green);
  color: var(--white);
  padding: 0.58rem 1.5rem;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 1.2rem;
  box-shadow: 0 4px 16px oklch(72.3% 0.219 149.579 / 0.38);
  transition: filter .22s, transform .2s, box-shadow .2s;
}
.read_more::after,
a.read_more::after {
  font-family: FontAwesome;
  content: "\f054";
  font-size: 0.7rem;
}
.read_more:hover,
a.read_more:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 8px 24px oklch(72.3% 0.219 149.579 / 0.48);
}

.pkp_navigation_user .task_count {
    width: 1.7rem !important;
    height: 1.7rem !important;
    line-height: 1.75rem !important;
    top: 0 !important;
    color: #ff0000 !important;
    background: #FFF !important;
}

/* ===================================================================
   PAGE TITLES & BREADCRUMBS
   ================================================================= */

.page h1, .page_issue_archive h1, .page_article h1, .page_search h1 {
  font-size: 1.85rem;
  color: var(--green-deeper);
  padding-bottom: 0.65rem;
  margin-bottom: 1.5rem;
}
.page_issue_archive h1::before { font-family: FontAwesome; content: "\f187 "; color: var(--green); }
.page_search h1::before { font-family: FontAwesome; content: "\f002 "; color: var(--green); }

.pkp_breadcrumbs {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--white);
  padding: 0.52rem 1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-xs);
  margin-bottom: 1.2rem;
}
.pkp_breadcrumbs::before {
  font-family: FontAwesome;
  content: "\f015";
  color: var(--green);
  flex-shrink: 0;
}
.pkp_breadcrumbs a { color: var(--green-dark); }
.pkp_breadcrumbs a:hover { color: var(--green); }
.pkp_breadcrumbs .separator::after {
  font-family: FontAwesome;
  content: " \f054 ";
  font-size: 0.58rem;
  color: var(--green-light);
  vertical-align: middle;
}

/* ===================================================================
   ISSUE ARCHIVE (grid)
   ================================================================= */

.issues_archive {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.5rem;
}
.issues_archive > li { padding: 0; }

.obj_issue_summary {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.4rem;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .22s;
  position: relative; overflow: hidden;
}
.obj_issue_summary::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: var(--g-green);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.obj_issue_summary:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.obj_issue_summary .cover {
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  margin-bottom: 1rem; flex-shrink: 0;
}
.obj_issue_summary .cover img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  transition: transform .32s;
}
.obj_issue_summary:hover .cover img { transform: scale(1.05); }
body > div.pkp_structure_page > div.pkp_structure_content.has_sidebar > div.pkp_structure_main > div > ul > li > div > a {
    width: 100% !important;
}

.obj_issue_summary h2 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  line-height: 1.4; flex: 1;
}
.obj_issue_summary h2 .title {
  color: var(--green-deeper);
  display: flex; align-items: flex-start; gap: 0.42rem;
  transition: color .2s;
}
.obj_issue_summary h2 .title::before {
  font-family: FontAwesome;
  content: "\f02d";
  color: var(--green);
  flex-shrink: 0;
  margin-top: 0.15em;
  font-size: 0.84rem;
}
.obj_issue_summary h2 .title:hover { color: var(--green); }

.obj_issue_summary .series {
  font-size: 0.76rem;
  color: var(--text-light);
  display: flex; align-items: center; gap: 0.3rem;
  margin-top: 0.22rem;
}
.obj_issue_summary .series::before {
  font-family: FontAwesome;
  content: "\f1da";
  color: var(--green-light);
  font-size: 0.7rem;
}
.obj_issue_summary .description {
  font-size: 0.84rem;
  color: var(--text-mid);
  margin-top: 0.45rem;
  line-height: 1.6;
}

/* ===================================================================
   ARTICLE DETAILS PAGE
   ================================================================= */

.obj_article_details .page_title {
  font-size: 1.85rem;
  line-height: 1.3;
  color: var(--green-deeper);
  margin: 0 0 0.5rem;
  padding-bottom: 0.8rem;
}
.obj_article_details h2.subtitle {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-mid);
  margin: 0 0 1.4rem;
}
.obj_article_details .row { 
    display: flex; 
    gap: 1.6rem; 
    align-items: flex-start; 
    border: 0 !important;
}
.obj_article_details .main_entry { flex: 1; min-width: 0; border: 0 !important;}
.obj_article_details .entry_details { width: 268px; flex-shrink: 0; border: 0 !important;}

/* Article sections — floating cards, no boxy borders */
.obj_article_details .item {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.1rem;
  position: relative; overflow: hidden;
}
.obj_article_details .item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3.5px;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.obj_article_details .item.authors::before    { background: var(--g-teal); }
.obj_article_details .item.doi::before         { background: var(--g-purple); }
.obj_article_details .item.keywords::before    { background: var(--g-amber); }
.obj_article_details .item.abstract::before    { background: var(--g-green); }
.obj_article_details .item.author_bios::before { background: var(--g-teal); }
.obj_article_details .item.references::before  { background: var(--g-blue); }
.obj_article_details .item.galleys::before     { background: var(--g-rose); }
.obj_article_details .item.published::before   { background: var(--g-green); }
.obj_article_details .item.issue::before       { background: var(--g-teal); }
.obj_article_details .item.citation::before    { background: var(--g-amber); }
.obj_article_details .item.copyright::before   { background: var(--g-purple); }
.obj_article_details .item.cover_image::before { background: var(--g-green); }

/* Labels */
.obj_article_details .item > .label,
.obj_article_details .item > h2.label,
.obj_article_details .item > h3.label,
.obj_article_details .sub_item > .label,
.obj_article_details .sub_item > h2.label,
.obj_article_details .sub_item > h3.label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin: 0 0 0.62rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.obj_article_details .item.authors     > h2::before { font-family: FontAwesome; content: "\f0c0"; color: var(--teal); }
.obj_article_details .item.doi         > h2::before { font-family: FontAwesome; content: "\f0c1"; color: var(--purple); }
.obj_article_details .item.keywords    > h2::before { font-family: FontAwesome; content: "\f02b"; color: var(--amber); }
.obj_article_details .item.abstract    > h2::before { font-family: FontAwesome; content: "\f15c"; color: var(--green); }
.obj_article_details .item.author_bios > h2::before { font-family: FontAwesome; content: "\f2bd"; color: var(--teal); }
.obj_article_details .item.references  > h2::before { font-family: FontAwesome; content: "\f02d"; color: var(--blue); }
.obj_article_details .item.galleys     > h2::before { font-family: FontAwesome; content: "\f019"; color: var(--rose); }
.obj_article_details .item.published .label::before { font-family: FontAwesome; content: "\f073"; color: var(--green); }
.obj_article_details .item.issue .label::before { font-family: FontAwesome; content: "\f02d"; color: var(--green-dark); }
.obj_article_details .item.citation .label::before { font-family: FontAwesome; content: "\f10d"; color: var(--amber); }
.obj_article_details .item.copyright .label::before { font-family: FontAwesome; content: "\f25e"; color: var(--purple); }

.obj_article_details .sub_item { margin-bottom: 0.65rem; }
.obj_article_details .sub_item:last-child { margin-bottom: 0; }

/* Authors list */
.obj_article_details section.authors ul { list-style: none; margin: 0; padding: 0; }
.obj_article_details section.authors ul li {
  padding: 0.5rem 0;
  display: flex; flex-direction: column; gap: 0.16rem;
}
.obj_article_details .name {
  font-weight: 600;
  color: var(--green-deeper);
  display: flex; align-items: center; gap: 0.36rem;
}
.obj_article_details .name::before {
  font-family: FontAwesome; content: "\f007";
  color: var(--teal); font-size: 1rem; flex-shrink: 0;
}
.obj_article_details .affiliation {
  font-size: 0.8rem; color: var(--text-mid);
  display: flex; align-items: center; gap: 0.3rem;
}
.obj_article_details .affiliation::before {
  font-family: FontAwesome; content: "\f1ad";
  color: var(--blue); font-size: 1rem; flex-shrink: 0;
}
.obj_article_details .orcid {
  font-size: 0.76rem; color: #57a829;
  display: flex; align-items: center; gap: 0.3rem;
}

/* DOI */
.obj_article_details .item.doi .value a {
  color: var(--purple); word-break: break-all;
  display: inline-flex; align-items: baseline; gap: 0.32rem; font-size: 0.85rem;
}
.obj_article_details .item.doi .value a::before {
  font-family: FontAwesome; content: "\f0c1"; flex-shrink: 0;
}

/* Keywords chip cloud */
.obj_article_details .item.keywords .value {
  background: var(--green-pale);
  border-radius: var(--r-md);
  padding: 0.55rem 0.82rem;
  font-size: 0.86rem;
  color: var(--green-dark);
  line-height: 1.85;
}

.obj_article_details .item.doi, 
.obj_article_details .item.keywords {
    padding-top: 1rem !important;
}

/* Issue link */
.obj_article_details .item.issue .value .title,
.obj_article_details .item.issue .value a {
  color: var(--green-dark); font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.32rem;
}
.obj_article_details .item.issue .value .title::before,
.obj_article_details .item.issue .value a::before {
  font-family: FontAwesome; content: "\f02d";
  color: var(--green); font-size: 0.78rem;
}
.obj_article_details .item.issue .value .title:hover,
.obj_article_details .item.issue .value a:hover { color: var(--green); }

/* Cover image */
.obj_article_details .item.cover_image img {
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  width: 100%; height: auto;
}

/* Citation button */
.cmp_button.citation_formats_button {
  display: inline-flex; align-items: center; gap: 0.42rem;
  background: var(--g-amber);
  color: var(--white); border: none;
  border-radius: var(--r-pill);
  padding: 0.48rem 1.15rem;
  font-size: 0.8rem; font-weight: 700;
  cursor: pointer; margin-top: 0.65rem;
  box-shadow: 0 3px 12px oklch(76% 0.22 66 / 0.38);
  transition: filter .2s, transform .18s;
  font-family: inherit;
  margin-top: 0 !important;
}
.cmp_button.citation_formats_button::before { font-family: FontAwesome; content: "\f10d"; }
.cmp_button.citation_formats_button:hover { filter: brightness(1.1); transform: translateY(-2px); }

.obj_article_details .citation_display .citation_formats_button:focus {
    background: transparent !important;
}

.citation_formats_list {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  margin-top: 0.4rem;
}
.citation_formats_styles { list-style: none; margin: 0; padding: 0; }
.citation_formats_styles li a {
  display: flex; align-items: center; gap: 0.42rem;
  padding: 0.44rem 1rem;
  font-size: 0.84rem;
  color: var(--green-dark);
  border-radius: var(--r-sm);
  transition: background .15s;
}
.citation_formats_styles li a:hover { background: var(--green-pale); }
.citation_formats_styles .label {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-light);
  padding: 0.45rem 1rem 0.2rem;
  display: block;
}

/* ===================================================================
   FORMS
   ================================================================= */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
textarea,
select {
  border: 2px solid var(--green-light);
  border-radius: var(--r-md);
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  width: 100%;
  transition: border-color .22s, box-shadow .22s;
  font-family: inherit;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px oklch(72.3% 0.219 149.579 / 0.18);
}

input[type="submit"],
button[type="submit"],
.pkp_button,
button.pkp_button,
a.pkp_button {
  display: inline-flex; align-items: center; gap: 0.46rem;
  background: var(--g-green);
  color: var(--white); border: none;
  border-radius: var(--r-pill);
  padding: 0.58rem 1.6rem;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px oklch(72.3% 0.219 149.579 / 0.38);
  transition: filter .22s, transform .18s;
  font-family: inherit;
}
input[type="submit"]:hover,
button[type="submit"]:hover,
.pkp_button:hover,
a.pkp_button:hover { filter: brightness(1.1); transform: translateY(-2px); color: var(--white); }

/* ===================================================================
   NOTIFICATIONS
   ================================================================= */

.cmp_notification {
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.1rem;
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.875rem;
}
.cmp_notification.notice {
  background: oklch(97% 0.05 240);
  border-left: 4px solid var(--blue);
  color: oklch(35% 0.15 240);
}
.cmp_notification.notice::before {
  font-family: FontAwesome; content: "\f05a";
  color: var(--blue); flex-shrink: 0;
}
.cmp_notification.warning {
  background: oklch(97% 0.05 66);
  border-left: 4px solid var(--amber);
  color: oklch(36% 0.18 66);
}
.cmp_notification.warning::before {
  font-family: FontAwesome; content: "\f071";
  color: var(--amber); flex-shrink: 0;
}
.cmp_notification.success {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  color: var(--green-deeper);
}
.cmp_notification.success::before {
  font-family: FontAwesome; content: "\f00c";
  color: var(--green); flex-shrink: 0;
}

/* ===================================================================
   PAGINATION
   ================================================================= */

.pkp_pagination {
  display: flex; align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 2rem;
  font-size: 0.875rem;
}
.pkp_pagination a,
.pkp_pagination span {
  display: inline-flex; align-items: center; gap: 0.36rem;
  padding: 0.46rem 1rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  transition: background .2s, color .2s;
}
.pkp_pagination a {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow-xs);
}
.pkp_pagination a:hover { background: var(--green); color: var(--white); }
.pkp_pagination .prev a::before { font-family: FontAwesome; content: "\f053"; font-size: 0.68rem; }
.pkp_pagination .next a::after  { font-family: FontAwesome; content: "\f054"; font-size: 0.68rem; }

/* ===================================================================
   ADDITIONAL CONTENT
   ================================================================= */

.additional_content {
  background: transparent !important;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 0 !important;
  margin-top: 0 !important;
}

/* ===================================================================
   FOOTER — MIDNIGHT NAVY / DEEP TEAL
   ================================================================= */

.pkp_structure_footer_wrapper {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  margin-top: auto;
  padding: 3.75rem 0 1.75rem;

  color: var(--footer-text);
  background: var(--g-footer) !important;
}

/* Transisi melengkung antara area konten dan footer */
.pkp_structure_footer_wrapper::before {
  content: "";
  position: absolute;
  z-index: 0;

  top: -74px;
  left: -5%;
  right: -5%;
  height: 132px;

  background: var(--bg);
  border-radius: 0 0 70% 70% / 0 0 100% 100%;
  pointer-events: none;
}

/* Kilau dekoratif yang sangat halus */
.pkp_structure_footer_wrapper::after {
  content: "";
  position: absolute;
  z-index: 0;

  right: -110px;
  bottom: -150px;
  width: 360px;
  height: 360px;

  background:
    radial-gradient(
      circle,
      oklch(75% 0.16 170 / 0.15) 0%,
      oklch(75% 0.16 170 / 0) 68%
    );

  border-radius: 50%;
  pointer-events: none;
}

.pkp_structure_footer {
  position: relative;
  z-index: 1;

  max-width: none;
  margin: 0 auto;
  padding: 0 2rem;
}

.pkp_footer_content {
  margin-bottom: 1.5rem;

  color: var(--footer-text);
  font-size: 0.875rem;
  line-height: 1.8;
}

.pkp_footer_content p,
.pkp_footer_content li,
.pkp_footer_content address {
  color: inherit;
}

.pkp_footer_content a {
  color: var(--footer-accent);
  font-weight: 600;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;

  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}

.pkp_footer_content a:hover,
.pkp_footer_content a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--footer-accent);
}

.pkp_brand_footer {
  padding-top: 1.25rem;

  text-align: center;
  color: var(--footer-muted);

  border-top: 1px solid oklch(88% 0.04 190 / 0.18);
  opacity: 0.78;

  transition: opacity 0.22s ease;
}

.pkp_brand_footer:hover {
  opacity: 1;
}

.pkp_brand_footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pkp_brand_footer img {
  max-height: 34px;
  margin: 0 auto;

  filter:
    brightness(0)
    invert(1)
    opacity(0.82);

  transition:
    filter 0.22s ease,
    opacity 0.22s ease;
}

.pkp_brand_footer a:hover img,
.pkp_brand_footer a:focus-visible img {
  filter:
    brightness(0)
    invert(1)
    opacity(1);
}

/* ===================================================================
   ACCESSIBILITY
   ================================================================= */

.pkp_screen_reader {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

.pkp_skip_links a {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--green-dark); color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  transition: top .2s;
  font-weight: 600; font-size: 0.88rem;
}
.pkp_skip_links a:focus { top: 0; }

/* ===================================================================
   RESPONSIVE
   ================================================================= */

@media (max-width: 1024px) {
  .pkp_structure_content {
    flex-direction: column-reverse;
    padding: 0 1.5rem;
  }
  .pkp_structure_sidebar {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 1.25rem;
  }
  .pkp_structure_sidebar .pkp_block { margin-bottom: 0; }
  .obj_article_details .row { flex-direction: column; }
  .obj_article_details .entry_details {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    gap: 1rem;
  }
  .obj_article_details .entry_details .item { margin-bottom: 0; }
}

@media (max-width: 768px) {
  .pkp_head_wrapper,
  .has_site_logo .pkp_head_wrapper {
    padding: 0.5rem 1rem !important;
  }
  .pkp_structure_content { padding: 0 1rem; margin: 1.2rem auto; }
  .pkp_structure_sidebar { grid-template-columns: 1fr; }
  .homepage_image img { height: 200px; }
  .homepage_about { padding: 1.4rem; }
  .homepage_about::after { display: none; }
  .obj_article_details .page_title { font-size: 1.45rem; }
  .obj_article_details .entry_details { grid-template-columns: 1fr; }
  .issues_archive { grid-template-columns: 1fr; }
  .pkp_structure_footer_wrapper::before { display: none; }
  .pkp_structure_footer_wrapper { padding-top: 2rem !important; }
}

@media (max-width: 480px) {
  .pkp_head_wrapper,
  .has_site_logo .pkp_head_wrapper { padding: 0.4rem 0.75rem !important; }
  .current_issue, .cmp_announcements, .homepage_about { padding: 1.2rem; }
  .obj_article_summary { padding: 1.1rem 1.2rem; }
  .obj_article_details .item { padding: 1rem 1.1rem; }
  .issues_archive { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===================================================================
   CONTAINER RESPONSIF BAWAAN OJS 3.3.X
   -------------------------------------------------------------------
   < 768px   : 100%
   >= 768px  : 728px
   >= 992px  : 952px
   >= 1200px : 1160px

   Catatan: 1200px di bawah adalah breakpoint layar, bukan lebar
   container. Lebar container maksimum tetap 1160px.
   ================================================================= */

.pkp_head_wrapper,
.has_site_logo .pkp_head_wrapper,
.pkp_structure_content,
.pkp_structure_footer {
  width: 100% !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (min-width: 768px) {
  .pkp_head_wrapper,
  .has_site_logo .pkp_head_wrapper,
  .pkp_structure_content,
  .pkp_structure_footer {
    width: var(--ojs-container-tablet) !important;
    max-width: var(--ojs-container-tablet) !important;
  }
}

@media (min-width: 992px) {
  .pkp_head_wrapper,
  .has_site_logo .pkp_head_wrapper,
  .pkp_structure_content,
  .pkp_structure_footer {
    width: var(--ojs-container-desktop) !important;
    max-width: var(--ojs-container-desktop) !important;
  }
}

@media (min-width: 1200px) {
  .pkp_head_wrapper,
  .has_site_logo .pkp_head_wrapper,
  .pkp_structure_content,
  .pkp_structure_footer {
    width: var(--ojs-container-large) !important;
    max-width: var(--ojs-container-large) !important;
  }
}

