/* Border card untuk setiap artikel */
.obj_article_summary{
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0px 0;
  background: #fff;
}

/* Opsional: rapikan jarak cover bila ada */
.obj_article_summary .cover{
  margin-bottom: 10px;
}

.obj_article_summary:hover{
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}


/* CSS Font Sidebar */
.pkp_block .content p {
  content: "";
  font-weight: 900;
  font-size: 16px;
}
.pkp_block .content {
  content: "";
}
/* CSS Font Body */
.pkp_structure_main p {
  content: "";
}
/* CSS Font Footer */
.pkp_footer_content {
  content: "";
}

.pkp_brand_footer {
	display: none;
}

/* CSS SIDEBAR */

/* Menata tampilan link */
.content ul li a {
  position: relative;
  text-decoration: none;
  color: #1167B1; /* Warna teks default */
  display: inline-block;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Garis bawah animasi */
.content ul li a::after {
  content: "";
  position: absolute;
  left: 0; /* Mulai dari sisi kiri */
  bottom: -2px; /* Jarak garis bawah dari teks */
  width: 0;
  height: 2px;
  background-color: black; /* Warna garis */
  transition: width 0.3s ease-in-out;
}

/* Efek hover: garis memanjang dari kiri ke kanan */
.content ul li a:hover::after {
  width: 100%;
}

/* Efek hover: warna teks berubah */
.content ul li a:hover {
  color: #2A9DF4; /* Warna biru saat hover */
}



/* CSS LOGO */

.pkp_site_name .is_img img {
  display: block;
  width: auto;
  height: auto;
  border-radius: 25px;
}

/* ===== FOOTER WRAPPER ===== */
.pkp_structure_footer {
  background: #ffffff;
  border-top: 3px solid #1167B1;
  margin-top: 20px;
}

/* ===== FOOTER TOP — 3 KOLOM ===== */
.pkp_footer_content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 18px 28px;
  max-width: 100%;
  margin: 0 auto;
}

/* Setiap kolom info */
.pkp_footer_content > div,
.pkp_footer_content > p {
  flex: 1;
  min-width: 180px;
  font-size: 13px;
  color: #333;
  line-height: 1.8;
}

/* Judul kolom (Address, Contact Info) */
.pkp_footer_content strong,
.pkp_footer_content b {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #111;
  margin-bottom: 6px;
}

/* Link di footer */
.pkp_footer_content a {
  color: #1167B1;
  text-decoration: none;
}

.pkp_footer_content a:hover {
  text-decoration: underline;
}

/* ===== LOGO JURNAL (kolom kanan) ===== */
.pkp_site_name_wrapper,
.pkp_footer_content .site_name {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.pkp_site_name_wrapper img,
.pkp_footer_content .site_name img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #1167B1;
  object-fit: contain;
}

.pkp_site_name_wrapper .site_name_text h1,
.pkp_footer_content .site_name h1 {
  font-size: 18px;
  font-weight: bold;
  color: #1167B1;
  margin: 0;
  line-height: 1.2;
}

.pkp_site_name_wrapper .site_name_text span,
.pkp_footer_content .site_name span {
  font-size: 13px;
  color: #555;
}

/* ===== GARIS PEMISAH ===== */
.pkp_structure_footer hr,
.pkp_footer_content + hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 28px;
}

/* ===== COPYRIGHT BAR ===== */
.pkp_footer_content ~ p,
.pkp_structure_footer .copyright,
.pkp_footer_content + div {
  font-size: 12px;
  color: #333;
  text-align: center;
  line-height: 1.8;
  padding: 10px 28px 14px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== GARIS BIRU BAWAH ===== */
.pkp_structure_footer::after {
  content: "";
  display: block;
  height: 8px;
  background: #1167B1;
}

.pkp_structure_footer_wrapper {
  background: #fff;
}

.pkp_page_index .homepage_image img {
  display: block;
  width: 40%;
  height: auto;
  margin-left: 30px;
  margin-top: 10px;
}