/* ==========================================================================
   WARTA KONSTRUKSI - MASTER STYLESHEET (FINAL)
   Digunakan untuk: Homepage, Single Post, Category, dan halaman lainnya
   Palet warna: Hitam (#1a1a1a) + Orange (#ff8c42) + Abu-abu cerah
   ========================================================================== */


/* ==========================================================================
   1. ROOT VARIABLES & RESET
   ========================================================================== */
:root{
  --wk-orange:#ff8c42;
  --wk-orange-light:#ffa766;
  --wk-orange-dark:#e67520;
  --wk-orange-glow:rgba(255,140,66,.18);
  --wk-black:#1a1a1a;
  --wk-black-soft:#333333;
  --wk-gray-bg:#f4f4f6;
  --wk-gray-top:#fafafa;
  --wk-muted:#6c757d;
  --wk-text:#212529;
  --wk-border:#eee;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--wk-text);
  background:#fff;
}

h1,h2,h3,h4,h5,.navbar-brand{
  font-family:'Oswald',sans-serif;
  letter-spacing:.3px;
}
section {
	margin-bottom: 25px;
}

/* ==========================================================================
   2. GLOBAL LINK HOVER
   ========================================================================== */
a{
  color:inherit;
  text-decoration:none;
  transition:color .25s ease;
}
a:hover{color:var(--wk-orange)}


/* ==========================================================================
   3. TOP BAR (putih abu-abu cerah)
   ========================================================================== */
.wk-topbar{
  background:var(--wk-gray-top);
  border-bottom:1px solid #e5e5e5;
  padding:.75rem 0;
}
.wk-topbar .logo-top img{
  max-height:48px;
  width:auto;
  display:block;
}
.wk-topbar .topbar-right{
  display:flex;
  align-items:center;
  gap:.6rem;
  justify-content:flex-end;
}

/* Search box compact */
.wk-topbar .search-box{
  background:#fff;
  border:1px solid #ddd;
  border-radius:30px;
  padding:.25rem .3rem .25rem .9rem;
  display:flex;
  align-items:center;
  transition:border-color .25s,width .3s ease;
  width:200px;
}
.wk-topbar .search-box:focus-within{
  border-color:var(--wk-orange);
  box-shadow:0 0 0 3px var(--wk-orange-glow);
  width:240px;
}
.wk-topbar .search-box input{
  border:0;outline:0;background:transparent;
  flex:1;font-size:.82rem;padding:.2rem 0;min-width:0;
}
.wk-topbar .search-box button{
  background:var(--wk-orange);color:#fff;border:0;
  width:30px;height:30px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transition:background .25s,transform .2s;flex-shrink:0;
  font-size:.8rem;cursor:pointer;
}
.wk-topbar .search-box button:hover{
  background:var(--wk-orange-dark);
  transform:scale(1.08);
}

/* Login button */
.wk-topbar .btn-login{
  background:var(--wk-black);color:#fff;border:0;
  padding:.4rem 1rem;border-radius:30px;font-weight:600;
  font-size:.8rem;text-decoration:none;
  transition:background .25s,transform .2s;
  display:inline-flex;align-items:center;gap:.35rem;
  white-space:nowrap;
}
.wk-topbar .btn-login:hover{
  background:var(--wk-orange);color:#fff;
  transform:translateY(-1px);
}


/* ==========================================================================
   4. AD SLOT TOP — AUTO-HIDE ENHANCED
   ========================================================================== */
.wk-ad-top{
}
.wk-ad-top.ad-empty{
  opacity:0;
  max-height:0;
  padding:0;
  margin:0;
  border:0;
  pointer-events:none;
}
.wk-ad-top .ad-placeholder{
  width:100%;max-width:728px;
  background:#fff;border:1px dashed #ccc;border-radius:6px;
  display:flex;align-items:center;justify-content:center;
  color:#999;font-size:.85rem;
  padding:1rem;
}


/* ==========================================================================
   5. NAVIGATION (hitam full-width, sticky) + ACTIVE STATE
   ========================================================================== */
.wk-nav{
  background:var(--wk-black);
  position:sticky;top:0;z-index:1030;
  box-shadow:0 2px 10px rgba(0,0,0,.2);
}
.wk-nav .navbar-brand{
  color:#fff;font-weight:700;font-size:1.1rem;padding:.7rem 0;
}
.wk-nav .navbar-brand:hover{color:var(--wk-orange)}
.wk-nav .navbar-brand img{
  height:32px;width:auto;filter:brightness(1.1);
  transition:transform .3s ease,filter .3s;
}
.wk-nav .navbar-brand:hover img{
  transform:scale(1.06);
  filter:brightness(1.4) drop-shadow(0 0 6px var(--wk-orange));
}

/* Nav links */
.wk-nav .nav-link{
  color:rgba(255,255,255,.75) !important;
  font-weight:600;
  text-transform:uppercase;
  font-size:.8rem;
  letter-spacing:.6px;
  padding:.95rem 1.1rem !important;
  position:relative;
  transition:color .3s ease,background .3s ease;
}

/* Underline gradient (hover & active) */
.wk-nav .nav-link::after{
  content:'';
  position:absolute;
  bottom:0;left:50%;
  width:0;height:3px;
  background:linear-gradient(90deg,var(--wk-orange),var(--wk-orange-light));
  border-radius:3px 3px 0 0;
  transition:width .3s ease,left .3s ease;
}

/* HOVER state */
.wk-nav .nav-link:hover{
  color:#fff !important;
  background:rgba(255,255,255,.04);
}
.wk-nav .nav-link:hover::after{
  width:100%;left:0;
}

/* ============ ACTIVE STATE ============ */
.wk-nav .nav-link.active{
  color:#fff !important;
  background:rgba(255,140,66,.12);
}
.wk-nav .nav-link.active::after{
  width:100%;left:0;
  height:3px;
  background:linear-gradient(90deg,var(--wk-orange),var(--wk-orange-light));
  box-shadow:0 0 8px rgba(255,140,66,.5);
}
/* Titik indikator di atas link active */
.wk-nav .nav-link.active::before{
  content:'';
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  width:6px;height:6px;
  background:var(--wk-orange);
  border-radius:50%;
  box-shadow:0 0 6px var(--wk-orange);
}

/* Logo home link di nav */
.nav-logo-link{
  display:flex;align-items:center;
  padding:.6rem 1.1rem !important;
  position:relative;
}
.nav-logo-link::after{display:none !important}
.nav-logo-link::before{display:none !important}
.nav-logo-link img{
  height:28px;width:auto;
  transition:transform .3s ease,filter .3s;
}
.nav-logo-link:hover img{
  transform:scale(1.12) rotate(-3deg);
  filter:drop-shadow(0 0 8px var(--wk-orange));
}

/* Toggler */
.wk-nav .navbar-toggler{
  border-color:rgba(255,255,255,.2);
  padding:.4rem .6rem;
  transition:border-color .2s;
}
.wk-nav .navbar-toggler:hover{border-color:var(--wk-orange)}
.wk-nav .navbar-toggler-icon{
  background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,140,66,0.9)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* ==========================================================================
   6. BREADCRUMB (single post / category)
   ========================================================================== */
.wk-breadcrumb{
  background:var(--wk-gray-bg);
  padding:.75rem 0;
  border-bottom:1px solid #e5e5e5;
  font-size:.82rem;
}
.wk-breadcrumb .breadcrumb{
  background:transparent;margin:0;padding:0;
}
.wk-breadcrumb .breadcrumb-item a{
  color:var(--wk-muted);font-weight:500;
}
.wk-breadcrumb .breadcrumb-item a:hover{color:var(--wk-orange)}
.wk-breadcrumb .breadcrumb-item.active{
  color:var(--wk-black);font-weight:600;
}
.wk-breadcrumb .breadcrumb-item+.breadcrumb-item::before{
  color:var(--wk-muted);content:"›";
}


/* ==========================================================================
   7. SECTION TITLE (reusable)
   ========================================================================== */
.wk-section-title{
  border-left:4px solid var(--wk-orange);
  padding-left:.85rem;
  margin-top:2.5rem;
  margin-bottom:1.5rem;
}
.wk-section-title:first-child{margin-top:0}
.wk-section-title h2{
  font-size:1.4rem;margin:0;font-weight:700;
  color:var(--wk-black);
  text-transform:uppercase;
  letter-spacing:.5px;
  line-height:1.3;
}
.wk-section-title .btn-more{
  color:var(--wk-orange);
  font-weight:600;
  font-size:.82rem;
  text-decoration:none;
  text-transform:uppercase;
  transition:color .25s,gap .25s;
  display:inline-flex;align-items:center;gap:.25rem;
}
.wk-section-title .btn-more:hover{
  color:var(--wk-orange-dark);
  gap:.5rem;
}


/* ==========================================================================
   8. HERO SLIDER (FULL-WIDTH di atas kolom — Homepage)
   ========================================================================== */
.wk-hero-wrap{
  padding:1.5rem 0;
}
.wk-hero-wrap .wk-section-title{
  margin-top:0;
  margin-bottom:1rem;
  border-left-color:var(--wk-orange);
}
.wk-hero-wrap .wk-section-title h2{
  color:#000;
}
.wk-hero-wrap .btn-more{
  color:var(--wk-orange-light);
}
.wk-hero-wrap .btn-more:hover{
  color:#fff;
}

/* Slider container */
.hero-slide{
  position:relative;
  height:500px;
  border-radius:8px;
  overflow:hidden;
  background:#000;
}

/* Bootstrap carousel inner full height */
.hero-slide .carousel-inner{
  height:100%;
  width:100%;
}

/* Carousel item full height */
.hero-slide .carousel-item{
  height:100%;
  position:relative;
  background:#000;
}

/* Link wrapper full size */
.hero-slide .carousel-item > a{
  display:block;
  width:100%;
  height:100%;
  position:relative;
}

/* Gambar fill container */
.hero-slide .carousel-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  background:#000;
}

/* Overlay gelap untuk caption */
.hero-slide .carousel-item::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:60%;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.4) 40%,
    rgba(0,0,0,.85) 100%
  );
  pointer-events:none;
  z-index:1;
}

/* Caption */
.hero-caption{
  position:absolute;
  bottom:0;left:0;right:0;
  color:#fff;
  padding:3rem 2rem 1.75rem;
  z-index:2;
}
.hero-caption .badge-headline{
  background:var(--wk-orange);
  color:#fff;
  font-weight:600;
  padding:.3rem .7rem;
  border-radius:3px;
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.5px;
  display:inline-block;
  margin-bottom:.75rem;
}
.hero-caption h1,
.hero-caption h2{
  font-size:2rem;font-weight:700;
  margin-bottom:.6rem;line-height:1.25;
  text-shadow:0 2px 8px rgba(0,0,0,.5);
}
.hero-caption h1 a,
.hero-caption h2 a{
  color:#fff;text-decoration:none;transition:color .25s;
}
.hero-caption h1 a:hover,
.hero-caption h2 a:hover{
  color:var(--wk-orange);
}
.hero-caption .meta-date{
  font-size:.85rem;color:#fff;
  display:flex;align-items:center;gap:.4rem;
  text-shadow:0 1px 4px rgba(0,0,0,.6);
}
.hero-caption .meta-date i{color:var(--wk-orange)}

/* Controls */
.hero-slide .carousel-control-prev,
.hero-slide .carousel-control-next{
  width:50px;height:50px;
  background:rgba(0,0,0,.6);
  border-radius:50%;
  top:50%;transform:translateY(-50%);
  opacity:.8;margin:0 1rem;
  transition:opacity .25s,background .25s;
  z-index:3;
}
.hero-slide .carousel-control-prev:hover,
.hero-slide .carousel-control-next:hover{
  opacity:1;background:var(--wk-orange);
}

/* Indicators */
.hero-slide .carousel-indicators{
  z-index:3;
}
.hero-slide .carousel-indicators button{
  background:#fff;border:0;width:10px;height:10px;border-radius:50%;
  opacity:.5;margin:0 4px;
  transition:opacity .25s,background .25s,transform .2s;
}
.hero-slide .carousel-indicators button:hover{opacity:.8;transform:scale(1.2)}
.hero-slide .carousel-indicators button.active{
  opacity:1;background:var(--wk-orange);
}


/* ==========================================================================
   9. NEWS LIST (horizontal) — semua halaman
   ========================================================================== */
.news-list-item{
  display:flex;gap:1rem;
  padding:.9rem 0;
  border-bottom:1px solid var(--wk-border);
  text-decoration:none;color:inherit;
  transition:background .25s,padding-left .25s;
}
.news-list-item:hover{
  background:var(--wk-gray-bg);
  padding-left:.5rem;
  color:inherit;
}
.news-list-item img{
  width:130px;height:88px;object-fit:cover;
  border-radius:6px;flex-shrink:0;
  transition:transform .3s;
}
.news-list-item:hover img{transform:scale(1.04)}
.news-list-item .content{flex:1;min-width:0}
.news-list-item h3{
  font-size:.95rem;font-weight:600;line-height:1.4;
  margin:0 0 .4rem;color:var(--wk-black);
  transition:color .25s;
  font-family:'Oswald',sans-serif;
}
.news-list-item:hover h3{color:var(--wk-orange)}
.news-list-item .meta{font-size:.78rem;color:var(--wk-muted)}


/* ==========================================================================
   10. NEWS CARD (grid) — semua halaman
   ========================================================================== */
.news-card{
  background:#fff;
  border:1px solid var(--wk-border);
  border-radius:8px;
  overflow:hidden;
  transition:transform .3s,box-shadow .3s,border-color .3s;
  height:100%;
  display:flex;flex-direction:column;
}
.news-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 32px rgba(0,0,0,.1);
  border-color:var(--wk-orange);
}
.news-card img{
  width:100%;height:180px;object-fit:cover;
  transition:transform .4s;
}
.news-card:hover img{transform:scale(1.06)}
.news-card .card-img-wrap{overflow:hidden}
.news-card .card-body{padding:1rem;flex:1;display:flex;flex-direction:column}
.news-card .card-title{
  font-size:.98rem;font-weight:600;line-height:1.4;
  margin-bottom:.5rem;flex:1;
  font-family:'Oswald',sans-serif;
}
.news-card .card-title a{
  color:var(--wk-black);text-decoration:none;transition:color .25s;
}
.news-card .card-title a:hover{color:var(--wk-orange)}
.news-card .meta{
  font-size:.78rem;color:var(--wk-muted);
  display:flex;align-items:center;gap:.35rem;
}
.news-card .meta i{color:var(--wk-orange)}


/* ==========================================================================
   11. VIDEO WRAP — semua halaman
   ========================================================================== */
.video-wrap{
  position:relative;
  padding-bottom:56.25%;
  height:0;overflow:hidden;
  border-radius:8px;
  background:#000;
}
.video-wrap iframe{
  position:absolute;top:0;left:0;
  width:100%;height:100%;border:0;
}


/* ==========================================================================
   12. SIDEBAR — semua halaman (dengan popular news + tanggal)
   ========================================================================== */
.sidebar-box{
  background:#fff;
  border:1px solid var(--wk-border);
  border-radius:8px;
  padding:1.25rem;
  margin-bottom:1.25rem;
  transition:border-color .3s;
}
.sidebar-box:hover{border-color:#ddd}
.sidebar-box h3{
  font-size:1.1rem;
  border-bottom:2px solid var(--wk-orange);
  padding-bottom:.6rem;
  margin-bottom:1rem;
  color:var(--wk-black);
  text-transform:uppercase;
  letter-spacing:.5px;
}
.sidebar-box a{transition:color .25s,padding-left .25s}
.sidebar-box a:hover{padding-left:4px}

/* Popular news */
.popular-item{
  display:flex;
  gap:.85rem;
  padding:.65rem 0;
  border-bottom:1px solid #f0f0f0;
  transition:background .2s;
}
.popular-item:hover{background:var(--wk-gray-bg)}
.popular-item:last-child{border-bottom:0}
.popular-item .num{
  font-family:'Oswald',sans-serif;
  font-size:1.7rem;
  color:var(--wk-orange);
  font-weight:700;
  line-height:1;
  min-width:30px;
  transition:transform .25s;
}
.popular-item:hover .num{transform:scale(1.1)}
.popular-item h4{
  font-size:.88rem;
  margin:0 0 .25rem;
  font-weight:600;
  line-height:1.35;
}
.popular-item h4 a{color:var(--wk-black);text-decoration:none;transition:color .25s}
.popular-item h4 a:hover{color:var(--wk-orange)}

/* Tanggal popular news */
.popular-item .meta{
  font-size:.72rem;
  color:var(--wk-muted);
  display:flex;
  align-items:center;
  gap:.3rem;
  margin-top:.2rem;
}
.popular-item .meta i{
  color:var(--wk-orange);
  font-size:.7rem;
}

/* Slot iklan sidebar — ENHANCED AUTO-HIDE */
.sidebar-ad {}
/* Ragam warta */
.ragam-item{
  display:block;
  padding:.7rem 0;
  border-bottom:1px solid #f0f0f0;
  text-decoration:none;
  color:var(--wk-black);
  transition:color .25s,padding-left .25s;
}
.ragam-item:last-child{border-bottom:0}
.ragam-item:hover{color:var(--wk-orange);padding-left:6px}
.ragam-item h5{
  font-size:.88rem;font-weight:600;line-height:1.35;margin:0 0 .3rem;
}
.ragam-item .meta{
  font-size:.75rem;color:var(--wk-muted);
  display:flex;align-items:center;gap:.3rem;
}
.ragam-item .meta i{color:var(--wk-orange);font-size:.7rem}


/* ==========================================================================
   13. FOOTER — semua halaman
   ========================================================================== */
footer{
  background:var(--wk-black);
  color:#cbd5e1;
  padding:3rem 0 1rem;
  margin-top:3rem;
}
footer a{
  color:#cbd5e1;text-decoration:none;
  transition:color .25s,padding-left .25s;
}
footer a:hover{color:var(--wk-orange);padding-left:3px}
footer h5{
  color:#fff;font-size:1rem;
  text-transform:uppercase;letter-spacing:.5px;
  margin-bottom:1rem;
}

.footer-logo-wrap{
  background:var(--wk-black-soft);
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  padding:.75rem 1.25rem;
  display:inline-block;
  margin-bottom:1rem;
  transition:border-color .3s;
}
.footer-logo-wrap:hover{border-color:var(--wk-orange)}
.footer-logo-wrap img{
  max-height:50px;width:auto;display:block;
}

.social-icons a{
  display:inline-flex;width:40px;height:40px;
  align-items:center;justify-content:center;
  background:rgba(255,255,255,.08);
  border-radius:50%;
  margin-right:.4rem;
  transition:all .3s;
}
.social-icons a:hover{
  background:var(--wk-orange);color:#fff;
  transform:translateY(-3px);
  box-shadow:0 4px 12px rgba(255,140,66,.35);
  padding-left:0;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:1.25rem;margin-top:2rem;
  font-size:.85rem;
}


/* ==========================================================================
   14. CATEGORY HEADER (halaman kategori/tag/search)
   ========================================================================== */
#custom-search-input {
	margin-bottom: 25px;
}
.category-header{
  background:linear-gradient(135deg,var(--wk-black) 0%,var(--wk-black-soft) 100%);
  color:#fff;
  padding:2.5rem 0;
  margin-bottom:2rem;
}
.category-header h1{
  font-family:'Oswald',sans-serif;
  font-size:2.5rem;
  font-weight:700;
  margin:0 0 .5rem;
  text-transform:uppercase;
  letter-spacing:1px;
}
.category-header .category-desc{
  font-size:1.05rem;
  color:#cbd5e1;
  margin:0;
  line-height:1.6;
  max-width:700px;
}
.category-header .category-count{
  display:inline-block;
  background:var(--wk-orange);
  color:#fff;
  font-family:'Oswald',sans-serif;
  font-weight:600;
  font-size:.85rem;
  padding:.35rem .85rem;
  border-radius:30px;
  margin-top:1rem;
  letter-spacing:.5px;
}
.category-header .breadcrumb{
  background:transparent;
  padding:0;
  margin:0 0 1rem;
  font-size:.85rem;
}
.category-header .breadcrumb-item a{
  color:var(--wk-orange-light);
}
.category-header .breadcrumb-item a:hover{
  color:#fff;
}
.category-header .breadcrumb-item.active{
  color:#fff;
}
.category-header .breadcrumb-item+.breadcrumb-item::before{
  color:rgba(255,255,255,.5);
  content:"›";
}


/* ==========================================================================
   15. CATEGORY FILTER/SORT BAR
   ========================================================================== */
.category-filter{
  background:var(--wk-gray-bg);
  padding:1rem 1.25rem;
  border-radius:8px;
  margin-bottom:1.5rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem;
}
.category-filter .filter-info{
  font-size:.9rem;
  color:var(--wk-muted);
}
.category-filter .filter-info strong{
  color:var(--wk-black);
}
.category-filter .sort-select{
  padding:.4rem .75rem;
  border:1px solid var(--wk-border);
  border-radius:6px;
  font-size:.85rem;
  background:#fff;
  cursor:pointer;
  transition:border-color .25s;
}
.category-filter .sort-select:focus{
  outline:0;
  border-color:var(--wk-orange);
  box-shadow:0 0 0 3px var(--wk-orange-glow);
}


/* ==========================================================================
   16. PAGINATION
   ========================================================================== */
.page-info{
  font-size:.85rem;
  color:var(--wk-muted);
}
.page-info strong{
  color:var(--wk-black);
  font-weight:700;
}

.page-jump{
  display:flex;
  align-items:center;
}
.page-jump label{
  font-size:.85rem;
  color:var(--wk-muted);
  margin-bottom:0;
}
.page-jump select{
  border:1px solid var(--wk-border);
  border-radius:6px;
  padding:.3rem .6rem;
  font-size:.82rem;
  background:#fff;
  cursor:pointer;
  transition:border-color .25s;
}
.page-jump select:focus{
  outline:0;
  border-color:var(--wk-orange);
  box-shadow:0 0 0 3px var(--wk-orange-glow);
}

.pagination-wk{
  gap:.35rem;
  margin:1rem 0;
}
.pagination-wk .page-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  height:40px;
  padding:0 .75rem;
  border:1px solid var(--wk-border);
  border-radius:6px;
  font-size:.9rem;
  font-weight:500;
  color:var(--wk-black);
  background:#fff;
  text-decoration:none;
  transition:all .25s ease;
}
.pagination-wk .page-link:hover{
  background:var(--wk-gray-bg);
  border-color:var(--wk-orange);
  color:var(--wk-orange);
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(255,140,66,.15);
}

.pagination-wk .page-item.active .page-link{
  background:var(--wk-orange);
  border-color:var(--wk-orange);
  color:#fff;
  font-weight:700;
  box-shadow:0 4px 12px rgba(255,140,66,.35);
  cursor:default;
}
.pagination-wk .page-item.active .page-link:hover{
  background:var(--wk-orange);
  color:#fff;
  transform:none;
}

.pagination-wk .page-item.disabled .page-link{
  color:var(--wk-muted);
  background:var(--wk-gray-bg);
  border-color:var(--wk-border);
  cursor:not-allowed;
  opacity:.6;
}
.pagination-wk .page-item.disabled .page-link:hover{
  transform:none;
  box-shadow:none;
  color:var(--wk-muted);
}

.pagination-wk .page-link .bi-three-dots{
  font-size:1rem;
  letter-spacing:2px;
}

.pagination-wk .page-item:first-child .page-link,
.pagination-wk .page-item:last-child .page-link{
  padding:0 1rem;
  font-weight:600;
}


/* ==========================================================================
   17. ARTICLE HEADER + SHARE INLINE (single post)
   ========================================================================== */
.wk-article-wrap{
  margin:2rem 0;
}
#slider-artikel, .article-tags { margin-bottom: 25px; }
/* Menambahkan background gelap transparan di area caption Slider Pro */
.slider-pro .sp-layer {
    background-color: rgba(0, 0, 0, 0.6) !important; /* Hitam dengan transparansi 60% */
    padding: 15px 20px !important; /* Memberi ruang di dalam kotak agar rapi */
    border-radius: 4px !important; /* Membuat sudut kotak sedikit melengkung (opsional) */
    
    /* Memastikan teks di dalamnya berwarna putih terang */
    color: #ffffff !important; 
}

/* Pastikan semua elemen teks di dalamnya ikut berwarna putih */
.slider-pro .sp-layer h3, 
.slider-pro .sp-layer p, 
.slider-pro .sp-layer span {
    color: #ffffff !important;
    text-shadow: none !important; /* Menghapus shadow bawaan jika mengganggu */
}

.article-category{
  display:inline-block;
  background:var(--wk-orange);
  color:#fff;
  font-family:'Oswald',sans-serif;
  font-weight:600;
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:1px;
  padding:.35rem .85rem;
  border-radius:3px;
  margin-bottom:1rem;
  transition:background .25s;
}
.article-category:hover{background:var(--wk-orange-dark);color:#fff}

.article-title{
  font-family:'Oswald',sans-serif;
  font-size:2.2rem;
  font-weight:700;
  line-height:1.2;
  color:var(--wk-black);
  margin-bottom:1rem;
  letter-spacing:.3px;
}

/* Meta + Share inline */
.article-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.85rem 0;
  border-top:1px solid var(--wk-border);
  border-bottom:1px solid var(--wk-border);
  margin-bottom:1.5rem;
  font-size:.82rem;
  color:var(--wk-muted);
}

/* Kiri: author info + tanggal */
.article-meta .meta-left{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:1rem;
  flex:1;
  min-width:0;
}
.article-meta .meta-item{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
}
.article-meta .meta-item i{color:var(--wk-orange);font-size:.9rem}
.article-meta .author-avatar{
  width:36px;height:36px;
  border-radius:50%;
  background:var(--wk-orange);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:.9rem;
  margin-right:.4rem;
}
.article-meta .author-name{color:var(--wk-black);font-weight:600}
.article-meta .author-name:hover{color:var(--wk-orange)}

/* Kanan: share buttons compact */
.article-meta .meta-share{
  display:flex;
  align-items:center;
  gap:.4rem;
  flex-shrink:0;
}
.article-meta .meta-share .share-label{
  font-size:.75rem;
  color:var(--wk-muted);
  font-weight:500;
  margin-right:.25rem;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.share-btn-sm{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;height:32px;
  border-radius:50%;
  color:#fff;
  font-size:.85rem;
  transition:transform .25s,box-shadow .25s;
  text-decoration:none;
}
.share-btn-sm:hover{
  color:#fff;
  transform:translateY(-2px) scale(1.08);
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}
.share-btn-sm.fb{background:#1877f2}
.share-btn-sm.tw{background:#000}
.share-btn-sm.wa{background:#25d366}
.share-btn-sm.tg{background:#0088cc}
.share-btn-sm.cp{background:var(--wk-black);cursor:pointer;border:0}


/* ==========================================================================
   18. FEATURED IMAGE (single post)
   ========================================================================== */
.article-featured{
  margin-bottom:1.75rem;
  border-radius:8px;
  overflow:hidden;
  background:#000;
}
.article-featured img{width:100%;height:auto;display:block;transition:transform .5s}
.article-featured:hover img{transform:scale(1.02)}
.article-featured figcaption{
  padding:.65rem 1rem;
  background:var(--wk-gray-bg);
  font-size:.8rem;
  color:var(--wk-muted);
  font-style:italic;
  border-top:2px solid var(--wk-orange);
}
.article-featured figcaption i{color:var(--wk-orange);margin-right:.3rem}


/* ==========================================================================
   19. ARTICLE CONTENT / TYPOGRAPHY (single post)
   ========================================================================== */
.article-content{
  font-family:'Merriweather',Georgia,serif;
  font-size:1.02rem;
  line-height:1.8;
  color:#2c2c2c;
}
.article-content p{
  margin-bottom:1.3rem;
  text-align:justify;
  hyphens:auto;
}
.article-content p:first-of-type::first-letter{
  font-family:'Oswald',sans-serif;
  font-size:3.5rem;
  font-weight:700;
  float:left;
  line-height:.9;
  margin:.15rem .55rem 0 0;
  color:var(--wk-orange);
  text-transform:uppercase;
}
.article-content h2{
  font-family:'Oswald',sans-serif;
  font-size:1.6rem;
  font-weight:700;
  color:var(--wk-black);
  margin:2.25rem 0 1rem;
  padding-bottom:.45rem;
  border-bottom:2px solid var(--wk-orange);
  line-height:1.3;
}
.article-content h3{
  font-family:'Oswald',sans-serif;
  font-size:1.3rem;
  font-weight:700;
  color:var(--wk-black);
  margin:1.75rem 0 .85rem;
  line-height:1.3;
}
.article-content h4{
  font-family:'Oswald',sans-serif;
  font-size:1.15rem;
  font-weight:600;
  color:var(--wk-black-soft);
  margin:1.5rem 0 .75rem;
}
.article-content a{
  color:var(--wk-orange);
  text-decoration:underline;
  text-decoration-color:rgba(255,140,66,.35);
  text-underline-offset:3px;
  transition:text-decoration-color .25s;
}
.article-content a:hover{color:var(--wk-orange-dark);text-decoration-color:var(--wk-orange-dark)}
.article-content strong{color:var(--wk-black);font-weight:700}
.article-content em{font-style:italic;color:#444}

/* Blockquote */
.article-content blockquote{
  position:relative;
  margin:1.75rem 0;
  padding:1.5rem 1.75rem 1.5rem 3.5rem;
  background:var(--wk-gray-bg);
  border-left:5px solid var(--wk-orange);
  border-radius:0 8px 8px 0;
  font-size:1.1rem;
  font-style:italic;
  line-height:1.55;
  color:var(--wk-black-soft);
}
.article-content blockquote::before{
  content:'"';
  position:absolute;
  top:-10px;left:12px;
  font-family:'Oswald',sans-serif;
  font-size:4.5rem;
  color:var(--wk-orange);
  line-height:1;
  opacity:.4;
}
.article-content blockquote cite{
  display:block;
  margin-top:.65rem;
  font-size:.85rem;
  font-style:normal;
  font-weight:600;
  color:var(--wk-muted);
}
.article-content blockquote cite::before{content:'— '}

/* Lists */
.article-content ul,
.article-content ol{margin:0 0 1.4rem 1.5rem;padding:0}
.article-content li{margin-bottom:.45rem;padding-left:.25rem}
.article-content ul li::marker{color:var(--wk-orange)}
.article-content ol li::marker{color:var(--wk-orange);font-weight:700}

/* Image inside content */
.article-content figure{margin:1.75rem 0;text-align:center}
.article-content figure img{
  max-width:100%;height:auto;
  border-radius:6px;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
}
.article-content figure figcaption{
  margin-top:.65rem;
  font-size:.82rem;
  color:var(--wk-muted);
  font-style:italic;
  font-family:'Inter',sans-serif;
}

/* Table */
.article-content table{
  width:100%;
  margin:1.4rem 0;
  border-collapse:collapse;
  font-family:'Inter',sans-serif;
  font-size:.88rem;
}
.article-content table th{
  background:var(--wk-black);
  color:#fff;
  padding:.65rem .85rem;
  text-align:left;
  font-weight:600;
}
.article-content table td{
  padding:.65rem .85rem;
  border-bottom:1px solid var(--wk-border);
}
.article-content table tr:nth-child(even) td{background:var(--wk-gray-bg)}

/* Pull quote */
.pull-quote{
  margin:1.75rem 0;
  padding:1.25rem 1.5rem 1.25rem 3rem;
  background:var(--wk-black);
  color:#fff;
  font-family:'Oswald',sans-serif;
  font-size:1.25rem;
  line-height:1.4;
  font-weight:500;
  border-radius:8px;
  position:relative;
}
.pull-quote::before{
  content:'';
  position:absolute;
  top:0;left:0;
  width:5px;height:100%;
  background:var(--wk-orange);
  border-radius:8px 0 0 8px;
}
.pull-quote::after{
  content:'"';
  position:absolute;
  top:-5px;left:12px;
  font-size:3rem;
  color:var(--wk-orange);
  line-height:1;
  opacity:.5;
}


/* ==========================================================================
   20. TAGS (single post)
   ========================================================================== */
.article-tags{
  margin-top:2rem;
  padding-top:1.25rem;
  border-top:1px solid var(--wk-border);
}
.article-tags .tags-label{
  font-family:'Oswald',sans-serif;
  font-weight:600;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--wk-black);
  margin-right:.6rem;
}
.article-tags .tags-label i{color:var(--wk-orange);margin-right:.3rem}
.tag-pill{
  display:inline-block;
  background:var(--wk-gray-bg);
  color:var(--wk-black-soft);
  padding:.3rem .75rem;
  border-radius:30px;
  font-size:.78rem;
  font-weight:500;
  margin:.2rem .2rem;
  border:1px solid transparent;
  transition:all .25s;
}
.tag-pill:hover{
  background:var(--wk-orange);
  color:#fff;
  border-color:var(--wk-orange);
  transform:translateY(-2px);
}


/* ==========================================================================
   21. AUTHOR BOX (single post — di bawah tags)
   ========================================================================== */
.author-box{
  margin:2rem 0;
  padding:1.5rem;
  background:#fff;
  border:1px solid var(--wk-border);
  border-left:5px solid var(--wk-orange);
  border-radius:8px;
  display:flex;
  gap:1.25rem;
  align-items:flex-start;
}
.author-box .author-avatar-lg{
  width:70px;height:70px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--wk-orange),var(--wk-orange-dark));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Oswald',sans-serif;
  font-size:1.75rem;
  font-weight:700;
  flex-shrink:0;
}
.author-box .author-info h4{
  font-family:'Oswald',sans-serif;
  font-size:1.1rem;
  font-weight:700;
  margin:0 0 .25rem;
  color:var(--wk-black);
}
.author-box .author-info .author-role{
  font-size:.78rem;
  color:var(--wk-orange);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:.5rem;
}
.author-box .author-info p{
  font-size:.88rem;
  line-height:1.55;
  color:#555;
  margin:0 0 .65rem;
}
.author-box .author-social a{
  display:inline-flex;
  width:30px;height:30px;
  align-items:center;justify-content:center;
  background:var(--wk-gray-bg);
  color:var(--wk-black-soft);
  border-radius:50%;
  margin-right:.25rem;
  transition:all .25s;
}
.author-box .author-social a:hover{
  background:var(--wk-orange);color:#fff;transform:translateY(-2px);
}


/* ==========================================================================
   22. POST NAVIGATION Prev/Next (single post)
   ========================================================================== */
.post-nav{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.85rem;
  margin:2rem 0;
}
.post-nav-item{
  display:flex;
  align-items:center;
  gap:.85rem;
  padding:.85rem 1rem;
  background:#fff;
  border:1px solid var(--wk-border);
  border-radius:8px;
  transition:all .3s;
  text-decoration:none;
  color:inherit;
}
.post-nav-item:hover{
  border-color:var(--wk-orange);
  background:var(--wk-gray-bg);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  color:inherit;
}
.post-nav-item.next{flex-direction:row-reverse;text-align:right}
.post-nav-item .nav-arrow{
  font-size:1.4rem;
  color:var(--wk-orange);
  flex-shrink:0;
}
.post-nav-item .nav-label{
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--wk-muted);
  font-weight:600;
  margin-bottom:.15rem;
}
.post-nav-item .nav-title{
  font-family:'Oswald',sans-serif;
  font-size:.92rem;
  font-weight:600;
  line-height:1.3;
  color:var(--wk-black);
}
.post-nav-item:hover .nav-title{color:var(--wk-orange)}


/* ==========================================================================
   23. RELATED NEWS CARD (single post)
   ========================================================================== */
.related-card{
  background:#fff;
  border:1px solid var(--wk-border);
  border-radius:8px;
  overflow:hidden;
  height:100%;
  display:flex;
  flex-direction:column;
  transition:transform .3s,box-shadow .3s,border-color .3s;
}
.related-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 32px rgba(0,0,0,.1);
  border-color:var(--wk-orange);
}
.related-card .card-img-wrap{overflow:hidden;position:relative}
.related-card img{
  width:100%;height:160px;object-fit:cover;
  transition:transform .4s;
}
.related-card:hover img{transform:scale(1.06)}
.related-card .card-category{
  position:absolute;
  top:.65rem;left:.65rem;
  background:var(--wk-orange);
  color:#fff;
  font-family:'Oswald',sans-serif;
  font-size:.68rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.5px;
  padding:.2rem .55rem;
  border-radius:3px;
}
.related-card .card-body{padding:.85rem;flex:1;display:flex;flex-direction:column}
.related-card .card-title{
  font-size:.95rem;font-weight:600;line-height:1.35;
  margin-bottom:.4rem;flex:1;
  font-family:'Oswald',sans-serif;
}
.related-card .card-title a{color:var(--wk-black);text-decoration:none;transition:color .25s}
.related-card .card-title a:hover{color:var(--wk-orange)}
.related-card .meta{
  font-size:.75rem;color:var(--wk-muted);
  display:flex;align-items:center;gap:.3rem;
}
.related-card .meta i{color:var(--wk-orange)}


/* ==========================================================================
   24. RESPONSIVE (semua halaman)
   ========================================================================== */
@media(max-width:991px){
  /* Slider */
  .hero-slide{height:400px}
  .hero-caption h1{font-size:1.6rem}
  .hero-caption{padding:2.5rem 1.5rem 1.5rem}

  /* Category */
  .category-header h1{font-size:2rem}
  .category-header{padding:2rem 0}

  /* Single post */
  .article-title{font-size:1.85rem}
  .article-content{font-size:.98rem}
  .article-content p:first-of-type::first-letter{font-size:3rem}
  .article-content h2{font-size:1.4rem}
  .article-content blockquote{padding:1.25rem 1.25rem 1.25rem 3rem;font-size:1rem}
}

@media(max-width:767px){
  /* Topbar mobile */
  .wk-topbar .logo-top{
    display:flex;
    justify-content:center;
    margin-bottom:.25rem;
  }
  .wk-topbar .logo-top img{
    max-height:40px;
    max-width:200px;
    width:auto;
    object-fit:contain;
  }
  .wk-topbar .topbar-right{
    justify-content:center;
    margin-top:.5rem;
  }
  .wk-topbar .search-box{width:160px}
  .wk-topbar .search-box:focus-within{width:200px}

  /* Slider */
  .hero-slide{height:300px}
  .hero-caption h1{font-size:1.2rem}
  .hero-caption{padding:2rem 1.25rem 1.25rem}
  .hero-slide .carousel-control-prev,
  .hero-slide .carousel-control-next{width:40px;height:40px;margin:0 .5rem}

  /* News list */
  .news-list-item img{width:100px;height:72px}

  /* Category */
  .category-header h1{font-size:1.6rem}
  .category-header .category-desc{font-size:.95rem}
  .category-header{padding:1.5rem 0}
  .category-filter{flex-direction:column;align-items:flex-start}

  /* Single post */
  .wk-article-wrap{margin:1.25rem 0}
  .article-title{font-size:1.5rem}
  .article-content{font-size:.96rem;line-height:1.7}
  .article-content p:first-of-type::first-letter{font-size:2.6rem}
  .article-content blockquote{padding:1rem 1rem 1rem 2.5rem;font-size:.95rem}
  .article-content blockquote::before{font-size:3rem;left:8px}
  .article-content h2{font-size:1.25rem}
  .article-content h3{font-size:1.1rem}
  .pull-quote{font-size:1.05rem;padding:1rem 1.25rem 1rem 2.5rem}

  /* Meta + share di mobile */
  .article-meta{
    flex-direction:column;
    align-items:flex-start;
    gap:.75rem;
  }
  .article-meta .meta-left{
    width:100%;
    gap:.6rem;
    font-size:.78rem;
  }
  .article-meta .meta-share{
    width:100%;
    padding-top:.65rem;
    border-top:1px dashed var(--wk-border);
  }
  .article-meta .meta-share .share-label{
    display:none;
  }

  .article-share{flex-direction:column;align-items:flex-start}
  .author-box{flex-direction:column;align-items:center;text-align:center;padding:1.15rem}
  .author-box .author-social{text-align:center}
  .post-nav{grid-template-columns:1fr}
  .post-nav-item.next{flex-direction:row;text-align:left}
  .related-card img{height:140px}
}

@media(max-width:576px){
  /* Pagination mobile */
  .pagination-wk .page-link{
    min-width:36px;
    height:36px;
    font-size:.82rem;
    padding:0 .5rem;
  }
  .pagination-wk .page-item:first-child .page-link,
  .pagination-wk .page-item:last-child .page-link{
    padding:0 .65rem;
  }
  .page-jump{
    margin-top:.5rem;
    width:100%;
    justify-content:flex-end;
  }
}

@media(max-width:480px){
  .wk-topbar .logo-top img{max-height:34px;max-width:170px}
  .wk-topbar .search-box{width:130px}
  .wk-topbar .search-box:focus-within{width:160px}
  .wk-topbar .btn-login{padding:.35rem .75rem;font-size:.75rem}

  .hero-slide{height:260px}
  .hero-caption h1{font-size:1rem}
  .hero-caption{padding:1.5rem 1rem 1rem}

  .category-header h1{font-size:1.4rem}
  .category-header .category-desc{font-size:.9rem}

  .article-title{font-size:1.3rem}
  .article-content{font-size:.94rem}
  .article-content p:first-of-type::first-letter{font-size:2.2rem}
}