.pkp_footer_content {
  float: left;
  width: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.pkp_brand_footer {
  float: right;
  width: 30%;
  padding-bottom: 10px;
  padding-top: 50px;
}
.pkp_structure_footer_wrapper {
  background: #e8ebef;
  border-bottom: @double solid;
  border-bottom-color: #1c0210;
}

/* =========================
   1. HEADER CONTAINER
========================= */
.pkp_structure_head {
  background: url("/public/site/images/admin/header.png") no-repeat right top;
  background-size: cover;
  background-color: #faa82d;
  padding: 0;
  display: block;
  border-bottom: 3px solid rgba(0, 0, 0, 0.08);
}

/* =========================
   2. BRANDING AREA (LOGO + NAME)
========================= */
.pkp_site_name_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 15px 30px;
  flex-wrap: wrap;
  width: 100%;
}

/* Logo image - FULLY RESPONSIVE */
.pkp_site_name .is_img {
  flex-shrink: 0;
  display: inline-block;
  line-height: 0;
}

.pkp_site_name .is_img img {
  /* Responsif dengan clamp: min(mobile) ideal(relative) max(desktop) */
  max-height: clamp(60px, 12vw, 120px);
  width: auto;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.pkp_site_name .is_img img:hover {
  transform: scale(1.05);
}

/* Journal name text - Fully responsive */
.pkp_site_name {
  flex: 1;
  min-width: 200px;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  white-space: normal;
  overflow: visible;
  position: relative;
  margin: 0;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* =========================
   3. NAVIGATION BAR
========================= */
.pkp_navigation_primary_wrapper {
  background: #aa7117;
  padding: 8px 24px;
}

.pkp_navigation_primary li a {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 10px;
}

.pkp_navigation_primary li a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #000;
}

/* =========================
   4. SEARCH POSITIONING
========================= */
.pkp_navigation_search_wrapper {
  margin-left: auto;
}

/* =========================
   5. ADMIN MENU (TOP RIGHT)
========================= */
.pkp_structure_head .pkp_user_nav {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
}

/* =========================
   6. RESPONSIVE DESIGN
========================= */

/* Extra Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .pkp_site_name_wrapper {
    padding: 20px 40px;
    gap: 25px;
  }

  .pkp_site_name {
    font-size: 1.5rem;
  }
}

/* Desktop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .pkp_site_name_wrapper {
    padding: 18px 35px;
    gap: 22px;
  }

  .pkp_site_name {
    font-size: 1.3rem;
  }
}

/* Tablet Landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .pkp_site_name_wrapper {
    padding: 15px 25px;
    gap: 18px;
  }

  .pkp_site_name {
    font-size: 1.1rem;
  }
}

/* Tablet Portrait (601px - 767px) */
@media (min-width: 601px) and (max-width: 767px) {
  .pkp_site_name_wrapper {
    gap: 15px;
    padding: 12px 20px;
  }

  .pkp_site_name {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
  }

  .pkp_navigation_primary_wrapper {
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Mobile Landscape (480px - 600px) */
@media (max-width: 600px) {
  .pkp_site_name_wrapper {
    gap: 12px;
    padding: 10px 15px;
    justify-content: center;
  }

  .pkp_site_name {
    font-size: clamp(0.85rem, 2vw, 1rem);
    text-align: center;
    flex-basis: 100%;
    order: 2;
  }

  .pkp_site_name .is_img {
    order: 1;
  }
}

/* Mobile Portrait (< 480px) */
@media (max-width: 479px) {
  .pkp_site_name_wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
  }

  .pkp_site_name {
    font-size: 0.85rem;
    text-align: center;
  }

  .pkp_structure_head .pkp_user_nav {
    top: 5px;
    right: 10px;
    font-size: 12px;
  }
}

.pkp_block {
  padding: 0.3rem 1.43rem;
  font-size: 1rem;
  line-height: 1.43rem;
}

.pkp_block a {
  text-decoration: none;
  font-family: "Helvetica", sans-serif;
  font-size: 12px;
}

.pkp_site_nav_menu a {
  display: inline-block;
  padding: 0.125rem 0;
  color: #000;
  text-decoration: none;
  font-family: "Helvetica", sans-serif;
  font-size: 13px;
}

.tools-wrapper {
  font-family: "Helvetica", sans-serif;
  max-width: 220px;
  margin: 0 auto 10px auto;
}
.tools-title {
  font-family: "Helvetica", sans-serif;
  background-color: #aa7117;
  color: #fff;
  font-weight: 700;
  padding: 10px 14px;
  font-size: 14px;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tools-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 1px 0;
}

.custom-menu-wrapper {
  font-family: "Helvetica", sans-serif;
  max-width: 220px;
  margin: 0 auto 10px auto;
}

.custom-menu-title {
  background-color: #aa7117;
  color: #fff;
  font-weight: 700;
  padding: 10px 14px;
  font-size: 14px;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.custom-menu-item {
  background-color: #ffdb58;
  border-radius: 6px;
  margin-bottom: 6px;
  transition: background-color 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid #aa7117;
}

.custom-menu-item a {
  display: block;
  padding: 6px 10px;
  color: #000;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.2;
  transition: color 0.2s ease;
  border-radius: 6px;
}

.custom-menu-item:hover {
  background-color: #aa7117;
}
.custom-menu-item:hover a {
  color: #fff;
}

.custom-menu-item a {
  display: flex;
  align-items: center;
}

.custom-menu-item a .fa {
  display: inline-block;
  width: 18px;
  margin-right: 8px;
  text-align: center;
  font-size: 15px;
  color: #024;
  line-height: 1;
}

.img {
  max-width: 220px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 2px auto;
  vertical-align: top;
}
a:hover .img {
  transform: translateY(-2px);
}

.page_index_journal .additional_content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.page_index_journal h2 {
  margin-top: 0 !important;
}

/* Wrapper utama */
.albariq-journal-wrapper {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #ffffff;
  padding: 18px;
  margin-bottom: 20px;
  margin-top: 0 !important;
  padding-top: 10px !important;
}

/* Judul utama */
.albariq-main-title {
  margin: 0 0 14px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  border-bottom: 2px solid #d1d5db;
  padding-bottom: 6px;
}

/* Dua kolom */
.albariq-journal-box {
  display: flex;
  gap: 20px;
}

/* Cover */
.albariq-cover img {
  max-width: 180px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* Identitas tabel */
.albariq-identity {
  flex: 1;
}

.albariq-row {
  display: flex;
  padding: 6px 0;
  border-bottom: 1px solid #d1d5db;
}

.albariq-row:last-child {
  border-bottom: none;
}

.albariq-label {
  width: 180px;
  font-weight: 600;
  color: #000000;
}

.albariq-value {
  flex: 1;
  color: #333;
}

/* Index logos */
.albariq-index img {
  max-height: 26px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Statistik */
.albariq-stat {
  width: 100%;
  min-height: 140px;
  border: none;
}

/* Deskripsi panjang */
.albariq-long-description {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid #d1d5db;
}

.albariq-long-description p {
  margin: 0 0 10px 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .albariq-journal-box {
    flex-direction: column;
    gap: 12px;
  }

  .albariq-cover img {
    max-width: 100%;
    height: auto;
  }

  .albariq-row {
    flex-direction: column;
    gap: 4px;
  }

  .albariq-label {
    width: 100%;
  }

  .albariq-value {
    width: 100%;
  }

  .albariq-index img {
    max-height: 22px;
  }

  .albariq-main-title {
    font-size: 1rem;
  }
}

.galleys-and-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.article-doi {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  margin-top: 4px;
}

.article-doi img {
  width: 20px;
  height: 20px;
}

.article-stats {
  display: flex;
  gap: 20px;
}

.article-views,
.pdf-views {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
}

.article-views img,
.pdf-views img {
  width: 20px;
  height: 20px;
}

.galleys_links {
  margin-bottom: 4px;
}

.galleys_links li {
  margin-bottom: 4px;
}

.pkp_block.block_custom {
  text-align: center;
}

.pkp_block.block_custom .content {
  text-align: center;
}

.pkp_block.block_custom img {
  display: block;
  margin: 0 auto;
}

.pkp_block.block_custom p {
  margin: 0;
}

.pkp_footer_content {
  float: left;
  width: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.obj_article_summary > .title a {
  text-decoration: none;
  font-family: "Helvetica", sans-serif;
}

.obj_galley_link {
  background: #ffdb58;
  color: #000;
  font-size: 11px;
  font-weight: 600;
  border-radius: 10px;
  padding: 0 10px;
  border: 1px solid #aa7117;
  margin-top: 4px;
  margin-bottom: 4px;
  font-family: "Helvetica", sans-serif;
}

.obj_issue_toc .pages {
  color: #aa7117;
  font-size: 11px;
  font-weight: 600;
  font-family: "Helvetica", sans-serif;
}

.obj_issue_toc .articles > li {
  border-bottom: 1px solid #ffdb58;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}

/* =========================
   GRID LAYOUT
========================= */
.editorial-board {
  margin-top: 20px;
}

.editorial-board h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  border-bottom: 2px solid #f57c00;
  display: inline-block;
  padding-bottom: 4px;
}

/* 2 kolom */
.editor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* =========================
   CARD STYLE
========================= */
.editor-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.25s ease;
}

/* Hover effect */
.editor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* =========================
   TEXT
========================= */
.editor-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
}

.editor-affiliation {
  font-size: 0.85rem;
  color: #666;
  margin-top: 3px;
  margin-bottom: 8px;
}

/* =========================
   LINKS (BADGE STYLE)
========================= */
.editor-links {
  display: flex;
  gap: 8px;
}

.editor-links a,
.editor-links span {
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
}

/* warna */
.gs {
  background: #4285f4;
}

.sinta {
  background: #00a65a;
}

.scopus {
  background: #f57c00;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .editor-grid {
    grid-template-columns: 1fr;
  }
}
