.pkp_site_name {
  width: 100%;
  display: block;
  padding: 0;
  margin: 0;
  text-align: center;
  /* Atur jika perlu */
}

.pkp_site_name .is_img {
  display: block;
  width: 100%;
}

.pkp_site_name .is_img img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  max-height: fit-content;
}



:root {
  --accent: #2E7D32;
  --soft: #F1FAF3;
  --line: #E6EFE7;
  --radius: 14px;
}

/* ===== Hero (Cover + Deskripsi) ===== */
.se-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
  margin-bottom: 18px;
}

.se-hero-img img {
  width: 280px;
  /* dibesarkan dari ~200px → 280px */
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.se-hero-text {
  text-align: justify;
  line-height: 1.6
}

@media (max-width: 860px) {
  .se-hero {
    grid-template-columns: 1fr;
  }

  .se-hero-img {
    display: flex;
    justify-content: center
  }

  .se-hero-img img {
    width: 220px
  }

  /* responsif di mobile */
}

/* ===== Card Meta Tabel ===== */
.meta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
  margin-bottom: 18px;
}

.meta-head {
  background: linear-gradient(0deg, var(--soft), #fff);
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: #204;
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta-head:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.meta-table {
  width: 100%;
  border-collapse: collapse;
}

.meta-table th,
.meta-table td {
  border-top: 1px solid var(--line);
  padding: 11px 14px;
  vertical-align: top;
}

.meta-table th {
  width: 32%;
  background: #F7FBF8;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}

/* Mobile: jadikan “kartu” */
@media (max-width:768px) {

  .meta-table,
  .meta-table tbody,
  .meta-table tr,
  .meta-table th,
  .meta-table td {
    display: block
  }

  .meta-table tr {
    border-top: 1px solid var(--line)
  }

  .meta-table th {
    background: #F7FBF8;
    border-bottom: 1px dashed var(--line)
  }

  .meta-table td {
    padding-top: 8px
  }
}

/* ===== Carousel Gabungan (Indexed + Tools) ===== */
.section-title {
  font-weight: 700;
  margin: 18px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.badge-slider {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 10px;
  margin-bottom: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

.badge-track {
  --gap: 22px;
  display: flex;
  align-items: center;
  gap: var(--gap);
  animation: scroll 28s linear infinite;
  will-change: transform;
}

.badge-slider:hover .badge-track {
  animation-play-state: paused
}

/* pause saat hover */
.badge-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #E9EDF1;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.badge-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08)
}

.badge-item img {
  height: 56px;
  max-height: 56px;
  width: auto;
  display: block
}

/* berwarna */
@media (max-width:768px) {
  .badge-item {
    min-width: 130px;
    padding: 8px 10px
  }

  .badge-item img {
    height: 44px;
    max-height: 44px
  }
}

@media (prefers-reduced-motion:reduce) {
  .badge-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center
  }
}

@keyframes scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(calc(-50% - var(--gap)))
  }

  /* duplikasi konten */
}

.semj-footer {
  background: #0E5A2A;
  color: #EAF4EC;
  font-size: 15px;
  line-height: 1.6;
}

.semj-footer a {
  color: #CBECD3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.semj-footer a:hover {
  color: #fff;
}

.semj-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 16px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1.3fr 1fr 1fr;
  /* brand | contact | meta */
}

.semj-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
}

.semj-title span {
  font-weight: 500;
  opacity: .9;
}

.semj-sub {
  margin: .25rem 0 0;
  opacity: .95
}

.semj-contact .semj-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: .35rem 0;
}

.semj-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: #CBECD3;
  margin-top: 3px;
}

.semj-meta p {
  margin: .35rem 0;
}

.semj-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  text-align: center;
  padding: 10px 12px;
  font-size: 13px;
  color: #DDEBDD;
}

/* Responsif */
@media (max-width: 900px) {
  .semj-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .semj-wrap {
    grid-template-columns: 1fr;
  }

  .semj-title {
    font-size: 18px;
  }
}