/* =====================================================================
   LPPM UNWIM - Modern Header & Hero Redesign
   Loaded after style.css, overrides the transparent OSTemplate header
   and the old carousel hero with a dark / mint-green layout.
   ===================================================================== */

:root{
  --lppm-dark:        #34393d;
  --lppm-dark-deep:   #2a2e31;
  --lppm-green:       #18d26e;
  --lppm-green-dark:  #12b25d;
  --lppm-text-muted:  #c7cbce;
}

/* ---------------------------------------------------------------------
   TOP UTILITY BAR
   --------------------------------------------------------------------- */
#lppm-topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--lppm-dark-deep);
  color: #cfd3d6;
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  height: 38px;
}
#lppm-topbar .lppm-topbar-inner{
  max-width: 1600px;
  margin: 0 auto;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
#lppm-topbar .lppm-topbar-left{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#lppm-topbar .lppm-topbar-left strong{ color:#fff; font-weight:700; }
#lppm-topbar .lppm-topbar-right{
  display: flex;
  align-items: center;
  gap: 22px;
}
#lppm-topbar .lppm-topbar-right a{
  color: #cfd3d6;
  text-decoration: none;
  transition: .25s;
  white-space: nowrap;
}
#lppm-topbar .lppm-topbar-right a:hover{ color: var(--lppm-green); }
#lppm-topbar .lppm-topbar-sep{
  width: 1px; height: 14px; background: rgba(255,255,255,.18);
}
#lppm-topbar .lppm-topbar-search{
  color: #cfd3d6;
  cursor: pointer;
}
#lppm-topbar .lppm-topbar-lang a{
  color: #8b9195;
  margin: 0 2px;
  font-weight: 600;
}
#lppm-topbar .lppm-topbar-lang a.active{ color: #fff; }

@media (max-width: 991px){
  #lppm-topbar .lppm-topbar-right{ gap: 12px; }
  #lppm-topbar .lppm-topbar-right .lppm-hide-mobile{ display:none; }
}
@media (max-width: 576px){
  #lppm-topbar{ display:none; }
}

/* ---------------------------------------------------------------------
   MAIN HEADER / NAV  (overrides header-transparent, header-scrolled)
   --------------------------------------------------------------------- */
body{ padding-top: 0; }

#header.header-transparent,
#header.header-scrolled,
#header{
  background: rgba(42, 46, 49, 0.97) !important;
  top: 38px;
  height: 84px;
  box-shadow: 0 2px 18px rgba(0,0,0,.18);
}
@media (max-width: 576px){
  #header.header-transparent,
  #header.header-scrolled,
  #header{ top: 0; }
}

#header .lppm-logo{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border-left: none;
  padding-left: 0;
}
#header .lppm-logo img{
  height: 46px;
  width: auto;
}
#header .lppm-logo .lppm-logo-text{
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
#header .lppm-logo .lppm-logo-text .lppm-logo-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: .5px;
}
#header .lppm-logo .lppm-logo-text .lppm-logo-sub{
  font-family: "Open Sans", sans-serif;
  font-size: 10.5px;
  color: var(--lppm-text-muted);
  letter-spacing: .3px;
  max-width: 230px;
}

/* top-level nav links: clean solid white, green on hover/active */
#header .navbar > ul > li > a,
#header .navbar > ul > li > a:focus{
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 0 10px 26px;
}
#header .navbar > ul > li > a:hover,
#header .navbar > ul > li.active > a,
#header .navbar > ul > li.active > a:focus,
#header .navbar > ul > li:hover > a{
  color: var(--lppm-green);
}
#header .navbar > ul > li.active > a::after,
#header .navbar > ul > li > a.active::after{
  content: "";
  display: block;
  position: absolute;
  left: 26px; right: 0; bottom: 2px;
  height: 2px;
  background: var(--lppm-green);
}

/* dropdown submenu: white panel, dark readable text, green on hover/active */
#header .navbar .dropdown ul{
  background: #fff;
  border-radius: 6px;
  /* overflow stays visible (no clipping) so nested (grandchild) flyout
     submenus, like "Bidang IT" > E-LPPM/E-SKPI/..., are never hidden */
}
#header .navbar .dropdown ul li{
  border-bottom: 1px solid rgba(0,0,0,.06);
}
#header .navbar .dropdown ul li:last-child{
  border-bottom: none;
}
#header .navbar .dropdown ul a,
#header .navbar .dropdown ul a:focus{
  color: #3a3f43 !important;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
}
#header .navbar .dropdown ul a:hover,
#header .navbar .dropdown ul .active > a,
#header .navbar .dropdown ul li:hover > a{
  color: var(--lppm-green-dark) !important;
  background: #f4f6f5;
}
/* nested (grandchild) flyout submenu needs its own visible stacking context */
#header .navbar .dropdown .dropdown ul{
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  z-index: 100;
}

/* push page content below the taller fixed header (topbar + nav) */
#hero{ margin-top: 122px; }
@media (max-width: 576px){
  #hero{ margin-top: 84px; }
}

/* ---------------------------------------------------------------------
   HERO SECTION
   --------------------------------------------------------------------- */
#hero.lppm-hero{
  position: relative;
  height: auto !important;
  min-height: 640px;
  background: var(--lppm-dark);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.lppm-hero-bg{
  position: absolute;
  top: 0; right: 0;
  width: 62%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.lppm-hero-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--lppm-dark) 0%, rgba(52,57,61,.55) 28%, rgba(52,57,61,.15) 55%, rgba(0,0,0,.35) 100%);
}

.lppm-hero-shapes{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 46%, rgba(255,255,255,.05) 46.4%, rgba(255,255,255,.05) 47%, transparent 47.4%),
    linear-gradient(115deg, transparent 40%, rgba(255,255,255,.035) 40.4%, rgba(255,255,255,.035) 41%, transparent 41.4%);
}

.lppm-hero-dots{
  position: absolute;
  top: 36px; right: 36px;
  width: 120px; height: 60px;
  z-index: 2;
  background-image: radial-gradient(rgba(255,255,255,.35) 1.6px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: .5;
}
@media (max-width: 767px){ .lppm-hero-dots{ display:none; } }

.lppm-hero-inner{
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 70px 15px;
}

#hero.lppm-hero .container.lppm-hero-inner{ text-align: left; }

.lppm-hero-text{ max-width: 640px; text-align: left; }

.lppm-hero-tag{
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 5px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.lppm-hero-tag::after{
  content: "";
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: rgba(255,255,255,.35);
}

.lppm-hero-text h1{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 22px;
}
.lppm-hero-text h1 .text-accent{ color: var(--lppm-green); }

.lppm-hero-text p{
  color: var(--lppm-text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 34px;
}

.lppm-hero-actions{
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.btn-lppm-primary{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lppm-green);
  color: #10331f;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 15px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: .3s;
}
.btn-lppm-primary:hover{
  background: var(--lppm-green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lppm-play{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
}
.btn-lppm-play .play-icon{
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: .3s;
  flex-shrink: 0;
}
.btn-lppm-play .play-icon i{ font-size: 15px; margin-left: 2px; }
.btn-lppm-play:hover .play-icon{
  background: var(--lppm-green);
  border-color: var(--lppm-green);
  color: #10331f;
}
.btn-lppm-play:hover{ color: var(--lppm-green); }

.lppm-hero-caption{
  position: absolute;
  right: 4%;
  top: 52%;
  transform: translateY(-50%) rotate(-4deg);
  z-index: 4;
  font-family: "Caveat", cursive;
  font-size: 30px;
  line-height: 1.25;
  color: #fff;
  text-align: right;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.lppm-hero-caption .accent-underline{
  display: block;
  width: 90px;
  height: 2px;
  margin: 4px 0 0 auto;
  background: var(--lppm-green);
  border-radius: 2px;
}
@media (max-width: 1200px){ .lppm-hero-caption{ display:none; } }

@media (max-width: 991px){
  .lppm-hero-bg{ width: 100%; opacity: .28; }
  .lppm-hero-bg::after{ background: linear-gradient(180deg, rgba(42,46,49,.55) 0%, var(--lppm-dark) 85%); }
  .lppm-hero-inner{ min-height: auto; padding: 60px 15px 50px; }
  .lppm-hero-text h1{ font-size: 34px; }
}
@media (max-width: 576px){
  .lppm-hero-text h1{ font-size: 27px; }
  .lppm-hero-tag{ letter-spacing: 3px; font-size: 11px; }
}

/* ---------------------------------------------------------------------
   FEATURE STRIP
   --------------------------------------------------------------------- */
.lppm-feature-strip{
  position: relative;
  z-index: 5;
  background: #3d4247;
  margin: -56px 24px 0 24px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
@media (max-width: 991px){
  .lppm-feature-strip{ margin: 0 15px; border-radius: 10px; }
}

.lppm-feature-row{
  display: flex;
  flex-wrap: wrap;
}
.lppm-feature-item{
  flex: 1 1 20%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 30px 22px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.lppm-feature-item:last-child{ border-right: none; }
.lppm-feature-item i{
  font-size: 26px;
  color: var(--lppm-green);
  flex-shrink: 0;
  margin-top: 2px;
}
.lppm-feature-item h5{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin: 0 0 4px 0;
}
.lppm-feature-item p{
  font-size: 12.5px;
  color: var(--lppm-text-muted);
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 991px){
  .lppm-feature-item{ flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 576px){
  .lppm-feature-item{ flex: 1 1 100%; }
}

/* ---------------------------------------------------------------------
   INFO / ADDRESS STRIP
   --------------------------------------------------------------------- */
.lppm-info-strip{
  background: var(--lppm-dark-deep);
  padding: 22px 24px;
}
.lppm-info-strip .lppm-info-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.lppm-info-address{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
}
.lppm-info-address i{ color: var(--lppm-green); font-size: 20px; margin-top: 3px; }
.lppm-info-address strong{ font-family:"Montserrat", sans-serif; font-size: 14px; display:block; }
.lppm-info-address span{ color: var(--lppm-text-muted); font-size: 12.5px; }
.lppm-info-links{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.lppm-info-links a{
  color: #d7dadc;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: .25s;
}
.lppm-info-links a:hover{ color: var(--lppm-green); }

/* =====================================================================
   Konten di bawah hero (Profil, Berita, Penghargaan, Kontak)
   Supaya senada dengan header/hero yang baru.
   ===================================================================== */

/* rhythm antar section */
#about, #services, #contact{ padding: 70px 0; }
#clients{ padding: 70px 0; background: #f6f8f7; }
#services{ background: #fff; }
#contact.section-bg{ background: #f6f8f7; }

/* section header: judul rapi + garis bawah hijau */
.section-header h3{
  font-family: "Montserrat", sans-serif;
  color: var(--lppm-dark);
  letter-spacing: .5px;
}
.section-header h3::after{ background: var(--lppm-green); }
.section-header p{
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #6d7478;
}

/* profil video */
#about .video-container video,
#about .video-container > video{
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}

/* misi / target / tujuan cards */
#about .about-col{
  background: #fff;
  border-radius: 14px;
  padding-bottom: 20px;
  box-shadow: 0 6px 24px rgba(20,25,28,.08);
  transition: transform .3s, box-shadow .3s;
}
#about .about-col:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(20,25,28,.14);
}
#about .about-col .img{
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
#about .about-col .icon{
  background: var(--lppm-green);
}
#about .about-col:hover .icon{
  background: var(--lppm-green-dark);
}
#about .about-col h2.title a{
  color: var(--lppm-dark);
}
#about .about-col:hover h2.title a{
  color: var(--lppm-green-dark);
}

/* berita cards */
#clients .card{
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(20,25,28,.08);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
#clients .card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(20,25,28,.14);
}
#clients .card img{
  height: 180px;
  object-fit: cover;
  width: 100%;
}
#clients .card-title{
  font-family: "Montserrat", sans-serif;
  color: var(--lppm-dark);
  font-size: 16px;
}
#clients .card-text{
  color: #6d7478;
  font-size: 13.5px;
}

/* unify all brand buttons (Baca Selengkapnya, dsb) with the hero pill button */
.btn-success,
#clients .btn-success{
  background: var(--lppm-green) !important;
  border-color: var(--lppm-green) !important;
  border-radius: 30px;
  padding: 8px 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #10331f !important;
  transition: .3s;
}
.btn-success:hover,
#clients .btn-success:hover{
  background: var(--lppm-green-dark) !important;
  border-color: var(--lppm-green-dark) !important;
  color: #fff !important;
}

/* kontak: ikon jadi lingkaran hijau senada feature strip */
#contact .contact-phone,
#contact .contact-email,
#contact .contact-address{
  background: #fff;
  border-radius: 14px;
  padding: 34px 20px;
  box-shadow: 0 6px 22px rgba(20,25,28,.08);
  transition: transform .3s, box-shadow .3s;
}
#contact .contact-phone:hover,
#contact .contact-email:hover,
#contact .contact-address:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(20,25,28,.14);
}
#contact .contact-info i{
  background: var(--lppm-green);
  color: #10331f;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px auto;
}
#contact .contact-info h3{
  font-family: "Montserrat", sans-serif;
  color: var(--lppm-dark);
  font-size: 16px;
}
#contact .contact-info a{ color: #6d7478; }
#contact .contact-info a:hover{ color: var(--lppm-green-dark); }
#contact .form iframe{
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(20,25,28,.08);
}

/* =====================================================================
   Halaman dalam (pakai headerlain.php): breadcrumbs + konten
   ===================================================================== */

/* breadcrumbs: dorong ke bawah header yang lebih tinggi (topbar + nav) */
.breadcrumbs{
  margin-top: 122px !important;
  background: var(--lppm-dark);
  padding: 34px 0;
  position: relative;
}
.breadcrumbs::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--lppm-green);
}
.breadcrumbs h2{
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: .3px;
}
.breadcrumbs ol li,
.breadcrumbs ol li a{
  color: #cfd3d6;
}
.breadcrumbs ol li a{
  text-decoration: none;
  transition: color .25s;
}
.breadcrumbs ol li a:hover{
  color: var(--lppm-green);
}
.breadcrumbs ol li:last-child{
  color: #fff;
  font-weight: 600;
}
.breadcrumbs ol li+li::before{
  color: #7d8388;
}
@media (max-width: 576px){
  .breadcrumbs{ margin-top: 84px !important; }
}

/* blog / sambutan entry content */
.blog .entry{
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(20,25,28,.08);
  padding: 40px;
  margin-bottom: 30px;
}
.blog .entry-content p{
  color: #4a5055;
  line-height: 1.85;
  font-size: 15.5px;
}
.blog .entry-content img{
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(20,25,28,.12);
}
.blog .entry-content b{
  color: var(--lppm-dark);
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 576px){
  .blog .entry{ padding: 22px; }
}

/* =====================================================================
   Katalog Buku (katalogbuku.php)
   ===================================================================== */
#jurnal-list,
#jurnal-list + .row{
  margin-top: 10px;
}
#jurnal-list .card,
#jurnal-list + .row .card{
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(20,25,28,.08);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#jurnal-list .card:hover,
#jurnal-list + .row .card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(20,25,28,.16);
}

/* cover: seragamkan tinggi & crop rapi walau ukuran gambar asli beda-beda */
#jurnal-list .card-img-top,
#jurnal-list + .row .card-img-top{
  height: 260px;
  object-fit: cover;
  object-position: top center;
}

#jurnal-list .card-body,
#jurnal-list + .row .card-body{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

#jurnal-list .card-title,
#jurnal-list + .row .card-title{
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 12px;
}
#jurnal-list .card-title a,
#jurnal-list + .row .card-title a{
  color: var(--lppm-dark) !important;
  transition: color .25s;
}
#jurnal-list .card-title a:hover,
#jurnal-list + .row .card-title a:hover{
  color: var(--lppm-green-dark) !important;
}

/* deskripsi singkat (kalau ada) */
#jurnal-list .card-body > p[style*="font-size: 11px"],
#jurnal-list + .row .card-body > p[style*="font-size: 11px"]{
  color: #6d7478 !important;
  font-size: 12.5px !important;
  line-height: 1.6;
  text-align: left !important;
  margin-bottom: 14px;
}

/* baris penulis: selalu nempel di bawah kartu, meski panjang deskripsi beda-beda */
#jurnal-list .card-body > p:last-of-type,
#jurnal-list + .row .card-body > p:last-of-type{
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,.1);
  text-align: left !important;
  font-size: 12.5px;
  color: var(--lppm-dark);
  line-height: 1.6;
}
#jurnal-list .card-body > p:last-of-type b,
#jurnal-list + .row .card-body > p:last-of-type b{
  color: var(--lppm-dark);
}

/* =====================================================================
   Detail Buku (detilkatalogbuku*.php)
   ===================================================================== */
#portfolio-details .portfolio-details{
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 22px rgba(20,25,28,.1);
  text-align: center;
}
#portfolio-details .portfolio-details img.card-img-top{
  border-radius: 10px;
  width: 100%;
  height: auto;
  box-shadow: 0 6px 18px rgba(20,25,28,.14);
}

#portfolio-details h3{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--lppm-dark);
  margin-bottom: 18px;
}

#portfolio-details ul{
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(20,25,28,.08);
}
#portfolio-details ul li{
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 14px;
  color: #4a5055;
}
#portfolio-details ul li:last-child{
  border-bottom: none;
}
#portfolio-details ul li strong{
  color: var(--lppm-dark);
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  min-width: 90px;
}
#portfolio-details ul li a{
  color: var(--lppm-green-dark);
}

.portfolio-description{
  background: #fff;
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: 0 6px 22px rgba(20,25,28,.08);
}
.portfolio-description h2{
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--lppm-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--lppm-green);
  display: inline-block;
}
.portfolio-description p{
  color: #4a5055;
  line-height: 1.85;
  font-size: 15px;
}

/* =====================================================================
   Berita (berita.php, detilberita.php)
   ===================================================================== */

/* gambar utama artikel */
.blog .entry .entry-img{
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.blog .entry .entry-img img{
  width: 100%;
  height: auto;
  display: block;
}

.blog .entry .entry-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--lppm-dark);
  font-size: 26px;
  line-height: 1.35;
}
.blog .entry .entry-title a{ color: var(--lppm-dark); }
.blog .entry .entry-title a:hover{ color: var(--lppm-green-dark); }

.blog .entry .entry-meta{
  margin-bottom: 22px;
}
.blog .entry .entry-meta ul li{
  color: #8a9095;
  font-size: 13.5px;
}
.blog .entry .entry-meta i{
  background: var(--lppm-green);
  color: #10331f;
}

.blog .entry .entry-content p{
  color: #4a5055;
  line-height: 1.85;
  font-size: 15.5px;
  white-space: pre-line;
}

/* sidebar "Berita Lainnya" */
.blog .sidebar{
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 6px 22px rgba(20,25,28,.08);
}
.blog .sidebar .sidebar-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--lppm-dark);
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 3px solid var(--lppm-green);
  display: inline-block;
}
.blog .sidebar .recent-posts .post-item{
  position: relative;
  min-height: 70px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.blog .sidebar .recent-posts .post-item:last-child{
  border-bottom: none;
}
.blog .sidebar .recent-posts .post-item::after{
  content: "";
  display: block;
  clear: both;
}
.blog .sidebar .recent-posts .post-item img{
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
  float: left;
  margin-right: 14px;
}
.blog .sidebar .recent-posts h4{
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  line-height: 1.4;
  margin: 0 0 6px 0;
  margin-left: 82px;
}
.blog .sidebar .recent-posts h4 a{ color: var(--lppm-dark); }
.blog .sidebar .recent-posts h4 a:hover{ color: var(--lppm-green-dark); }
.blog .sidebar .recent-posts time{
  display: block;
  margin-left: 82px;
  color: #9aa0a4;
  font-size: 11.5px;
}

/* =====================================================================
   Pagination "Berita Lainnya" (berita.php)
   ===================================================================== */
.lppm-pagination{
  margin-top: 22px;
}
.lppm-pagination ul{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lppm-pagination ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  border-radius: 8px;
  background: #f2f4f3;
  color: var(--lppm-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: .25s;
}
.lppm-pagination ul li a:hover{
  background: var(--lppm-green);
  color: #10331f;
}
.lppm-pagination ul li a.active{
  background: var(--lppm-green);
  color: #10331f;
  pointer-events: none;
}
.lppm-pagination ul li a.lppm-page-arrow{
  background: transparent;
  color: var(--lppm-dark);
  font-size: 14px;
}
.lppm-pagination ul li a.lppm-page-arrow:hover{
  background: #f2f4f3;
  color: var(--lppm-green-dark);
}
.lppm-pagination ul li a.disabled{
  opacity: .35;
  pointer-events: none;
}

/* =====================================================================
   Fix: menu mobile (navbar-mobile) ikut jadi putih transparan karena
   ketiban rule warna nav desktop (#header .navbar > ul > li > a).
   Kembalikan jadi teks gelap di atas panel putih mobile.
   ===================================================================== */
#header .navbar.navbar-mobile{
  background: rgba(26, 26, 26, 0.9);
}
#header .navbar.navbar-mobile > ul{
  background-color: #fff;
}
#header .navbar.navbar-mobile > ul > li > a,
#header .navbar.navbar-mobile > ul > li > a:focus{
  color: #333333 !important;
  font-size: 15px;
  padding: 10px 20px;
}
#header .navbar.navbar-mobile > ul > li > a:hover,
#header .navbar.navbar-mobile > ul > li.active > a,
#header .navbar.navbar-mobile > ul > li.active > a:focus,
#header .navbar.navbar-mobile > ul > li:hover > a{
  color: var(--lppm-green-dark) !important;
}
#header .navbar.navbar-mobile > ul > li.active > a::after,
#header .navbar.navbar-mobile > ul > li > a.active::after{
  display: none; /* underline hijau tidak relevan di layout list mobile */
}
#header .navbar.navbar-mobile .dropdown ul{
  background: #f8f9f8;
  box-shadow: none;
  border-radius: 8px;
}
#header .navbar.navbar-mobile .dropdown ul a,
#header .navbar.navbar-mobile .dropdown ul a:focus{
  color: #3a3f43 !important;
}
#header .navbar.navbar-mobile .dropdown ul a:hover,
#header .navbar.navbar-mobile .dropdown ul li:hover > a{
  color: var(--lppm-green-dark) !important;
}
#header .navbar.navbar-mobile .mobile-nav-toggle{
  color: #fff;
}
