/* ======== GLOBAL ======== */
body {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 15px;
  color: #333;
  background: linear-gradient(135deg, #0E6DE8, #00C6FF); /* Full background biru */
  margin: 0;
  padding: 0;
}

/* Wrapper utama konten */
.pkp_structure_page {
  max-width: 1160px;
  margin: 20px auto;
  background: rgba(255,255,255,0.95); /* Putih semi-transparan agar biru terlihat */
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  padding: 0px;
}

/* ======== HEADER ======== */
.pkp_site_name_wrapper {
  width: 100%;
  background: linear-gradient(90deg, #0E6DE8, #00C6FF);
  padding: 20px 0;
  text-align: center;
  color: #fff;
  border-radius: 8px 8px 0 0;
}

.pkp_site_name_wrapper img {
  max-height: 80px;
}

/* Navigasi utama */
.pkp_navigation_primary_row {
  background: #0E6DE8; /* Biru solid */
  text-align: center;
  border-bottom: 2px solid #00C6FF;
}

.pkp_navigation_primary_wrapper ul li a {
  color: #fff !important;
  padding: 12px 18px;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
}

.pkp_navigation_primary_wrapper ul li a:hover {
  background: #00C6FF;
  color: #fff !important;
  border-radius: 4px;
}

/* ======== FOOTER ======== */
.pkp_structure_footer_wrapper {
  background: linear-gradient(90deg, #0E6DE8, #00C6FF);
  text-align: center;
  color: #fff;
  padding: 20px;
  margin-top: 30px;
  border-radius: 0 0 8px 8px;
}

.pkp_structure_footer_wrapper a {
  color: #fff;
  font-weight: 500;
}

.pkp_structure_footer_wrapper a:hover {
  text-decoration: underline;
}

/* ======== KONTEN ARTIKEL ======== */
.obj_article_details .page_title {
  background: #0E6DE8;
  color: #fff;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(14,109,232,0.3);
  margin-bottom: 20px;
  text-align: center;
}

.main_entry .item.abstract {
  text-align: justify;
  line-height: 1.6;
  background: #f0f6ff;
  padding: 15px;
  border-radius: 6px;
}

/* Tautan di dalam artikel */
.pkp_structure_main a {
  color: #0E6DE8;
  text-decoration: none;
}

.pkp_structure_main a:hover {
  color: #004aad;
  text-decoration: underline;
}

/* ======== SIDEBAR & BLOCK ======== */
.pkp_block.block_custom {
  background: rgba(255,255,255,0.9); /* Sedikit transparan agar biru terlihat */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  padding: 15px;
}

.pkp_block.block_custom h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0E6DE8;
  border-bottom: 2px solid #0E6DE8;
  padding-bottom: 5px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .pkp_structure_page {
    margin: 10px;
    padding: 15px;
  }

  .obj_article_details .page_title {
    font-size: 18px;
    padding: 15px;
  }

  .pkp_navigation_primary_wrapper ul li a {
    padding: 10px 14px;
    font-size: 14px;
  }
}
