/* =====================================================
   BASE STYLE
===================================================== */

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f6f8fb;
  color: #222;
  background-image: url("useHomepageImageAsHeader");
  background-repeat: repeat;
  background-position: center top;
}

/* =====================================================
   HEADER / BANNER
===================================================== */

.pkp_structure_head {
  width: 100%;
  background-image: url("images/cover_header.jpg");
  background-size: cover;
  background-position: center;
  height: 180px;
}

/* hilangkan logo default agar banner terlihat penuh */
.pkp_site_name {
  display: none;
}

/* =====================================================
   NAVIGATION MENU
===================================================== */

.pkp_navigation_primary_wrapper {
  background: #16284c;
  width: 100%;
}

.pkp_navigation_primary {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.pkp_navigation_primary > li > a {
  color: #fff;
  text-decoration: none;
  padding: 14px 8px;
  font-size: 14px;
  position: relative;
}

.pkp_navigation_primary > li > a:hover {
  color: #ffd700;
}

/* underline animation */

.pkp_navigation_primary > li > a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffd700;
  transform: scaleX(0);
  transition: 0.2s;
}

.pkp_navigation_primary > li > a:hover::after {
  transform: scaleX(1);
}

/* =====================================================
   MAIN CONTENT
===================================================== */

.pkp_structure_content {
  max-width: 1200px;
  margin: auto;
  padding: 25px;
  background: #fff;
  border: 1px solid #e5e5e5;
}

/* artikel */

.obj_article_summary {
  margin-bottom: 25px;
}

.obj_article_summary .title a {
  color: #1f3c88;
  font-weight: 600;
}

.obj_article_summary .title a:hover {
  text-decoration: underline;
}

/* =====================================================
   SIDEBAR
===================================================== */

.pkp_structure_sidebar {
  padding-left: 20px;
}

.pkp_block {
  margin-bottom: 30px;
}

.pkp_block h2 {
  background: #101a8b;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
}

.pkp_block ul li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  background: linear-gradient(180deg,#2f6fa3,#1e4f7a);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.pkp_block ul li a:hover {
  background: linear-gradient(180deg,#3f86c2,#2a669c);
}

/* =====================================================
   FOOTER
===================================================== */

.pkp_site_footer {
  background: #16284c;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

  .pkp_structure_content {
    padding: 15px;
  }

  .pkp_navigation_primary {
    flex-direction: column;
    align-items: center;
  }

  .pkp_navigation_primary > li > a {
    padding: 10px;
  }

}