/*
Theme Name: Lensa Hukum
Theme URI: https://lensahukumnews.com
Author: Tomi Nur Rohman
Author URI: https://tominurrohman.com
Description: Tema Portal Berita & Media Siber Resmi Lensa Hukum News, Cepat, Responsif, dan Teroptimasi SEO.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: lensahukum
*/

:root {
    --primary: #0073aa;
    --primary-dark: #005177;
    --accent: #e11d48;
    --accent-orange: #ea580c;
    --accent-emerald: #059669;
    --dark: #0f172a;
    --dark-card: #1e293b;
    --dark-muted: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --bg-page: #f8fafc;
    --white: #ffffff;
    --radius: 8px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-hover: 0 10px 25px -4px rgba(15, 23, 42, 0.12);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
    max-width: 100%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--dark);
    background-color: var(--bg-page);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
    max-width: 100%;
}

/* Sat-Set Touch & Interaction Optimization */
a, button, input, select, textarea, .kp-menu li, .kp-mobile-toggle, .kp-mobile-search-btn {
    touch-action: manipulation; /* Menghilangkan delay 300ms saat tap di smartphone */
}

button:active, 
.siger-sec-more-btn:active, 
.kp-mobile-toggle:active, 
.kp-nav-arrow:active, 
.siger-back-to-top:active,
.siger-cat-lead-btn:active {
    transform: scale(0.96);
    transition: transform 0.08s ease;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.siger-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .siger-container {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .siger-container {
        padding: 0 10px;
    }
}

/* =========================================================================
   KUMPARAN-STYLE HEADER DESIGN SYSTEM (DESKTOP & MOBILE)
   ========================================================================= */

.kp-header-wrap {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.2s ease;
}

/* Fix sticky logo header overlap saat WP Admin Bar aktif */
body.admin-bar .kp-header-wrap {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .kp-header-wrap {
        top: 46px;
    }
}

/* LEVEL 1: MAIN BAR */
.kp-main-bar {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 10px 0;
}

.kp-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.kp-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kp-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #1e293b;
    padding: 4px;
    border-radius: 6px;
    line-height: 1;
}

.kp-logo-link,
.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.kp-logo-img,
.custom-logo,
.custom-logo-link img {
    height: 52px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.kp-logo-link:hover .kp-logo-img,
.custom-logo-link:hover .custom-logo,
.custom-logo-link:hover img {
    transform: scale(1.02);
}

.kp-mobile-logo-area .kp-logo-img,
.kp-mobile-logo-area .custom-logo,
.kp-mobile-logo-area img {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.kp-brand-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1;
}

.kp-brand-blue {
    color: #006699;
}

.kp-brand-red {
    color: #d90429;
}

/* CENTER: SEARCH PILL (KUMPARAN SIGNATURE) */
.kp-search-box {
    flex: 1;
    max-width: 460px;
}

.kp-search-form {
    position: relative;
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 9999px;
    padding: 0 16px;
    height: 40px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.kp-search-form:focus-within {
    background: #ffffff;
    border-color: #006699;
    box-shadow: 0 0 0 3px rgba(0, 102, 153, 0.12);
}

.kp-search-icon {
    color: #94a3b8;
    margin-right: 10px;
    flex-shrink: 0;
}

.kp-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 13.5px;
    color: #1e293b;
    font-family: inherit;
}

.kp-search-input::placeholder {
    color: #94a3b8;
}

/* RIGHT: ACTIONS */
.kp-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.kp-date-display {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
}

.kp-btn-portal {
    font-size: 12.5px;
    font-weight: 700;
    color: #d90429;
    padding: 7px 16px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 9999px;
    white-space: nowrap;
    transition: all 0.2s;
}

.kp-btn-portal:hover {
    background: #d90429;
    color: #ffffff;
    border-color: #d90429;
}

.kp-mobile-search-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #1e293b;
    padding: 6px;
    border-radius: 6px;
    line-height: 1;
}

.kp-mobile-search-dropdown {
    display: none;
    padding: 10px 0 12px 0;
    border-top: 1px solid #f1f5f9;
}

/* TOP SIGNATURE BRAND STRIPE */
.kp-top-stripe {
    height: 3.5px;
    width: 100%;
    background: linear-gradient(90deg, #d90429 0%, #ef233c 25%, #006699 65%, #f59e0b 100%);
    box-shadow: 0 1px 3px rgba(217, 4, 41, 0.2);
}

/* =========================================================================
   GAYA HEADER JNEWS (Klasik Portal Berita: Top Bar, Logo Kiri + Banner Kanan, & Menu Utama)
   ========================================================================= */
.header-style-jnews .jnews-top-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 12.5px;
    color: #64748b;
    padding: 6px 0;
}
.header-style-jnews .jnews-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-style-jnews .jnews-top-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.header-style-jnews .jnews-top-sep {
    color: #cbd5e1;
    font-size: 11px;
}
.header-style-jnews .jnews-top-tagline {
    color: #64748b;
}
.header-style-jnews .jnews-top-badge {
    background: #e2e8f0;
    color: #334155;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* JNEWS MAIN BAR (LOGO KIRI + BANNER/SEARCH KANAN) */
.header-style-jnews .jnews-main-bar {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}
.header-style-jnews .jnews-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.header-style-jnews .jnews-desktop-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}
.header-style-jnews .jnews-mobile-row {
    display: none;
}
.header-style-jnews .jnews-header-ads {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 728px;
}
.header-style-jnews .jnews-ad-wrapper {
    max-width: 728px;
    max-height: 90px;
    overflow: hidden;
    border-radius: 4px;
}
.header-style-jnews .jnews-banner-img {
    max-height: 90px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}
.header-style-jnews .jnews-search-promo-box {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 380px;
}
.header-style-jnews .jnews-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 25px;
    padding: 3px 6px 3px 16px;
    transition: all 0.25s ease;
}
.header-style-jnews .jnews-search-form:focus-within {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.12);
}
.header-style-jnews .jnews-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 13.5px;
    color: #1e293b;
    outline: none;
}
.header-style-jnews .jnews-search-submit {
    background: var(--primary);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.header-style-jnews .jnews-search-submit:hover {
    background: var(--primary-dark);
}

/* GAYA JNEWS: TIDAK ADA MENU DI BAWAH LOGO */
.header-style-jnews + .kp-subnav,
.header-style-jnews ~ .kp-subnav,
.header-style-jnews .kp-subnav {
    display: none !important;
}

.jnews-desktop-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.jnews-desktop-toggle {
    display: inline-flex !important;
}

/* RESPONSIVE MOBILE JNEWS */
@media (max-width: 768px) {
    .header-style-jnews .jnews-top-bar {
        display: none;
    }
    .header-style-jnews .jnews-main-bar {
        padding: 10px 0;
    }
    .header-style-jnews .jnews-main-inner {
        flex-direction: column;
        gap: 0;
    }
    .header-style-jnews .jnews-desktop-logo {
        display: none;
    }
    .header-style-jnews .jnews-mobile-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 12px;
    }
    .header-style-jnews .jnews-mobile-row .kp-logo-area {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    .header-style-jnews .jnews-mobile-row .kp-logo-img {
        height: 38px;
        width: auto;
        max-width: 180px;
    }
    .header-style-jnews .jnews-header-ads {
        display: none;
    }
}

/* LEVEL 2: SUBNAV CATEGORIES (CLEAN SLEEK LIGHT GRAY STYLE) */
.kp-subnav {
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
    border-bottom: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    top: auto;
    z-index: 90;
    padding: 0;
}

.kp-subnav-outer {
    position: relative;
    display: flex;
    align-items: center;
}

.kp-subnav-container {
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 0;
}

@media screen and (min-width: 769px) {
    .kp-subnav-container {
        overflow: visible;
    }
}

.kp-subnav-container::-webkit-scrollbar {
    display: none;
}

/* Subtle Edge Fades for Light Gray Subnav */
.kp-subnav-outer::before,
.kp-subnav-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 35px;
    pointer-events: none;
    z-index: 8;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.kp-subnav-outer::before {
    left: 0;
    background: linear-gradient(to right, #f1f5f9 40%, rgba(241, 245, 249, 0));
}

.kp-subnav-outer::after {
    right: 0;
    background: linear-gradient(to left, #f1f5f9 40%, rgba(241, 245, 249, 0));
}

.kp-subnav-outer.has-scroll-left::before {
    opacity: 1;
}

.kp-subnav-outer.has-scroll-right::after {
    opacity: 1;
}

/* Compact Nav Arrows - Elevated floating indicator buttons */
.kp-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    display: none;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.kp-nav-arrow-left {
    left: 2px;
}

.kp-nav-arrow-right {
    right: 2px;
    border-color: #e2e8f0;
    background: #ffffff;
    color: #64748b;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.kp-nav-arrow:hover,
.kp-nav-arrow-right:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
}

.kp-nav-arrow:active {
    transform: translateY(-50%) scale(0.92);
}

.kp-subnav-outer.has-scroll-left .kp-nav-arrow-left {
    display: inline-flex;
}

.kp-subnav-outer.has-scroll-right .kp-nav-arrow-right {
    display: inline-flex;
    animation: kpNavBounceRight 1.8s infinite ease-in-out;
}

.kp-subnav-outer.has-scroll-right .kp-nav-arrow-right:hover {
    animation: none;
}

@keyframes kpNavBounceRight {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(2px);
    }
}

/* Category Menu Items: Crisp White Modern Text Links */
.kp-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
    white-space: nowrap;
}

.kp-menu > li {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    position: relative;
}

.kp-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    font-weight: 600;
    font-size: 13.5px;
    color: #1e293b;
    background: transparent !important;
    border: none;
    border-radius: 0;
    transition: color 0.18s ease, opacity 0.18s ease;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: none !important;
    line-height: 1.4;
}

/* REMOVE ALL DOTS / BULLETS COMPLETELY */
.kp-menu > li > a::before {
    display: none !important;
    content: none !important;
}

/* Hover State: Clean Underline Tab */
.kp-menu > li > a:hover {
    color: #d90429;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1;
}

/* Home item */
.kp-menu > li.menu-item-home > a,
.kp-menu > li:first-child > a {
    font-weight: 700;
    color: #0f172a;
}

.kp-menu > li.menu-item-home > a:hover,
.kp-menu > li:first-child > a:hover {
    color: #d90429;
    background: transparent !important;
}

.kp-home-icon {
    display: none !important;
}

/* Active Item State: Clean Accent Line (Zero Pill/Patch) */
.kp-menu > li.current-menu-item > a,
.kp-menu > li.current_page_item > a,
.kp-menu > li.active > a,
body.home .kp-menu > li.menu-item-home > a,
body.home .kp-menu > li:first-child > a {
    font-weight: 700 !important;
    color: #d90429 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
}

.kp-menu > li.current-menu-item > a::after,
.kp-menu > li.current_page_item > a::after,
.kp-menu > li.active > a::after,
body.home .kp-menu > li.menu-item-home > a::after,
body.home .kp-menu > li:first-child > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    height: 2.5px;
    background: #d90429;
    border-radius: 2px 2px 0 0;
    transition: all 0.2s ease;
}

/* Submenu / Dropdown Navigation (Desktop) */
.kp-menu li .kp-caret {
    display: inline-block;
    margin-left: 3px;
    opacity: 0.7;
    color: currentColor;
    stroke: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
    vertical-align: middle;
}

.kp-menu li:hover .kp-caret {
    transform: rotate(180deg);
    opacity: 1;
}

.kp-menu ul.sub-menu,
.kp-menu ul.kp-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
    padding: 6px;
    margin: 0;
    list-style: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

/* Grid Layout for Dropdowns with Many Items (e.g. Daerah & Lainnya) */
.kp-menu ul.kp-dropdown-grid,
.kp-menu ul.sub-menu.kp-dropdown-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(165px, 1fr)) !important;
    min-width: 350px !important;
    gap: 2px 6px !important;
    max-height: 480px;
    overflow-y: auto;
}

/* Align Right for "Lainnya" Dropdown to prevent screen clipping */
.kp-menu li.kp-more-dropdown > ul.sub-menu,
.kp-menu li.kp-more-dropdown > ul.kp-dropdown-menu {
    left: auto !important;
    right: 0 !important;
}

.kp-menu li:hover > ul.sub-menu,
.kp-menu li:hover > ul.kp-dropdown-menu,
.kp-menu li:focus-within > ul.sub-menu,
.kp-menu li:focus-within > ul.kp-dropdown-menu,
.kp-menu li.is-open > ul.sub-menu,
.kp-menu li.is-open > ul.kp-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.kp-menu li.is-open .kp-caret {
    transform: rotate(180deg);
    opacity: 1;
}

/* Backdrop untuk Mobile Subnav Dropdown - Penangkap klik transparan murni (Tanpa blur, tanpa gelap) */
.kp-dropdown-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 990;
}

.kp-dropdown-backdrop.active {
    display: block;
}

.kp-menu ul.sub-menu li,
.kp-menu ul.kp-dropdown-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Dropdown Links: Crisp Dark High-Contrast Text with Soft Clean Hover */
.kp-menu ul.sub-menu li a,
.kp-menu ul.kp-dropdown-menu li a {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 8px 12px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #1e293b !important;
    border-radius: 6px !important;
    background: transparent !important;
    transition: background 0.15s ease, color 0.15s ease !important;
    white-space: nowrap !important;
    line-height: 1.35 !important;
}

.kp-menu ul.sub-menu li a::after,
.kp-menu ul.kp-dropdown-menu li a::after {
    display: none !important;
}

.kp-menu ul.sub-menu li a:hover,
.kp-menu ul.kp-dropdown-menu li a:hover {
    background: #f1f5f9 !important;
    color: #0284c7 !important;
    font-weight: 600 !important;
}

.kp-menu ul.sub-menu li.active a,
.kp-menu ul.sub-menu li.current-menu-item a,
.kp-menu ul.kp-dropdown-menu li.active a {
    background: #e0f2fe !important;
    color: #0284c7 !important;
    font-weight: 600 !important;
}

/* LEVEL 3: TRENDING TOPICS BAR */
.kp-trending-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 6px 0;
    font-size: 12.5px;
}

.kp-trending-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.kp-trending-inner::-webkit-scrollbar {
    display: none;
}

.kp-trending-label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #1e293b;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.kp-fire-icon {
    font-size: 14px;
}

.kp-trending-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.kp-tag-pill {
    display: inline-block;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 3px 11px;
    border-radius: 9999px;
    font-size: 11.5px;
    font-weight: 600;
    transition: all 0.2s;
    flex-shrink: 0;
}

.kp-tag-pill:hover {
    background: #006699;
    color: #ffffff;
    border-color: #006699;
}

/* MOBILE DRAWER MENU - GPU ACCELERATED (SAT-SET) */
.kp-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 290px;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    will-change: transform;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.kp-mobile-drawer.open {
    transform: translateX(0);
}

.kp-drawer-overlay {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.45);
    z-index: 99998;
    backdrop-filter: blur(2px);
    transition: opacity 0.25s ease;
}

.kp-mobile-drawer.open ~ .kp-drawer-overlay,
.kp-mobile-drawer.open + .kp-drawer-overlay {
    opacity: 1;
    pointer-events: auto;
}

.kp-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.kp-drawer-close {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: #64748b;
}

.kp-drawer-content {
    padding: 15px 0;
    flex: 1;
    overflow-y: auto;
}

/* Mobile Drawer Search Field */
.kp-drawer-search {
    padding: 0 16px 14px 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.kp-drawer-search-form {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 2px 6px 2px 12px;
    transition: all 0.2s ease;
}

.kp-drawer-search-form:focus-within {
    background: #ffffff;
    border-color: #006699;
    box-shadow: 0 0 0 3px rgba(0, 102, 153, 0.12);
}

.kp-drawer-search-icon {
    color: #94a3b8;
    flex-shrink: 0;
    margin-right: 8px;
}

.kp-drawer-search-form:focus-within .kp-drawer-search-icon {
    color: #006699;
}

.kp-drawer-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 9px 0;
    font-size: 13.5px;
    color: #1e293b;
    width: 100%;
}

.kp-drawer-search-input::placeholder {
    color: #94a3b8;
    font-size: 13px;
}

.kp-drawer-search-btn {
    background: #f1f5f9;
    border: none;
    border-radius: 7px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.kp-drawer-search-form:focus-within .kp-drawer-search-btn {
    background: #006699;
    color: #ffffff;
}

.kp-drawer-search-btn:hover {
    background: #006699;
    color: #ffffff;
}

.kp-drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kp-drawer-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 22px;
    font-size: 14.5px;
    font-weight: 600;
    color: #334155;
    border-bottom: 1px solid #f8fafc;
}

/* Sembunyikan svg kp-caret agar tidak dobel dengan tombol kp-drawer-caret-btn */
.kp-drawer-menu .kp-caret {
    display: none !important;
}

.kp-drawer-menu li a:hover {
    background: #f0f7fc;
    color: #006699;
}

/* Drawer Submenu Accordion Style */
.kp-drawer-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.15s ease;
}

.kp-drawer-item-row:hover {
    background: #f0f7fc;
}

.kp-drawer-item-row a.kp-drawer-parent-link {
    flex: 1;
    border-bottom: none !important;
    background: transparent !important;
}

.kp-drawer-caret-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #64748b;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.2s, background 0.2s;
    border-radius: 6px;
    margin-right: 6px;
}

.kp-drawer-caret-btn:hover,
.kp-drawer-caret-btn:active {
    color: #006699;
    background: #f1f5f9;
}

.kp-drawer-caret-icon {
    transition: transform 0.25s ease;
}

.kp-drawer-has-sub.is-open > .kp-drawer-item-row .kp-drawer-caret-icon,
.kp-drawer-has-sub.is-open > .kp-drawer-caret-btn .kp-drawer-caret-icon,
.kp-drawer-has-sub.is-open > a .kp-drawer-caret-icon {
    transform: rotate(180deg);
    stroke: #006699;
}

/* Submenu drawer tersembunyi secara default (collapsed) */
.kp-drawer-menu ul.sub-menu,
.kp-drawer-menu ul.kp-drawer-sub {
    display: none;
    list-style: none;
    padding: 4px 0 8px 16px;
    margin: 0;
    background: #f8fafc;
    border-left: 3px solid #006699;
}

/* Submenu terbuka saat parent memiliki class is-open */
.kp-drawer-menu li.kp-drawer-has-sub.is-open > ul.sub-menu,
.kp-drawer-menu li.kp-drawer-has-sub.is-open > ul.kp-drawer-sub {
    display: block;
    animation: kpDrawerFadeIn 0.22s ease-out;
}

@keyframes kpDrawerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kp-drawer-menu ul.sub-menu li a,
.kp-drawer-menu ul.kp-drawer-sub li a {
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    border-bottom: 1px solid #edf2f7;
}

.kp-drawer-menu ul.sub-menu li a:hover,
.kp-drawer-menu ul.kp-drawer-sub li a:hover {
    color: #0073aa;
    background: #f1f5f9;
    font-weight: 600;
}

.kp-drawer-footer {
    padding: 20px;
    border-top: 1px solid #f1f5f9;
}

/* =========================================================================
   RESPONSIVE ADAPTATIONS (MOBILE & TABLET)
   ========================================================================= */
@media (max-width: 900px) {
    .kp-main-bar {
        padding: 8px 0;
    }
    .kp-main-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 8px;
    }
    .kp-left {
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
        justify-content: center; /* Rata tengah logo di mobile */
        padding: 0 44px; /* Ruang simetris agar logo tidak menyenggol tombol toggle kiri */
        box-sizing: border-box;
    }
    .kp-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        padding: 0;
        background: #f0f7ff;
        border: 1px solid #bae6fd;
        border-radius: 8px;
        color: #006699;
        cursor: pointer;
        transition: all 0.2s ease;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }
    .kp-mobile-toggle:hover,
    .kp-mobile-toggle:active {
        background: #006699;
        color: #ffffff;
        border-color: #006699;
    }
    .kp-logo-area {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
    }
    .kp-logo-link,
    .custom-logo-link {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .kp-logo-img,
    .custom-logo,
    .custom-logo-link img {
        height: 42px; /* Proporsional & tegas di mobile dengan ruang lapang */
        width: auto;
        max-width: 240px;
        object-fit: contain;
        border-radius: 8px;
    }
    .kp-brand-text {
        font-size: 20px;
    }
    .kp-search-box {
        display: none;
    }
    .kp-date-display {
        display: none;
    }
    .kp-btn-portal {
        display: none !important; /* Hapus tombol Beranda di mobile agar header tidak sesak dan proporsional */
    }
    .kp-right {
        display: none !important; /* Disembunyikan di mobile karena pencarian sudah dipindahkan ke dalam drawer menu */
    }
    .kp-mobile-search-btn {
        display: none !important; /* Dipindahkan ke dalam drawer menu */
    }
    .kp-mobile-search-dropdown {
        display: none !important;
    }
    .kp-subnav {
        padding: 3px 0;
    }
    .kp-subnav-container {
        padding: 0;
    }
    .kp-menu {
        gap: 2px;
        padding: 0 34px 0 4px;
    }
    .kp-menu li a {
        padding: 6px 10px;
        font-size: 13px;
    }
    .kp-nav-arrow {
        width: 26px;
        height: 26px;
    }
    .kp-subnav-outer.has-scroll-left .kp-nav-arrow-left {
        display: inline-flex !important;
    }
    .kp-subnav-outer.has-scroll-right .kp-nav-arrow-right {
        display: inline-flex !important;
    }

    /* Submenu Dropdown Melayang Bebas di Mobile (Lepas dari klip overflow-x) */
    .kp-menu ul.sub-menu,
    .kp-menu ul.kp-dropdown-menu {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: 480px !important;
        margin: 0 auto !important;
        max-height: 60vh !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.08) !important;
        border: 1.5px solid #cbd5e1 !important;
        border-radius: 12px !important;
        z-index: 999999 !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 8px !important;
    }

    .kp-menu ul.kp-dropdown-grid,
    .kp-menu ul.sub-menu.kp-dropdown-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(130px, 1fr)) !important;
        gap: 6px 8px !important;
    }

    .kp-menu ul.sub-menu li a,
    .kp-menu ul.kp-dropdown-menu li a {
        display: flex !important;
        align-items: center !important;
        padding: 10px 12px !important;
        font-size: 13.5px !important;
        font-weight: 600 !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 6px !important;
        color: #0f172a !important; /* Hitam pekat tajam & kontras tinggi */
        opacity: 1 !important;
        filter: none !important;
    }

    .kp-menu ul.sub-menu li.kp-dropdown-header-item a,
    .kp-menu ul.kp-dropdown-menu li.kp-dropdown-header-item a {
        background: #e0f2fe !important;
        color: #0369a1 !important;
        border-color: #bae6fd !important;
        font-weight: 700 !important;
    }

    .kp-menu ul.sub-menu li a:hover,
    .kp-menu ul.sub-menu li a:active,
    .kp-menu ul.kp-dropdown-menu li a:hover,
    .kp-menu ul.kp-dropdown-menu li a:active {
        background: #0284c7 !important;
        color: #ffffff !important;
        border-color: #0284c7 !important;
    }
}

@media (max-width: 480px) {
    .kp-logo-img {
        height: 32px;
        max-width: 155px;
    }
    .kp-menu li a {
        padding: 8px 10px;
        font-size: 12.5px;
    }
}

/* =========================================================================
   4. SECTION HEADERS (Modern Magazine Style)
   ========================================================================= */
.siger-sec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--border);
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    flex-wrap: wrap;
    gap: 12px;
}
.siger-sec-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.siger-sec-bar {
    width: 5px;
    height: 24px;
    background: var(--primary);
    border-radius: 4px;
    display: inline-block;
    flex-shrink: 0;
}
.siger-sec-bar.accent-red { background: var(--accent); }
.siger-sec-bar.accent-indigo { background: #4f46e5; }
.siger-sec-bar.accent-emerald { background: var(--accent-emerald); }

.siger-sec-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}
.siger-sec-more-btn {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary);
    padding: 5px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.siger-sec-more-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* =========================================================================
   5. TOP HEADLINE SECTION: BERITA TERKINI (Hero Bento Grid)
   ========================================================================= */
.siger-hero-wrap {
    margin: 24px 0 35px 0;
}
.siger-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    gap: 22px;
    margin-bottom: 24px;
}
@media (max-width: 900px) {
    .siger-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        margin-bottom: 18px;
    }
}
@media (max-width: 768px) {
    .siger-hero-wrap {
        margin: 10px 0 20px 0;
    }
    .siger-hero-grid {
        gap: 12px;
        margin-bottom: 16px;
    }
    .siger-sec-header {
        margin: 18px 0 12px 0;
        padding-bottom: 8px;
        gap: 8px;
    }
    .siger-top-sec-header {
        margin-top: 8px;
    }
    .siger-sec-title {
        font-size: 16.5px;
    }
    .siger-sec-bar {
        height: 18px;
        width: 4px;
    }
    .siger-sec-more-btn {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* Main Hero Feature (Left) */
.siger-main-feature {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 420px;
    max-height: 420px;
    background: var(--dark);
    box-shadow: var(--shadow);
    display: block;
}
.siger-main-feature a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.siger-main-feature img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}
.siger-main-feature:hover img {
    transform: scale(1.03);
}
.siger-feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 60%, transparent 100%);
    color: #fff;
    z-index: 2;
}
.siger-cat-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.siger-cat-badge.accent-red { background: var(--accent); }
.siger-cat-badge.accent-emerald { background: var(--accent-emerald); }

.siger-feature-title {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.siger-meta {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 900px) {
    .siger-main-feature {
        height: 360px;
        max-height: 360px;
    }
    .siger-side-cards {
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .siger-main-feature {
        min-height: unset;
        height: auto;
        max-height: none;
        aspect-ratio: 16 / 10;
        border-radius: 8px;
    }
    .siger-main-feature img {
        position: static;
        min-height: unset;
        width: 100%;
        height: 100%;
        aspect-ratio: 16 / 10;
    }
    .siger-feature-overlay {
        padding: 14px 12px;
    }
    .siger-cat-badge {
        font-size: 10px;
        padding: 3px 8px;
        margin-bottom: 6px;
    }
    .siger-feature-title {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    .siger-meta {
        font-size: 11px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .siger-main-feature {
        aspect-ratio: 16 / 10.5;
    }
    .siger-main-feature img {
        aspect-ratio: 16 / 10.5;
    }
}

/* Side Cards (Right Stack) */
.siger-side-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 420px;
}
.siger-card-horizontal {
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px;
    display: flex;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    flex: 1;
    min-height: 0;
    align-items: center;
}
.siger-card-horizontal:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.siger-card-thumb {
    width: 115px;
    min-width: 115px;
    height: 85px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
    flex-shrink: 0;
}
.siger-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.siger-card-horizontal:hover .siger-card-thumb img {
    transform: scale(1.05);
}
.siger-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.siger-card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.siger-card-title a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .siger-side-cards {
        gap: 10px;
    }
    .siger-card-horizontal {
        padding: 9px 10px;
        gap: 10px;
        border-radius: 8px;
    }
    .siger-card-thumb {
        width: 95px;
        min-width: 95px;
        height: 72px;
        border-radius: 6px;
    }
    .siger-card-title {
        font-size: 13.5px;
        line-height: 1.35;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .siger-card-horizontal {
        padding: 8px 9px;
        gap: 9px;
    }
    .siger-card-thumb {
        width: 86px;
        min-width: 86px;
        height: 65px;
    }
    .siger-card-title {
        font-size: 13px;
        line-height: 1.3;
    }
}

/* 4-Item Sub-strip Underneath Hero */
.siger-hero-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}
@media (max-width: 900px) {
    .siger-hero-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 500px) {
    .siger-hero-strip {
        grid-template-columns: minmax(0, 1fr);
    }
}
.siger-strip-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 12px;
    align-items: center;
    transition: all 0.2s ease;
    min-width: 0;
}
.siger-strip-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.siger-strip-thumb {
    width: 80px;
    min-width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: #e2e8f0;
    flex-shrink: 0;
}
.siger-strip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.siger-strip-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================================================
   6. BAGIAN 2: KATEGORI 1 (DAERAH) - Pola Asimetris Lead + List + Subgrid
   ========================================================================= */
.siger-cat1-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 22px;
    margin-bottom: 22px;
}
@media (max-width: 860px) {
    .siger-cat1-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        margin-bottom: 14px;
    }
}
@media (max-width: 768px) {
    .siger-lead-card {
        border-radius: 8px;
    }
    .siger-lead-thumb {
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .siger-lead-body {
        padding: 12px 10px;
    }
    .siger-lead-title {
        font-size: 16px;
        margin: 6px 0;
    }
    .siger-lead-excerpt {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .siger-stack-list {
        gap: 10px;
    }
    .siger-compact-item {
        padding: 9px 10px;
        gap: 10px;
        border-radius: 8px;
    }
    .siger-compact-thumb {
        width: 88px;
        min-width: 88px;
        height: 66px;
        border-radius: 6px;
    }
    .siger-compact-title {
        font-size: 13px;
        line-height: 1.35;
    }
}
.siger-lead-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}
.siger-lead-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.siger-lead-thumb {
    height: 270px;
    position: relative;
    overflow: hidden;
    background: #cbd5e1;
}
.siger-lead-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.siger-lead-card:hover .siger-lead-thumb img {
    transform: scale(1.04);
}
.siger-lead-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.siger-lead-title {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
    margin: 8px 0 10px 0;
    color: var(--dark);
}
.siger-lead-title a:hover {
    color: var(--primary);
}
.siger-lead-excerpt {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Compact Stack List */
.siger-stack-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.siger-compact-item {
    display: flex;
    gap: 14px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}
.siger-compact-item:hover {
    transform: translateX(4px);
    border-color: #cbd5e1;
    box-shadow: var(--shadow);
}
.siger-compact-thumb {
    width: 105px;
    min-width: 105px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
    flex-shrink: 0;
}
.siger-compact-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.siger-compact-item:hover .siger-compact-thumb img {
    transform: scale(1.05);
}
.siger-compact-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.siger-compact-title {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.siger-compact-title a:hover {
    color: var(--primary);
}

/* Sub-grid of 3 cards below lead / hero */
.siger-cat1-subgrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.siger-hero-subgrid {
    margin-top: 24px;
}
@media (max-width: 768px) {
    .siger-cat1-subgrid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        margin-top: 12px;
    }
    .siger-hero-subgrid {
        margin-top: 16px;
    }
    .siger-mini-card {
        border-radius: 8px;
    }
    .siger-mini-thumb {
        height: 135px;
    }
    .siger-mini-body {
        padding: 10px 12px;
    }
    .siger-mini-title {
        font-size: 13.5px;
    }
}
.siger-mini-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.siger-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.siger-mini-thumb {
    height: 155px;
    overflow: hidden;
    background: #cbd5e1;
}
.siger-mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.siger-mini-card:hover .siger-mini-thumb img {
    transform: scale(1.05);
}
.siger-mini-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.siger-mini-title {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.4;
    margin: 6px 0;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.siger-mini-title a:hover {
    color: var(--primary);
}

/* =========================================================================
   7. BAGIAN 3: KATEGORI 2 (NASIONAL) - Pola Split 2/3 Feed + 1/3 Trending
   ========================================================================= */
.siger-split-sec {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    margin-bottom: 40px;
}
@media (max-width: 920px) {
    .siger-split-sec {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        margin-bottom: 24px;
    }
}
.siger-dual-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}
@media (max-width: 768px) {
    .siger-dual-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        margin-bottom: 12px;
    }
    .siger-dual-card {
        border-radius: 8px;
    }
    .siger-dual-thumb {
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .siger-dual-body {
        padding: 12px 10px;
    }
    .siger-dual-title {
        font-size: 14px;
    }
}
@media (max-width: 600px) {
    .siger-dual-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
.siger-dual-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}
.siger-dual-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.siger-dual-thumb {
    height: 180px;
    overflow: hidden;
    background: #cbd5e1;
}
.siger-dual-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.siger-dual-card:hover .siger-dual-thumb img {
    transform: scale(1.05);
}
.siger-dual-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.siger-dual-title {
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.4;
    margin: 8px 0 10px 0;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.siger-dual-title a:hover {
    color: #4f46e5;
}

/* Trending Box Widget (Right Column) */
.siger-trending-box {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.siger-trending-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--accent-orange);
}
.siger-trending-header h3 {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.siger-trending-list {
    padding: 6px 16px;
}
.siger-trending-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s;
}
.siger-trending-item:last-child {
    border-bottom: none;
}
.siger-trending-item:hover {
    padding-left: 5px;
}
.siger-trending-rank {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    color: #94a3b8;
    width: 24px;
    min-width: 24px;
    text-align: center;
}
.siger-trending-item:nth-child(1) .siger-trending-rank { color: var(--accent); }
.siger-trending-item:nth-child(2) .siger-trending-rank { color: var(--accent-orange); }
.siger-trending-item:nth-child(3) .siger-trending-rank { color: #eab308; }
.siger-trending-body {
    flex: 1;
}
.siger-trending-title {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.siger-trending-title a:hover {
    color: var(--accent-orange);
}

/* =========================================================================
   8. FOOTER
   ========================================================================= */
.siger-footer {
    background: var(--dark);
    color: #94a3b8;
    margin-top: 40px;
    padding: 28px 0 20px 0;
    border-top: 3px solid var(--primary);
    text-align: left;
}
.siger-footer-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}
.siger-footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.siger-col-brand {
    max-width: 440px;
    flex: 1 1 320px;
}
.siger-col-nav {
    flex: 0 1 auto;
}
.siger-col-partner {
    flex: 0 1 auto;
}
.siger-footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.siger-footer-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}
.siger-footer-heading {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.siger-footer-links-inline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.siger-footer-links-inline li a {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 2px 0;
    display: inline-block;
}
.siger-footer-links-inline li a:hover {
    color: #ffffff;
}
.siger-footer-sep {
    color: #475569;
    font-size: 10px;
    user-select: none;
}
.siger-footer-partner-stacked {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 0;
}
.siger-footer-partner-label {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.siger-smsi-badge-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 7px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.siger-smsi-footer-logo {
    height: 34px;
    width: auto;
    max-width: 145px;
    object-fit: contain;
    display: block;
}
.siger-footer-bottom {
    padding-top: 18px;
    text-align: left;
    font-size: 12.5px;
    color: #64748b;
}
.siger-footer-bottom strong {
    color: #94a3b8;
    font-weight: 600;
}
@media (max-width: 768px) {
    .siger-footer {
        margin-top: 25px;
        padding: 22px 0 16px 0;
        text-align: left;
    }
    .siger-footer-grid {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 18px;
    }
    .siger-col-brand {
        max-width: 100%;
        flex: 1 1 auto;
    }
    .siger-footer-title {
        font-size: 16px;
    }
    .siger-footer-desc {
        font-size: 13px;
    }
    .siger-footer-heading {
        font-size: 13px;
        margin-bottom: 6px;
    }
    .siger-footer-links-inline {
        gap: 8px;
    }
    .siger-footer-links-inline li a {
        font-size: 13px;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }
    .siger-footer-partner-stacked {
        gap: 6px;
    }
    .siger-footer-bottom {
        padding-top: 14px;
        font-size: 12px;
        text-align: left;
    }
}

/* =========================================================================
   9. SINGLE ARTICLE & SIDEBAR (Top-tier Editorial Design)
   ========================================================================= */
.siger-layout-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
    margin-top: 22px;
}
@media (max-width: 960px) {
    .siger-layout-with-sidebar {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Breadcrumb */
.siger-breadcrumb {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.siger-breadcrumb a {
    color: var(--primary);
    font-weight: 600;
}
.siger-breadcrumb a:hover {
    text-decoration: underline;
}

/* Single Article Card Container */
.siger-single-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    min-width: 0;
    max-width: 100%;
}

.siger-single-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    text-decoration: none;
}
.siger-single-category:hover {
    background: var(--primary-dark);
    color: #fff;
}

.siger-single-title {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

/* Author & Meta Bar (Modern Clean Stack) */
.siger-single-meta {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 18px;
}
.siger-meta-author-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.siger-meta-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border: 1.5px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--primary);
    font-weight: 800;
    flex-shrink: 0;
}
.siger-meta-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.siger-meta-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}
.siger-meta-sub {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray);
    line-height: 1.3;
}
.siger-meta-dot {
    color: #cbd5e1;
    font-weight: bold;
}

/* Quick Action / Share Bar (Top) */
.siger-quick-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 22px;
}
.siger-share-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.siger-share-btn {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.15s ease, opacity 0.2s;
    text-decoration: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.siger-share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    color: #fff;
}
.siger-btn-wa { background: #25d366; }
.siger-btn-fb { background: #1877f2; }
.siger-btn-tw { background: #0f172a; }
.siger-btn-copy {
    background: #f1f5f9;
    color: var(--dark);
    border: 1px solid var(--border);
}
.siger-btn-copy:hover {
    background: #e2e8f0;
    color: var(--dark);
}

/* Text Size Controls */
.siger-text-resizer {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray);
    font-weight: 700;
    flex-shrink: 0;
}
.siger-font-btn {
    border: 1px solid var(--border);
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    color: var(--dark);
    transition: all 0.2s;
    line-height: 1;
}
.siger-font-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Bottom Share Bar */
.siger-bottom-share-bar {
    flex-direction: row;
}
.siger-bottom-share-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
}

/* Mobile Responsive Overrides for Single Post */
@media (max-width: 768px) {
    .siger-single-container {
        margin-top: 10px !important;
        padding: 0 14px !important;
    }
    .siger-layout-with-sidebar {
        margin-top: 8px;
        gap: 20px;
    }
    .siger-single-card {
        padding: 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }
    .siger-breadcrumb {
        margin-bottom: 12px;
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .siger-crumb-title {
        display: none;
    }
    .siger-crumb-sep:last-of-type {
        display: none;
    }
    .siger-single-title {
        font-size: 21px;
        line-height: 1.36;
        letter-spacing: -0.02em;
        margin-bottom: 12px;
    }
    .siger-single-meta {
        padding-bottom: 14px;
        margin-bottom: 14px;
    }
    .siger-meta-avatar {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .siger-meta-name {
        font-size: 13.5px;
    }
    .siger-meta-sub {
        font-size: 11.5px;
        gap: 5px;
    }
    .siger-quick-bar {
        padding: 8px 0;
        margin-bottom: 16px;
    }
    .siger-share-pills {
        gap: 6px;
    }
    .siger-share-btn {
        width: 34px;
        height: 34px;
        padding: 0;
        border-radius: 50%;
    }
    .siger-btn-label {
        display: none; /* Clean icon-only on mobile! */
    }
    .siger-resizer-label {
        display: none;
    }
    .siger-bottom-share-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .siger-single-featured-img {
        margin: 14px 0 18px 0;
        border-radius: 8px;
    }
    .siger-single-featured-img figcaption,
    .siger-single-featured-img .wp-caption-text {
        font-size: 12px;
        padding: 6px 8px 0 8px;
    }
    .siger-entry-content {
        font-size: 16px;
        line-height: 1.8;
    }
    .siger-entry-content > p {
        margin-bottom: 16px;
    }
    .siger-entry-content > p:first-of-type {
        font-size: 16.5px;
        line-height: 1.75;
    }
    .siger-entry-content h2 {
        font-size: 19px;
        margin: 22px 0 10px 0;
        padding-left: 10px;
    }
    .siger-entry-content h3 {
        font-size: 17px;
        margin: 18px 0 8px 0;
    }
    .siger-baca-juga-box {
        margin: 18px 0;
        padding: 10px 14px;
        gap: 6px;
        border-radius: 6px;
    }
    .siger-baca-juga-label {
        font-size: 10px;
        padding: 2px 7px;
    }
    .siger-baca-juga-title {
        font-size: 14.5px;
        line-height: 1.42;
    }
    .siger-baca-juga-arrow {
        width: 14px;
        height: 14px;
    }
    .siger-tags-wrap {
        margin: 20px 0 16px 0;
        padding-top: 14px;
    }
    .siger-author-box {
        padding: 14px;
        margin: 20px 0;
        border-radius: 8px;
    }
}

/* Featured Image */
.siger-single-featured-img {
    margin: 20px 0 28px 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: transparent;
    text-align: center;
}
.siger-single-featured-img a {
    display: inline-block;
    max-width: 100%;
}
.siger-single-featured-img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.siger-single-featured-img a:hover img {
    transform: scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.siger-single-featured-img figcaption,
.siger-single-featured-img .wp-caption-text {
    font-size: 13px;
    color: #64748b;
    padding: 8px 12px 0 12px;
    background: transparent;
    border-left: none;
    margin-top: 6px;
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}

/* Article Body Typography */
.siger-entry-content {
    font-size: 15.5px;
    line-height: 1.8;
    color: #334155;
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    max-width: 100%;
}
.siger-entry-content > p {
    margin-bottom: 20px;
}
.siger-entry-content > p:first-of-type {
    font-size: 16.5px;
    font-weight: 500;
    line-height: 1.75;
    color: var(--dark);
}
.siger-entry-content h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin: 28px 0 14px 0;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
    line-height: 1.35;
}
.siger-entry-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-card);
    margin: 22px 0 12px 0;
    line-height: 1.4;
}
.siger-entry-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-card);
    margin: 18px 0 10px 0;
}
.siger-entry-content blockquote {
    background: #f8fafc;
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #1e293b;
    font-size: 16px;
    line-height: 1.7;
}
.siger-entry-content blockquote p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .siger-entry-content {
        font-size: 15px;
        line-height: 1.75;
    }
    .siger-entry-content > p:first-of-type {
        font-size: 15.5px;
    }
}
.siger-entry-content ul,
.siger-entry-content ol {
    margin: 18px 0 22px 28px;
}
.siger-entry-content li {
    margin-bottom: 8px;
}
.siger-entry-content img {
    border-radius: var(--radius);
    max-width: 100% !important;
    height: auto !important;
    margin: 15px auto;
    display: block;
}
.siger-entry-content figure {
    margin: 24px 0;
    max-width: 100% !important;
}
.siger-entry-content iframe,
.siger-entry-content video,
.siger-entry-content embed {
    max-width: 100% !important;
}
.siger-entry-content table {
    max-width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
}

/* In-Article "BACA JUGA" Seamless Editorial Style (Menyatu Alami dengan Artikel) */
.siger-baca-juga-simple {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 22px 0 24px 0 !important;
}

.siger-bj-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 10px 0 !important;
    line-height: 1.5;
}

.siger-bj-list {
    list-style: disc !important;
    padding-left: 22px !important;
    margin: 0 0 18px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.siger-bj-item {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.55;
}

.siger-bj-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.15s ease, text-decoration 0.15s ease;
    line-height: 1.55;
}

.siger-bj-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .siger-baca-juga-simple {
        margin: 18px 0 20px 0 !important;
    }
    .siger-bj-heading {
        font-size: 15px;
        margin-bottom: 8px !important;
    }
    .siger-bj-list {
        padding-left: 18px !important;
        gap: 8px;
    }
    .siger-bj-link {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* Fallback legacy .siger-baca-juga-box */
.siger-baca-juga-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--primary);
    padding: 12px 16px;
    border-radius: 6px;
    margin: 24px 0;
}

/* Tag Pills */
.siger-tags-wrap {
    margin: 30px 0 25px 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.siger-tags-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    margin-right: 4px;
}
.siger-tag-pill {
    font-size: 12px;
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 20px;
    color: #475569;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid var(--border);
}
.siger-tag-pill:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Author Bio Card */
.siger-author-box {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin: 30px 0;
    display: flex;
    gap: 16px;
    align-items: center;
}
.siger-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}
.siger-author-info h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}
.siger-author-info p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* Related Posts Section - Clean Seamless List (Tanpa Card) */
.siger-related-wrap {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid var(--border);
}
.siger-related-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
}
.siger-related-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.siger-related-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
}
.siger-related-item {
    border-bottom: 1px solid var(--border-light);
    margin: 0 !important;
    padding: 0 !important;
}
.siger-related-item:last-child {
    border-bottom: none;
}
.siger-related-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    padding: 12px 4px;
    min-height: 44px;
    transition: all 0.15s ease;
}
.siger-related-link:hover {
    padding-left: 8px;
}
.siger-related-bullet {
    font-size: 18px;
    line-height: 1.3;
    color: var(--primary);
    font-weight: 800;
    flex-shrink: 0;
}
.siger-related-card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--dark);
    margin: 0;
    transition: color 0.15s ease;
}
.siger-related-link:hover .siger-related-card-title {
    color: var(--primary);
}

@media (max-width: 768px) {
    .siger-related-wrap {
        margin-top: 28px;
        padding-top: 20px;
    }
    .siger-related-title {
        font-size: 16.5px;
        margin-bottom: 16px;
    }
    .siger-related-link {
        padding: 11px 2px;
    }
    .siger-related-card-title {
        font-size: 14.5px;
        line-height: 1.45;
    }
}

/* Sidebar (Static / Non-Floating) */
.siger-sidebar {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.siger-sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.siger-widget-title {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.siger-widget-post-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}
.siger-widget-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.siger-widget-thumb {
    width: 75px;
    height: 55px;
    border-radius: 6px;
    overflow: hidden;
    background: #e2e8f0;
    flex-shrink: 0;
}
.siger-widget-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.siger-widget-post-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.siger-widget-post-title:hover {
    color: var(--primary);
}
.siger-widget-post-date {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
}

/* Clean Category List in Sidebar */
.siger-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.siger-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px;
    border-bottom: 1px solid var(--border-light);
    font-size: 13.5px;
    border-radius: 4px;
    transition: all 0.2s;
}
.siger-cat-item:last-child {
    border-bottom: none;
}
.siger-cat-item:hover {
    background: #f8fafc;
    padding-left: 12px;
}
.siger-cat-link {
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}
.siger-cat-item:hover .siger-cat-link {
    color: var(--primary);
}
.siger-cat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    flex-shrink: 0;
}
.siger-cat-count {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
}

/* =========================================================================
   10. MOBILE POLISH & EDGE-TO-EDGE SPACING REFINEMENTS
   ========================================================================= */
@media (max-width: 768px) {
    .siger-cat-page {
        margin-top: 14px !important;
    }
    .siger-cat-hero {
        padding: 20px 0 16px 0;
    }
    .siger-cat-hero-title {
        font-size: 22px;
    }
    .siger-cat-hero-desc {
        font-size: 13px;
        margin: 6px 0 10px 0;
    }
    .siger-cat-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .siger-arc-lead-body {
        padding: 14px 12px;
    }
    .siger-arc-lead-title {
        font-size: 17px;
    }
    .siger-arc-card {
        padding: 9px 10px;
        gap: 10px;
        border-radius: 8px;
    }
    .siger-arc-thumb {
        width: 90px;
        min-width: 90px;
        height: 68px;
        border-radius: 6px;
    }
    .siger-arc-title {
        font-size: 13px;
        line-height: 1.35;
    }
    .siger-archive-container {
        padding: 16px 0 30px 0;
    }
    .siger-breadcrumb {
        font-size: 12px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .siger-arc-thumb {
        width: 82px;
        min-width: 82px;
        height: 62px;
    }
    .siger-author-box {
        padding: 14px 12px;
        gap: 12px;
        margin: 20px 0;
    }
    .siger-author-avatar {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .siger-related-title {
        font-size: 16px;
    }
}

/* Page Template Styling */
.siger-page-card {
    min-height: 400px;
}
.siger-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 24px 0;
    font-size: 14px;
}
.siger-page-content table td,
.siger-page-content table th {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-light);
}
@media (max-width: 640px) {
    .siger-page-content table td,
    .siger-page-content table th {
        padding: 8px 6px;
        font-size: 13px;
    }
}




/* =========================================================================
   CATEGORY ARCHIVE PAGE STYLING (MODERN NEWS PORTAL)
   ========================================================================= */

.siger-cat-header-wrap {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 18px 0 16px 0;
    margin-bottom: 20px;
}

.siger-cat-banner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.siger-cat-badge-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.siger-cat-rubrik-tag {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #ffffff;
    background: var(--primary);
    padding: 2.5px 8px;
    border-radius: 4px;
}

.siger-cat-count-pill {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    background: var(--bg-page);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 12px;
}

.siger-cat-heading {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    margin: 0;
}

.siger-cat-subtext {
    font-size: 13.5px;
    color: var(--gray);
    max-width: 680px;
    line-height: 1.45;
    margin: 4px 0 0 0;
}

/* Subcategory Filter Chips Bar */
.siger-subcat-chips-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
    flex-wrap: wrap;
}

.siger-subcat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.siger-subcat-chips-list {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}

.siger-subcat-chips-list::-webkit-scrollbar {
    display: none;
}

.siger-subcat-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 3px 10px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.siger-subcat-chip:hover {
    background: #e2e8f0;
    color: var(--primary);
    border-color: #cbd5e1;
}

.siger-subcat-chip.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    font-weight: 700;
}

.siger-subcat-chip .chip-cnt {
    font-size: 10px;
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.08);
    padding: 1px 5px;
    border-radius: 10px;
}

.siger-subcat-chip.active .chip-cnt {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.siger-cat-container {
    padding-bottom: 45px;
}

.siger-cat-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

.siger-cat-main {
    min-width: 0;
}

/* 1. Lead Spotlight Card - Compact & Modern */
.siger-cat-lead-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
    transition: all 0.25s ease;
}

.siger-cat-lead-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: #cbd5e1;
}

.siger-cat-lead-thumb {
    position: relative;
    overflow: hidden;
    background: #e2e8f0;
    height: 190px;
    width: 280px;
    flex-shrink: 0;
}

.siger-cat-lead-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.siger-cat-lead-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.siger-cat-lead-card:hover .siger-cat-lead-thumb img {
    transform: scale(1.04);
}

.siger-cat-lead-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.siger-cat-lead-body {
    padding: 16px 18px 16px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.siger-cat-lead-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 11.5px;
}

.siger-cat-lead-tag {
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
}

.siger-cat-lead-date {
    color: var(--gray);
}

.siger-cat-lead-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.siger-cat-lead-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.siger-cat-lead-title a:hover {
    color: var(--primary);
}

.siger-cat-lead-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.siger-cat-lead-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.siger-cat-lead-author {
    font-size: 11.5px;
    color: var(--gray);
    font-weight: 600;
}

.siger-cat-lead-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.siger-cat-lead-btn:hover {
    gap: 8px;
}

/* 2. Section Head & Stream Feed */
.siger-cat-section-head {
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-light);
}

.siger-cat-section-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.siger-cat-bar {
    width: 4px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
}

/* Single-Column Feed of Compact Horizontal Cards */
.siger-cat-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.siger-cat-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 9px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 14px;
    gap: 16px;
    transition: all 0.2s ease;
}

.siger-cat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: #cbd5e1;
}

.siger-cat-card-thumb {
    position: relative;
    width: 160px;
    min-width: 160px;
    height: 105px;
    border-radius: 7px;
    overflow: hidden;
    background: #e2e8f0;
    flex-shrink: 0;
}

.siger-cat-card-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.siger-cat-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.siger-cat-card:hover .siger-cat-card-thumb img {
    transform: scale(1.05);
}

.siger-cat-card-badge {
    display: none; /* Hidden in favor of clean inline meta */
}

.siger-cat-card-body {
    padding: 0;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.siger-cat-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--gray-light);
    margin-bottom: 5px;
}

.siger-cat-card-cat {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3px;
}

.siger-cat-meta-sep {
    color: #cbd5e1;
    font-size: 10px;
}

.siger-cat-card-title {
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.38;
    color: var(--dark);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.siger-cat-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.siger-cat-card-title a:hover {
    color: var(--primary);
}

.siger-cat-card-desc {
    font-size: 12.5px;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 3. Pagination */
.siger-cat-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.siger-cat-pagination ul.page-numbers {
    display: flex;
    list-style: none;
    gap: 7px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.siger-cat-pagination li span.current {
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 13px;
    border-radius: 6px;
    display: block;
}

.siger-cat-pagination li a.page-numbers {
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--dark);
    font-weight: 600;
    font-size: 13px;
    padding: 7px 13px;
    border-radius: 6px;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease;
}

.siger-cat-pagination li a.page-numbers:hover {
    background: #f1f5f9;
    border-color: var(--primary);
    color: var(--primary);
}

/* Rank Badge for Sidebar */
.siger-rank-badge {
    width: 24px;
    height: 24px;
    background: #e0f2fe;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Responsive adjustments for Category Archive */
@media (max-width: 960px) {
    .siger-cat-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 680px) {
    /* Header Banner Ultra Compact */
    .siger-cat-header-wrap {
        padding: 12px 0 10px 0;
        margin-bottom: 14px;
    }
    .siger-breadcrumb {
        font-size: 11.5px;
        margin-bottom: 4px;
    }
    .siger-cat-badge-wrap {
        gap: 6px;
        margin-bottom: 3px;
    }
    .siger-cat-rubrik-tag {
        font-size: 9.5px;
        padding: 2px 7px;
    }
    .siger-cat-count-pill {
        font-size: 10px;
        padding: 1.5px 7px;
    }
    .siger-cat-heading {
        font-size: 20px;
    }
    .siger-cat-subtext {
        font-size: 12px;
        line-height: 1.4;
        margin-top: 3px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Lead Card Compact on Mobile (Headline Above The Fold!) */
    .siger-cat-lead-card {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 14px;
        border-radius: 8px;
    }
    .siger-cat-lead-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        max-height: 160px;
    }
    .siger-cat-lead-body {
        padding: 10px 12px;
    }
    .siger-cat-lead-meta {
        font-size: 11px;
        margin-bottom: 4px;
    }
    .siger-cat-lead-title {
        font-size: 15px;
        line-height: 1.35;
        margin-bottom: 4px;
        -webkit-line-clamp: 2;
    }
    .siger-cat-lead-desc {
        display: none; /* Hide long excerpt on mobile for compactness */
    }
    .siger-cat-lead-footer {
        padding-top: 8px;
        font-size: 11px;
    }
    .siger-cat-lead-btn {
        font-size: 11.5px;
    }

    /* Article List: Compact Horizontal Feed on Mobile */
    .siger-cat-grid {
        gap: 9px;
    }
    .siger-cat-card {
        padding: 8px 10px;
        gap: 10px;
        border-radius: 8px;
    }
    .siger-cat-card-thumb {
        width: 96px;
        min-width: 96px;
        height: 70px;
        border-radius: 6px;
    }
    .siger-cat-card-meta {
        font-size: 10.5px;
        margin-bottom: 3px;
    }
    .siger-cat-card-cat {
        font-size: 10px;
    }
    .siger-cat-card-title {
        font-size: 13.5px;
        line-height: 1.33;
        margin-bottom: 0;
        -webkit-line-clamp: 2;
    }
    .siger-cat-card-desc {
        display: none; /* Hide excerpt on mobile for clean fast browsing */
    }

    /* Section Head */
    .siger-cat-section-head {
        margin-bottom: 10px;
        padding-bottom: 6px;
    }
    .siger-cat-section-title {
        font-size: 14px;
    }

    /* Pagination Mobile */
    .siger-cat-pagination {
        margin-top: 22px;
    }
    .siger-cat-pagination li a.page-numbers,
    .siger-cat-pagination li span.current {
        font-size: 12px;
        padding: 6px 11px;
    }
}

@media (max-width: 480px) {
    .siger-cat-heading {
        font-size: 18px;
    }
    .siger-cat-lead-thumb {
        max-height: 145px;
    }
    .siger-cat-card-thumb {
        width: 88px;
        min-width: 88px;
        height: 64px;
    }
    .siger-cat-card-title {
        font-size: 13px;
    }
}

/* =========================================================================
   SAT-SET PERFORMANCE & INTERACTIVITY ENHANCEMENTS
   ========================================================================= */

/* Reading Progress Bar */
.siger-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3.5px;
    background: linear-gradient(90deg, #e11d48, #006699);
    z-index: 999999;
    pointer-events: none;
    transition: width 0.1s ease-out;
}

/* Floating Back-to-Top Button */
.siger-back-to-top {
    position: fixed;
    bottom: 24px;
    right: 22px;
    width: 44px;
    height: 44px;
    background: #006699;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 102, 153, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.9);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.siger-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.siger-back-to-top:hover {
    background: #004d73;
    box-shadow: 0 6px 20px rgba(0, 102, 153, 0.45);
}

/* Content Visibility for Fluid 120Hz Scrolling */
@supports (content-visibility: auto) {
    .siger-cat1-grid,
    .siger-split-sec,
    .siger-cat-grid,
    .siger-related-news,
    .siger-footer {
        content-visibility: auto;
        contain-intrinsic-size: 320px;
    }
}

