/* HEADER LOGO FULL WIDTH */
.pkp_site_name img {
  width: 100% !important;
  height: auto !important;
}

/* NAVIGASI UTAMA */
.pkp_navigation_primary {
  background-color: #333 !important;
}
.pkp_navigation_primary li > a {
  color: #fff !important;
  font-weight: 500;
}
.pkp_navigation_primary li > a:hover {
  color: #ffcc00 !important;
  text-decoration: none;
}

/* KONTEN & SIDEBAR */
.main-content, .pkp_structure_main {
  display: flex !important;
  flex-wrap: wrap;
}
.article_content, .pkp_structure_content {
  flex: 1 1 65%;
  padding: 20px;
  background: #fff;
}
.sidebar {
  flex: 1 1 30%;
  padding: 20px;
  background: #f9f9f9;
  border-left: 1px solid #ddd;
}

/* PANEL SIDEBAR (BLOCK) */
.sidebar .block {
  margin-bottom: 20px;
  border: 1px solid #ccc;
}
.sidebar .block-title {
  background-color: #333 !important;
  color: #fff !important;
  padding: 10px;
  font-size: 1rem;
  font-weight: bold;
}
.sidebar .block_content a {
  display: block;
  padding: 8px 10px;
  color: #333 !important;
  text-decoration: none;
}
.sidebar .block_content a:hover {
  background-color: #eee;
  color: #000 !important;
}

/* FONT BODY */
body, .pkp_body {
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  background: #f2f2f2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-content, .pkp_structure_main {
    display: block;
  }
  .sidebar {
    width: 100% !important;
    padding: 15px 0;
    border-left: none;
    border-top: 1px solid #ddd;
  }
}

