/* ======================================================
   WILISPOST.COM ΓÇö Custom CSS v3.8.2
   Matches urbanjabar.com header ΓÇö comprehensive fix
   ====================================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

/* === FIX: Category header title ΓÇö dark text, not blue === */
.archive-header h1,
.archive-header h1 span,
.archive-header h1 span.color1,
.archive-header h1 span.color2,
.archive-header h1 span.color3,
.archive-header h1 span.color4,
.archive-header h1 span.color5 {
    color: #222 !important;
}

/* ======================================================
   ADMIN BAR ΓÇö Handled entirely by admin-bar.blade.php
   Only offsets for sticky-bar .sticky-bar conflict here
   ====================================================== */
body.show-admin-bar .header-bottom.header-sticky.sticky-bar {
    top: 46px !important;
}

/* === DUAL SUPPORT: Desktop shows its header, Mobile shows drawer === */
/* Desktop (ΓëÑ992px): desktop header visible, mobile drawer hidden */
@media (min-width: 992px) {
    .mn-overlay,
    .mn-drawer,
    .mn-mobile-bar {
        display: none !important;
    }
}

/* Mobile (≤991px): hide desktop header & nav, show mobile drawer */
@media (max-width: 991px) {
    .header-middle-kagemi {
        display: none !important;
    }
    .header-bottom.header-sticky {
        display: none !important;
    }
    .header-mobile-top {
        display: none !important;
    }
    .mobile_menu,
    .slicknav_menu,
    .slicknav_btn,
    .slicknav_nav {
        display: none !important;
    }
    /* Collapse the <header> tag itself on mobile — all desktop parts are hidden,
       only the fixed mobile bar remains (out of flow) */
    header.main-header {
        height: 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }
    .mn-mobile-bar {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10000 !important;
        background: #f8f9fa !important;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    }
    .mn-overlay {
        display: block !important;
    }
    .mn-drawer {
        display: flex !important;
    }
    body {
        overflow-x: hidden !important;
        padding-top: 56px !important;
    }
    body.show-admin-bar {
        padding-top: 92px !important;
    }
    body.show-admin-bar .mn-mobile-bar {
        top: 36px !important;
    }
    body.mn-no-scroll {
        overflow: hidden !important;
    }
    /* Reduce gap before content on mobile */
    main.position-relative.pt-40 {
        padding-top: 4px !important;
    }
    .pt-40 {
        padding-top: 4px !important;
    }
    .hops-ad-slot.hops-ad-top-banner {
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* === Sticky nav: fixed to top when scrolling past header === */
.header-bottom.header-sticky.sticky-bar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e0e0e0;
    animation: slideDown 0.35s ease-out;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.kagemi-desktop-nav {
    display: flex !important;
}

/* === Hide login & social icons from blue nav bar === */
.main-menu > li.text-left.d-block.d-md-none {
    display: none !important;
}

/* === Match urbanjabar.com header style === */
/* Hide offcanvas (All Sections) & login from white header */
.header-middle-kagemi .kagemi-offcanvas-btn {
    display: none !important;
}
.header-middle-kagemi .col-lg-8 > .d-inline-flex > .d-inline-block:last-child {
    display: none !important;
}

/* Home icon in nav bar (replaces "Home" text link) ΓÇö urbanjabar.com style */
.nav__home {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav__home a {
    color: #333;
    font-size: 18px;
    padding: 0 14px 0 8px;
    display: flex;
    align-items: center;
    height: 46px;
    transition: color 0.2s;
    border-right: 1px solid #eff0f6;
}
.nav__home a:hover {
    color: var(--color-primary, #ff7a00);
}

/* Nav bar: dark text on white background (urbanjabar style) */
.header-bottom .main-menu > li > a {
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: capitalize !important;
    letter-spacing: 0.2px !important;
    padding: 10px 14px !important;
    line-height: 26px !important;
    transition: color 0.2s;
}
.header-bottom .main-menu > li > a:hover,
.header-bottom .main-menu > li.active > a {
    color: var(--color-primary, #ff7a00) !important;
}

/* Search button in header middle ΓÇö urbanjabar style */
.header-search-btn {
    background: #eff0f6 !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s;
}
.header-search-btn i {
    font-size: 14px !important;
    color: #6e7191 !important;
}
.header-search-btn:hover {
    background: #e4e5ed !important;
}
.header-search-btn:hover i {
    color: #4a4b6a !important;
}

/* Social icon hover */
.header-middle-kagemi .d-inline-flex a[target="_blank"]:hover {
    background: #e4e5ed !important;
    color: #4a4b6a !important;
}

.header-bottom .kagemi-search-trigger {
    color: #333 !important;
    border-color: transparent !important;
}
.header-bottom .kagemi-search-trigger:hover {
    color: var(--color-primary, #ff7a00) !important;
}

/* Hide "Home" text link from nav (replaced by home icon) */
.main-menu > li.cat-item:first-child {
    display: none !important;
}

/* Desktop header middle: clean, professional spacing */
.header-middle-kagemi {
    border-bottom: none !important;
    padding-top: 18px !important;
    padding-bottom: 14px !important;
}
.header-middle-kagemi > .container > .row {
    align-items: center !important;
}
.header-middle-kagemi .header-logo-group {
    display: inline-flex;
    align-items: center;
    gap: 0;
}
.header-middle-kagemi .header-logo-group img {
    max-height: 84px !important;
    width: auto !important;
    display: block;
}
.header-middle-kagemi .col-lg-8 > .d-inline-flex {
    display: inline-flex !important;
    align-items: center !important;
    gap: 22px !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
}
.header-middle-kagemi .header-date {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    color: #6e7191;
    font-size: 14px;
}
@media (max-width: 1199px) {
    .header-middle-kagemi .col-lg-8 > .d-inline-flex {
        gap: 14px !important;
    }
}

/* ======================================================
   3. MAIN CONTENT AREA
   ====================================================== */
main.position-relative.pt-40 {
    padding-top: 15px !important;
}

.background12,
main.position-relative {
    background: #fff !important;
}

.background-white {
    background: #fff !important;
}

/* ======================================================
   4. HERO SLIDER ΓÇö Side-by-side layout
   ====================================================== */
/* Big slider left */
.hl-big-slider {
    border-radius: 8px !important;
    overflow: hidden;
}

@media only screen and (min-width: 1080px) {
    .featured-slider-1-items .slick-list {
        min-height: 400px;
    }
}

.featured-slider-1 {
    border-radius: 8px !important;
    overflow: hidden;
}

.featured-slider-1 .arrow-cover .slick-btn {
    transition: all 0.3s !important;
}

/* Small thumbnails right ΓÇö hover effect */
.hl-small-item {
    transition: background 0.2s;
    border: 1px solid #f0f0f0;
}
.hl-small-item:hover {
    background: #f5f8fc !important;
}
.hl-small-item:hover h6 a {
    color: var(--color-primary) !important;
}

/* ======================================================
   4b. POST CARD IMAGE OVERLAY
   ====================================================== */
.post-module-1 .thumb-overlay .img-hover-slide::after,
.loop-grid .thumb-overlay .img-hover-slide::after,
.loop-list .thumb-overlay .img-hover-slide::after,
.related-posts .thumb-overlay .img-hover-slide::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 75% !important;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0) 100%
    ) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    border-radius: inherit !important;
}

.post-module-1 .thumb-overlay .post-content,
.loop-grid .thumb-overlay .post-content,
.post-module-1 .thumb-overlay .entry-meta,
.post-module-1 .thumb-overlay .post-title,
.thumb-overlay .post-cat,
.thumb-overlay .post-in,
.thumb-overlay .img-link {
    position: relative !important;
    z-index: 2 !important;
}

.post-module-1 .thumb-overlay .post-title a,
.loop-grid .thumb-overlay .post-title a {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}
.post-module-1 .thumb-overlay .entry-meta span,
.loop-grid .thumb-overlay .entry-meta span {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* ======================================================
   5. HIDE SOCIAL SHARE OVERLAYS
   ====================================================== */
.post-thumb .social-share {
    display: none !important;
}
.loop-grid .social-share,
.loop-list .social-share,
.post-block-list .social-share {
    display: none !important;
}

/* ======================================================
   6. SECTION TITLES
   ====================================================== */
.widget-header .widget-title,
.section-title,
h5.widget-title {
    font-family: "Poppins", sans-serif !important;
    letter-spacing: 0.3px !important;
}

/* ======================================================
   7. POST CARD STYLING
   ====================================================== */
.post-title a {
    transition: color 0.2s !important;
}

.entry-meta span {
    font-size: 12px !important;
}

.entry-meta .post-on,
.entry-meta .time-reading {
    font-size: 12px !important;
    color: #999 !important;
}

.loop-grid .entry-meta .hit-count,
.loop-list .entry-meta .hit-count {
    display: none !important;
}

/* ======================================================
   8. EDITORS PICK SECTION
   ====================================================== */
.kagemi-editors-pick {
    margin-top: 10px;
    margin-bottom: 10px;
}

.kagemi-editors-pick .ep-date {
    color: #999 !important;
    font-size: 12px !important;
}

/* ======================================================
   9. POST GRID SECTION
   ====================================================== */
.loop-grid .post-thumb {
    margin-bottom: 15px !important;
}

.loop-grid .post-content {
    padding: 0 !important;
}

/* ======================================================
   10. SIDEBAR WIDGETS
   ====================================================== */
.widget-social-network .follow-us {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}
.widget-social-network .follow-us a {
    border-radius: 6px !important;
    width: calc(50% - 4px) !important;
    height: 46px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 12px !important;
    margin: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    color: #fff !important;
}
.widget-social-network .follow-us a .social-icon {
    display: inline-flex !important;
    align-items: center !important;
    width: 24px !important;
    flex-shrink: 0 !important;
    justify-content: center !important;
}
.widget-social-network .follow-us a .social-icon i.nth-2 {
    display: none !important;
}
.widget-social-network .follow-us a .social-name {
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-left: 6px !important;
    flex: 1 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.widget-social-network .follow-us a .social-count {
    font-size: 11px !important;
    font-weight: 700 !important;
    margin-left: 4px !important;
    flex-shrink: 0 !important;
    opacity: 0.9;
}

.sidebar-widget .widget_categories ul li a {
    color: #333 !important;
    font-size: 14px !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    display: block !important;
}

/* ======================================================
   11. FOOTER ΓÇö SIMPLE DARK (WilisPost)
   ====================================================== */
/* =============================================
   WILIS FOOTER v2 — Pikiran Rakyat inspired
   ============================================= */
footer {
    background: #000 !important;
}
.wilis-footer {
    background: #000 !important;
    padding: 56px 0 36px !important;
    color: #e5e7eb;
}

/* --- Main footer layout: info left, categories right --- */
.wilis-footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 24px;
}

/* Left column: logo, company, address, contact, badge */
.wilis-footer-col-info {
    flex: 1 1 320px;
    max-width: 480px;
    min-width: 260px;
}
.wilis-footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}
.wilis-footer-logo-img {
    display: block;
    max-height: 96px;
    width: auto;
    height: auto;
}
.wilis-footer-logo-img--white {
    filter: none;
}
.wilis-footer-logo-img--invert {
    filter: brightness(0) invert(1);
}
.wilis-footer-company {
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px 0;
    line-height: 1.45;
}

/* Contact / Redaksi card */
.wilis-footer-contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 16px;
    max-width: 420px;
}
.wilis-footer-contact-title {
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 14px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.wilis-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.wilis-footer-contact-item:last-child {
    margin-bottom: 0;
}
.wilis-footer-contact-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    color: #3b82f6;
    margin-top: 2px;
}
.wilis-footer-contact-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}
.wilis-footer-contact-item--link .wilis-footer-contact-icon {
    color: #3b82f6;
}
.wilis-footer-address {
    color: #d1d5db !important;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}
.wilis-footer-phone,
.wilis-footer-email-line,
.wilis-footer-map-link {
    margin: 0;
    line-height: 1.5;
}
.wilis-footer-phone a,
.wilis-footer-email-line a,
.wilis-footer-map-link a {
    color: #e5e7eb !important;
    font-size: 13.5px;
    text-decoration: none;
    word-break: break-word;
}
.wilis-footer-map-link a {
    color: #60a5fa !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.wilis-footer-phone a:hover,
.wilis-footer-email-line a:hover {
    color: #60a5fa !important;
}
.wilis-footer-map-link a:hover {
    color: #93c5fd !important;
}

/* Dewan Pers badge */
.wilis-footer-dewan-pers {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 16px;
    max-width: 100%;
}
.wilis-footer-dewan-pers-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}
.wilis-footer-dewan-pers-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
}
.wilis-footer-dewan-pers-icon svg {
    width: 22px;
    height: 22px;
}
.wilis-footer-dewan-pers-text {
    color: #111827;
    font-size: 12.5px;
    line-height: 1.35;
}
.wilis-footer-dewan-pers-text strong {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 2px;
}
.wilis-footer-dewan-pers-text span {
    display: block;
    color: #374151;
}

/* Right column: category menu columns */
.wilis-footer-col-menu {
    flex: 1 1 auto;
    min-width: 260px;
    max-width: 760px;
}
.wilis-footer-menu-title {
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 18px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #3b82f6;
    display: inline-block;
}
.wilis-footer-menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 40px;
}
.wilis-footer-menu-col {
    flex: 1 1 130px;
    min-width: 120px;
    max-width: 200px;
}
.wilis-footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wilis-footer-menu-list li {
    margin: 0 0 10px 0;
}
.wilis-footer-menu-list a {
    color: #d1d5db !important;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.45;
    transition: color .2s ease;
    display: inline-block;
    padding: 2px 0;
}
.wilis-footer-menu-list a:hover {
    color: #60a5fa !important;
}

/* Partner / media network row */
.wilis-footer-partner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.wilis-footer-partner-label {
    color: #9ca3af !important;
    font-size: 13px;
    font-weight: 500;
}
.wilis-footer-partner-img {
    max-height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
    .wilis-footer-partner {
        justify-content: center;
        text-align: center;
    }
}

/* --- Footer bottom bar: page links + copyright + badges --- */
.wilis-footer-bottom {
    background: #111 !important;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.wilis-footer-bottom-inner {
    padding: 18px 0;
}

/* Page links row */
.wilis-footer-pages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 12px;
}
.wilis-footer-pages a {
    color: #9ca3af !important;
    font-size: 12.5px;
    text-decoration: none;
    padding: 3px 14px;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: color 0.2s;
    white-space: nowrap;
}
.wilis-footer-pages a:last-child {
    border-right: none;
}
.wilis-footer-pages a:hover {
    color: #60a5fa !important;
}

/* Copyright + badge row */
.wilis-footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.wilis-footer-copyright {
    flex: 1 1 auto;
}
.wilis-footer-copyright p {
    color: #9ca3af !important;
    font-size: 12px;
    margin: 0;
}
.wilis-footer-copyright a {
    color: #9ca3af !important;
    text-decoration: none;
}
.wilis-footer-copyright a:hover {
    color: #e5e7eb !important;
}
.wilis-footer-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.wilis-footer-badge-link {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 6px;
    border-radius: 6px;
    line-height: 0;
    transition: transform .15s ease, background .15s ease;
}
.wilis-footer-badge-link:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}
.wilis-footer-badge-img {
    display: block;
    max-height: 44px;
    width: auto;
    height: auto;
}
.wilis-footer-badge-id {
    display: block;
    color: #9ca3af;
    font-size: 10px;
    line-height: 1.3;
    text-align: center;
    margin-top: 4px;
}

/* Align footer with theme content container */
.footer-area.wilis-footer > .container,
.wilis-footer-bottom > .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Force footer to be a full-width block after all content */
footer,
body > footer {
    width: 100% !important;
    display: block !important;
    clear: both !important;
    float: none !important;
}

@media (max-width: 991px) {
    .wilis-footer-main {
        gap: 32px 24px;
    }
    .wilis-footer-menu-grid {
        justify-content: space-between;
        gap: 10px 24px;
    }
    .wilis-footer-col-menu {
        max-width: 100%;
    }
    .wilis-footer-legal {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .wilis-footer {
        padding: 36px 0 28px !important;
    }
    .wilis-footer-main {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .wilis-footer-col-info,
    .wilis-footer-col-menu {
        max-width: 100%;
        width: 100%;
    }
    .wilis-footer-logo-link {
        display: inline-flex;
    }
    .wilis-footer-company,
    .wilis-footer-address,
    .wilis-footer-phone,
    .wilis-footer-email-line,
    .wilis-footer-map-link {
        text-align: left;
    }
    .wilis-footer-contact-card {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 480px;
        width: 100%;
    }
    .wilis-footer-contact-title {
        text-align: left;
    }
    .wilis-footer-dewan-pers {
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .wilis-footer-menu-title {
        display: block;
        text-align: center;
        margin-bottom: 16px;
    }
    .wilis-footer-menu-grid {
        justify-content: center;
        gap: 8px 28px;
    }
    .wilis-footer-menu-col {
        flex: 1 1 130px;
        max-width: none;
        text-align: left;
    }
    .wilis-footer-menu-list a {
        padding: 6px 0;
        font-size: 13.5px;
    }
    .wilis-footer-pages a {
        padding: 5px 10px;
        font-size: 12px;
    }
}

@media (max-width: 479px) {
    .wilis-footer {
        padding: 28px 0 24px !important;
    }
    .wilis-footer-main {
        gap: 28px;
    }
    .wilis-footer-col-info {
        font-size: 13px;
    }
    .wilis-footer-contact-card {
        padding: 14px 16px;
    }
    .wilis-footer-contact-icon {
        width: 16px;
        height: 16px;
    }
    .wilis-footer-menu-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 20px;
        text-align: left;
    }
    .wilis-footer-menu-col {
        width: 100%;
    }
    .wilis-footer-menu-list li {
        margin-bottom: 2px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .wilis-footer-menu-list a {
        display: block;
        padding: 9px 0;
        font-size: 13.5px;
    }
    .wilis-footer-pages {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 16px;
    }
    .wilis-footer-pages a {
        display: block;
        width: 100%;
        max-width: 320px;
        padding: 10px 0;
        font-size: 13px;
        text-align: center;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .wilis-footer-pages a:last-child {
        border-bottom: none;
    }
}


/* Ensure paging section has proper bottom spacing */
.hops-paging {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* ======================================================
   11b. KANAL CITIZEN — Home Section
   ====================================================== */
.hops-citizen-home {
    background: #f8f9fa;
    padding: 30px 0 35px;
    margin-bottom: 10px;
}

.hops-citizen-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.hops-citizen-header .hh-section-title {
    margin-bottom: 0;
}

.hops-citizen-more {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
    white-space: nowrap;
}
.hops-citizen-more:hover {
    color: #1a4a7a;
}

.hops-citizen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hops-citizen-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hops-citizen-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.hops-citizen-img {
    display: block;
    position: relative;
    line-height: 0;
}
.hops-citizen-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.hops-citizen-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ff7a00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1;
}

.hops-citizen-body {
    padding: 14px;
}

.hops-citizen-cat {
    display: block;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hops-citizen-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
    color: #222;
}
.hops-citizen-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.hops-citizen-title a:hover {
    color: var(--color-primary);
}

.hops-citizen-date {
    color: #888;
    font-size: 12px;
}

@media (max-width: 991px) {
    .hops-citizen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hops-citizen-home {
        padding: 24px 0;
    }
    /* Swipeable horizontal track like DBN PLAY */
    .hops-citizen-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(170px, 46vw);
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
    }
    .hops-citizen-grid::-webkit-scrollbar {
        display: none;
    }
    .hops-citizen-card {
        scroll-snap-align: start;
        width: 100%;
    }
    .hops-citizen-img img {
        height: auto;
        aspect-ratio: 16 / 10;
    }
    .hops-citizen-body {
        padding: 12px;
    }
    .hops-citizen-title {
        font-size: 14px;
    }
}

/* ======================================================
   12. SCROLL PROGRESS BAR
   ====================================================== */
.scroll-progress {
    background: var(--color-primary) !important;
}

/* ======================================================
   13. IMAGE CONSISTENCY
   ====================================================== */
.img-hover-slide {
    background-size: cover;
    background-position: center;
}

.post-module-1 .thumb-overlay .img-hover-slide {
    min-height: 200px;
}

.single-thumnail img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.kagemi-headline .kagemi-slider-img {
    width: 100%;
    height: 444px;
    object-fit: cover;
    display: block;
}

.entry-main-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

img.lazy {
    background-color: #f0f0f0;
}

/* ======================================================
   13b. BERITA TERKINI & TERPOPULER ΓÇö Harian Haluan Style
   ====================================================== */

/* Section wrapper */
.hh-section {
    background: #fff;
    padding: 20px 0 30px;
}

/* Section title bar ΓÇö blue left border */
.hh-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    display: block;
}
.hh-section-title span {
    display: inline-block;
    position: relative;
}

/* ---- Berita Terkini List ---- */
.hh-latest__wrap {
    display: flex;
    flex-direction: column;
}

.hh-latest__item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e8e8e8;
}
.hh-latest__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hh-latest__img {
    flex: 0 0 188px;
    width: 188px;
    margin-right: 15px;
}
.hh-latest__img a {
    display: block;
    line-height: 0;
}
.hh-latest__img img {
    width: 188px;
    height: 113px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #f0f0f0;
}

.hh-latest__right {
    flex: 1;
    min-width: 0;
}

.hh-latest__subtitle {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 6px;
    font-family: "Poppins", sans-serif;
}
.hh-latest__subtitle a {
    color: var(--color-primary);
    text-decoration: none;
}
.hh-latest__subtitle a:hover {
    color: #1a4a80;
}

.hh-latest__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 8px;
    font-family: "Poppins", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hh-latest__link {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}
.hh-latest__link:hover {
    color: var(--color-primary);
}

.hh-latest__date {
    font-size: 12px;
    color: #999;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

/* ---- Terpopuler Sidebar in Berita Terkini (match article page style) ---- */
.hh-section .kagemi-popular-list .d-flex {
    padding: 10px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    align-items: flex-start !important;
}
.hh-section .kagemi-popular-list .d-flex:last-child {
    border-bottom: none !important;
}
.hh-section .kagemi-popular-num {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #333 !important;
    min-width: 28px !important;
    line-height: 1.4 !important;
    font-family: "Poppins", sans-serif !important;
    background: none !important;
    margin-right: 10px !important;
}
.hh-section .kagemi-popular-num::after {
    display: none !important;
}
.hh-section .kagemi-popular-list h6 {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    padding-top: 4px !important;
}
.hh-section .kagemi-popular-list h6 a {
    color: #1a2a4a !important;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
}
.hh-section .kagemi-popular-list h6 a:hover {
    color: var(--color-primary) !important;
}
.hh-section .kagemi-popular-date {
    font-size: 12px !important;
    color: #999 !important;
    display: block !important;
    margin-top: 2px !important;
}

/* ---- Mobile Responsive ---- */
@media (max-width: 767px) {
    .hh-latest__img {
        flex: 0 0 120px;
        width: 120px;
        margin-right: 12px;
    }
    .hh-latest__img img {
        width: 120px;
        height: 72px;
    }
    .hh-latest__title {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    .hh-latest__subtitle {
        font-size: 10px;
        margin-bottom: 4px;
    }
    .hh-latest__date {
        font-size: 11px;
    }
}

/* Terpopuler sidebar ΓÇö category pages (legacy support) */
.hops-category-page .kagemi-popular-list .d-flex {
    padding: 10px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    align-items: flex-start !important;
}
.hops-category-page .kagemi-popular-list .d-flex:last-child {
    border-bottom: none !important;
}
.hops-category-page .kagemi-popular-num {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #333 !important;
    min-width: 28px !important;
    line-height: 1.4 !important;
    font-family: "Poppins", sans-serif !important;
    background: none !important;
    margin-right: 10px !important;
}
.hops-category-page .kagemi-popular-num::after {
    display: none !important;
}
.hops-category-page .kagemi-popular-list h6 {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    padding-top: 4px !important;
}
.hops-category-page .kagemi-popular-list h6 a {
    color: #1a2a4a !important;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
}
.hops-category-page .kagemi-popular-list h6 a:hover {
    color: var(--color-primary) !important;
}
.hops-category-page .kagemi-popular-date {
    display: none !important;
}

/* ======================================================
   13c. TOPIK KHUSUS ΓÇö 4 topic cards side-by-side
   ====================================================== */
.topik-khusus-section .topik-card {
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.topik-khusus-section .topik-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px);
}
.topik-khusus-section .topik-card ul li a {
    transition: color 0.2s;
}
.topik-khusus-section .topik-card ul li a:hover {
    color: var(--color-primary) !important;
}

/* Legacy tab styles ΓÇö hide if still present */
.block-tab-item .post-block-style .post-thumb.mb-30 img.lazy,
.block-tab-item .post-block-style .post-thumb.mb-30 img {
    height: 140px !important;
    width: 100% !important;
    object-fit: cover !important;
}
.block-tab-item .social-share {
    display: none !important;
}

/* ======================================================
   13d. ARTIKEL LAINNYA ΓÇö Compact grid (230x138 like harianhaluan)
   ====================================================== */
.sidebar-widget.loop-grid .post-thumb.mb-30 img.lazy,
.sidebar-widget.loop-grid .post-thumb.mb-30 img,
.loop-grid .post-thumb img.lazy,
.loop-grid .post-thumb img {
    height: 140px !important;
    width: 100% !important;
    object-fit: cover !important;
}

.loop-grid .post-thumb.mb-30 {
    margin-bottom: 10px !important;
}

.loop-grid .post-excerpt {
    display: none !important;
}

.loop-grid .post-title {
    font-size: 15px !important;
    line-height: 1.4 !important;
    margin-bottom: 4px !important;
}
.loop-grid .post-title a {
    font-weight: 600 !important;
    color: #222 !important;
    font-family: "Poppins", sans-serif !important;
}
.loop-grid .post-title a:hover {
    color: var(--color-primary) !important;
}

.loop-grid .entry-meta.meta-0 {
    margin-bottom: 6px !important;
}
.loop-grid .entry-meta.meta-1 {
    margin-top: 6px !important;
    margin-bottom: 8px !important;
}
.loop-grid .entry-meta.meta-1 span {
    font-size: 12px !important;
}

.loop-grid .col-lg-4 {
    margin-bottom: 20px !important;
}

/* ======================================================
   13e. GLOBAL POST CARD ΓÇö reduce min-height for all
   ====================================================== */
.post-module-1 .thumb-overlay .img-hover-slide {
    min-height: 200px;
}

/* ======================================================
   14. MOBILE LAYOUT
   ====================================================== */
/* (Mobile header overrides moved to top of file) */

@media (max-width: 767px) {
    /* Hero: stack vertically on mobile */
    .kagemi-headline .col-lg-8,
    .kagemi-headline .col-md-8 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .kagemi-headline .col-lg-4,
    .kagemi-headline .col-md-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .kagemi-headline .kagemi-slider-img {
        height: 260px !important;
    }
    .hl-small-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .hl-small-item {
        flex: 0 0 calc(50% - 4px) !important;
        max-width: calc(50% - 4px) !important;
    }
    .hl-small-item .hl-small-img {
        flex: 0 0 80px !important;
        max-width: 80px !important;
    }
    .hl-small-item .hl-small-img img {
        width: 80px !important;
        height: 60px !important;
    }
    .hl-small-item .hl-small-text h6 {
        font-size: 11px !important;
    }

    /* List pages */
    .loop-list-1 article.row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    .loop-list-1 article.row > .col-md-6:first-child {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    .loop-list-1 article.row > .col-md-6:last-child {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    .loop-list-1 article.row .img-hover-slide {
        min-height: 180px;
    }

    .archive .loop-list-1 .first-post .img-hover-slide {
        min-height: 250px;
    }

    .related-posts article.row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    .related-posts article.row > .col-md-4 {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
    }
    .related-posts article.row > .col-md-8 {
        flex: 0 0 66.666% !important;
        max-width: 66.666% !important;
    }
    .related-posts .img-hover-slide {
        min-height: 130px;
    }

    .loop-list .post-thumb.mr-20 {
        margin-right: 20px !important;
    }
    .related-posts .post-thumb.mr-20 {
        margin-right: 20px !important;
    }

    .post-module-1 .thumb-overlay .img-hover-slide {
        min-height: 200px;
    }

    .featured-slider-2-items .post-thumb .thumb-overlay {
        min-height: 300px !important;
    }

    .post-content h4.post-title {
        font-size: 1rem;
        line-height: 1.4;
    }

    .archive-header .border-color-1.mt-30 {
        margin: 15px 0 !important;
    }

    /* Mobile: editors pick 2 columns */
    .kagemi-editors-pick .ep-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* Mobile: Berita Terkini compact */
    .recent-area .berita-terkini-list .col-md-3 {
        flex: 0 0 130px !important;
        max-width: 130px !important;
    }
    .recent-area .berita-terkini-list .img-hover-slide {
        min-height: 85px !important;
        max-height: 85px !important;
    }
    .recent-area .berita-terkini-list .post-title {
        font-size: 13px !important;
    }
    .recent-area .berita-terkini-list article.row {
        flex-wrap: nowrap !important;
    }

    /* Mobile: tighter section spacing */
    .pt-30 {
        padding-top: 15px !important;
    }
    .pb-30 {
        padding-bottom: 15px !important;
    }

    /* Mobile: Topik Khusus ΓÇö 2 columns */
    .topik-khusus-section .col-lg-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    .topik-khusus-section .topik-card img {
        height: 120px !important;
    }
    .topik-khusus-section .topik-card ul li a {
        font-size: 12px !important;
    }

    /* Mobile: Artikel Lainnya compact */
    .sidebar-widget.loop-grid .post-thumb.mb-30 img.lazy,
    .sidebar-widget.loop-grid .post-thumb.mb-30 img,
    .loop-grid .post-thumb img.lazy,
    .loop-grid .post-thumb img {
        height: 120px !important;
    }
    .loop-grid .post-title {
        font-size: 14px !important;
    }
    .loop-grid .entry-meta.meta-1 {
        flex-wrap: wrap !important;
        gap: 2px 6px !important;
        overflow: hidden !important;
    }
    .loop-grid .entry-meta.meta-1 span {
        font-size: 11px !important;
        white-space: nowrap !important;
    }
    .loop-grid .entry-meta.meta-1 .hit-count {
        display: none !important;
    }

    /* Mobile: reduce global thumb overlay */
    .post-module-1 .thumb-overlay .img-hover-slide {
        min-height: 180px !important;
    }
}

/* ======================================================
   15. SMALL MOBILE (< 480px)
   ====================================================== */
@media (max-width: 479px) {
    /* Hero: single column thumbnails */
    .hl-small-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .kagemi-headline .kagemi-slider-img {
        height: 200px !important;
    }

    .loop-list-1 article.row .img-hover-slide {
        min-height: 140px;
    }
    .related-posts .img-hover-slide {
        min-height: 100px;
    }
    .post-module-1 .thumb-overlay .img-hover-slide {
        min-height: 160px;
    }
    .featured-slider-2-items .post-thumb .thumb-overlay {
        min-height: 220px !important;
    }
    .archive .loop-list-1 .first-post .img-hover-slide {
        min-height: 200px;
    }

    /* Very small: Berita Terkini even more compact */
    .recent-area .berita-terkini-list .col-md-3 {
        flex: 0 0 110px !important;
        max-width: 110px !important;
    }
    .recent-area .berita-terkini-list .img-hover-slide {
        min-height: 75px !important;
        max-height: 75px !important;
    }
    .recent-area .berita-terkini-list .post-title {
        font-size: 12px !important;
    }
    .recent-area .berita-terkini-list .entry-meta.meta-0 {
        margin-bottom: 3px !important;
    }
    .recent-area .berita-terkini-list .entry-meta.meta-1 {
        display: none !important;
    }

    /* Very small: editors pick single column */
    .kagemi-editors-pick .ep-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Small mobile: Topik Khusus ΓÇö single column */
    .topik-khusus-section .col-lg-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Small mobile: Artikel Lainnya compact */
    .sidebar-widget.loop-grid .post-thumb.mb-30 img.lazy,
    .sidebar-widget.loop-grid .post-thumb.mb-30 img,
    .loop-grid .post-thumb img.lazy,
    .loop-grid .post-thumb img {
        height: 120px !important;
    }
    .loop-grid .post-title {
        font-size: 13px !important;
    }
    .loop-grid .entry-meta.meta-1 .time-reading {
        display: none !important;
    }

    /* Small mobile: reduce global img overlay */
    .post-module-1 .thumb-overlay .img-hover-slide {
        min-height: 150px !important;
    }
}

/* ======================================================
   16. TABLET (768px - 991px)
   ====================================================== */
@media (min-width: 768px) and (max-width: 991px) {
    .img-hover-slide {
        min-height: 220px;
    }
    .related-posts .img-hover-slide {
        min-height: 160px;
    }
    .kagemi-editors-pick .ep-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    /* Topik Khusus: 2 columns on tablet */
    .topik-khusus-section .col-lg-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* ======================================================
   17. GLOBAL FONT FAMILY ΓÇö Poppins
   ====================================================== */
body,
.post-title a,
.widget-title,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

/* ======================================================
   18. HOPS-STYLE CATEGORY PAGE LAYOUT
   Matches hops.id category page design
   ====================================================== */

/* === Category Page Wrapper ΓÇö matches homepage recent-area === */
.hops-category-page {
    padding-top: 30px;
    padding-bottom: 30px;
    background: #fff !important;
}

/* Sidebar alignment */
.hops-category-page .col-lg-4 {
    align-self: flex-start;
}

/* Widget-area inside category sidebar ΓÇö match homepage */
.hops-category-page .widget-area {
    padding-left: 0;
}

/* === Section Title (colored accent bar) === */
.hops-section-title {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
    position: relative;
}
.hops-section-title span {
    display: inline-block;
    position: relative;
}
.hops-section-title span::after {
    display: none;
}

/* === Search Bar (Search Results Page) === */
.hops-search-bar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease;
}
.hops-search-bar:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 160, 0.12);
}
.hops-search-bar .hops-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-body, sans-serif);
    color: #333;
    background: transparent;
    min-width: 0;
}
.hops-search-bar .hops-search-input::placeholder {
    color: #999;
}
.hops-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}
.hops-search-btn:hover {
    background: #1d4f80;
}

/* Search filter row */
.hops-search-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.hops-search-filter-info {
    font-size: 15px;
    color: #555;
}
.hops-search-filter-info strong {
    color: #222;
}
.hops-search-filter-sort select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 14px;
    color: #333;
    background: #fff;
    cursor: pointer;
    outline: none;
}
.hops-search-filter-sort select:focus {
    border-color: var(--color-primary);
}

/* === Headline (Featured Post ΓÇö Big Image) === */
.hops-headline {
    margin-bottom: 25px;
}
.hops-hl-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}
.hops-hl-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.hops-hl-img:hover img {
    transform: scale(1.03);
}
.hops-hl-box {
    padding: 0;
}
.hops-hl-cat {
    display: inline-block;
    margin-bottom: 8px;
}
.hops-hl-cat a {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: 3px;
}
.hops-hl-cat a:hover {
    background: #1d4f80;
    color: #fff;
}
.hops-hl-title {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px 0;
    color: #222;
}
.hops-hl-title a {
    color: inherit;
    text-decoration: none;
}
.hops-hl-title a:hover {
    color: var(--color-primary);
}
.hops-hl-date {
    font-size: 13px;
    color: #999;
    font-family: "Poppins", sans-serif;
}

/* === Latest Article List (thumbnail + title) === */
.hops-latest {
    margin-top: 10px;
}
.hops-latest-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #e8e8e8;
}
.hops-latest-item:first-child {
    border-top: 1px solid #e8e8e8;
}
.hops-latest-img {
    flex-shrink: 0;
    width: 188px;
    height: 113px;
    overflow: hidden;
    border-radius: 6px;
}
.hops-latest-img a {
    display: block;
    width: 100%;
    height: 100%;
}
.hops-latest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.hops-latest-img:hover img {
    transform: scale(1.05);
}
.hops-latest-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hops-latest-cat {
    display: inline-block;
    margin-bottom: 6px;
}
.hops-latest-cat a {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.3px;
    padding: 2px 10px;
    border-radius: 3px;
}
.hops-latest-cat a:hover {
    background: #1d4f80;
    color: #fff;
}
.hops-latest-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
    color: #222;
}
.hops-latest-title a {
    color: inherit;
    text-decoration: none;
}
.hops-latest-title a:hover {
    color: var(--color-primary);
}
.hops-latest-date {
    font-size: 12px;
    color: #999;
    font-family: "Poppins", sans-serif;
}

/* === Pagination (hops-style) === */
.hops-paging {
    padding: 25px 0;
    text-align: center;
}
.hops-paging nav {
    display: flex;
    justify-content: center;
}
.hops-paging .pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.hops-paging .pagination li,
.hops-paging .pagination .page-item {
    display: inline-block;
}
.hops-paging .pagination li a,
.hops-paging .pagination li span,
.hops-paging .pagination .page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.hops-paging .pagination li a:hover,
.hops-paging .pagination .page-item .page-link:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.hops-paging .pagination li.active span,
.hops-paging .pagination .page-item.active .page-link {
    background: var(--color-primary);
    color: #fff !important;
    border-color: var(--color-primary);
    overflow: visible;
    text-indent: 0;
    font-size: 14px;
    line-height: 36px;
}
.hops-paging .pagination li.disabled span,
.hops-paging .pagination .page-item.disabled .page-link {
    color: #ccc;
    cursor: not-allowed;
    background: #f9f9f9;
}
/* Hide "Previous" button on first page (disabled state) */
.hops-paging .pagination .page-item.disabled {
    display: none;
}

/* === Terpopuler Sidebar ΓÇö now uses homepage kagemi classes === */
/* Styles from kagemi.css: .widget-title, .kagemi-popular-num, .kagemi-popular-list, .kagemi-popular-date */

/* === Hide old archive-header on hops pages === */
.hops-category-page .archive-header {
    display: none;
}

/* === Responsive ΓÇö Category Page === */
@media (max-width: 991px) {
    .hops-category-page .col-lg-4 {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .hops-latest-img {
        width: 120px;
        height: 72px;
    }
    .hops-latest-title {
        font-size: 14px;
    }
    .hops-hl-title {
        font-size: 18px;
    }
    .hops-section-title {
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .hops-latest-img {
        width: 100px;
        height: 60px;
    }
    .hops-latest-title {
        font-size: 13px;
    }
    .hops-latest-cat a {
        font-size: 11px;
    }
    .hops-latest-date {
        font-size: 11px;
    }
    .hops-hl-title {
        font-size: 16px;
    }
}

/* === Indeks Berita — Date Range Filter === */
.hops-indeks-filter {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}
.hops-indeks-filter-label {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}
.hops-indeks-filter-date {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hops-indeks-filter-date > span {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}
.hops-daterange-picker {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 7px 14px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    white-space: nowrap;
    min-width: 280px;
}
.hops-daterange-picker:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 160, 0.08);
}
#daterange-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* === LIHAT SEMUA Button === */
.hops-lihat-semua-wrap {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.hops-lihat-semua {
    display: inline-block;
    padding: 10px 36px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    background: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}
.hops-lihat-semua:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Responsive — Indeks filter */
@media (max-width: 767px) {
    .hops-indeks-filter {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 12px;
    }
    .hops-indeks-filter-date {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
    }
    .hops-daterange-picker {
        font-size: 12px;
        padding: 6px 10px;
        min-width: 0;
        width: 100%;
    }
    .hops-lihat-semua {
        font-size: 13px;
        padding: 8px 28px;
    }
}

/* ======================================================
   19. HOPS-STYLE ARTICLE/POST PAGE
   Matches hops.id article detail page design
   ====================================================== */

/* === Article Page Wrapper === */
.hops-article-page {
    padding-top: 25px;
    padding-bottom: 40px;
    background: #fff !important;
}
.hops-article-page .col-lg-4 {
    align-self: flex-start;
}
.hops-article-page .widget-area {
    padding-left: 0;
}

/* === Breadcrumb === */
.hops-breadcrumb {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}
.hops-breadcrumb a {
    color: #666;
    text-decoration: none;
}
.hops-breadcrumb a:hover {
    color: var(--color-primary);
}
.hops-bc-sep {
    margin: 0 6px;
    color: #ccc;
}
.hops-bc-current {
    color: #999;
    font-weight: 400;
}

/* === Article Title === */
.hops-read-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    color: #222;
    margin: 0 0 15px 0;
}

/* === Author + Date Meta === */
.hops-read-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.hops-read-author-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.hops-read-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hops-read-author-name {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}
.hops-read-author-name:hover {
    color: var(--color-primary);
}
.hops-read-date {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #999;
}

/* === Kompas.com Style Credits === */
/* === Author Kredensial === */
.hops-kredensial {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.hops-kredensial-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.hops-kredensial-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #e0e0e0;
}
.hops-kredensial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hops-kredensial-avatar-editor {
    margin-left: -8px;
    z-index: 1;
}
.hops-kredensial-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.hops-kredensial-names {
    font-family: "Poppins", sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.hops-kredensial-names a {
    color: #222;
    text-decoration: none;
    font-size: 12.5px;
}
.hops-kredensial-names a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}
.hops-kredensial-sep {
    margin: 0 6px;
    color: #bbb;
    font-weight: 300;
    font-size: 12px;
}
.hops-kredensial-role-label {
    color: #6b7280;
    font-weight: 400;
    font-size: 11.5px;
    margin-right: 3px;
}
.hops-kredensial-date {
    font-family: "Poppins", sans-serif;
    font-size: 11.5px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.4;
}

/* === Bottom Kredensial === */
.hops-bottom-kredensial {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #87c6e3;
}
.hops-bottom-kredensial .hops-kredensial-avatar {
    width: 36px;
    height: 36px;
}
.hops-bottom-kredensial .hops-kredensial-names {
    font-size: 13px;
}
.hops-bottom-kredensial .hops-kredensial-names a {
    font-size: 13px;
}

/* === Inline Social Share Bar === */
.hops-social-bar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    padding: 8px 0;
}
.hops-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}
.hops-social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}
.hops-social-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.hops-social-label {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    color: #666;
    font-weight: 500;
    line-height: 1.2;
}
/* Social circle colors */
.hops-social-fb {
    background: #3b5998;
}
.hops-social-x {
    background: #14171a;
}
.hops-social-wa {
    background: #25d366;
}
.hops-social-tg {
    background: #0088cc;
}
.hops-social-line {
    background: #00b900;
}
.hops-social-copy {
    background: #6b7280;
}
.hops-social-more {
    background: #9ca3af;
}
.hops-social-extra {
    display: none;
    width: 100%;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 6px;
}
.hops-social-extra.show {
    display: flex !important;
}
.hops-social-more-btn {
    position: relative;
}
.share-copied-msg-inline {
    background: #22c55e;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    animation: fadeInUp 0.3s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .hops-social-bar {
        gap: 10px;
    }
    .hops-social-circle {
        width: 36px;
        height: 36px;
    }
    .hops-social-label {
        font-size: 9px;
    }
    .hops-kredensial-names {
        font-size: 11.5px;
    }
    .hops-kredensial-names a {
        font-size: 11.5px;
    }
    .hops-kredensial-date {
        font-size: 11px;
    }
    .hops-kredensial-avatar {
        width: 30px;
        height: 30px;
    }
}

/* === Social Share Buttons === */
.hops-read-share {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.hops-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.2s;
}
.hops-share-btn:hover {
    opacity: 0.85;
    color: #fff;
}
.hops-share-fb {
    background: #3b5998;
}
.hops-share-tw {
    background: #1da1f2;
}
.hops-share-wa {
    background: #25d366;
}

/* === Featured Image === */
.hops-read-photo {
    margin-bottom: 25px;
}
.hops-read-photo-img {
    border-radius: 6px;
    overflow: hidden;
}
.hops-read-photo-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 12/7;
    object-fit: cover;
    display: block;
}
.hops-read-photo-caption {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    line-height: 1.5;
    font-style: italic;
}

/* === Description / Summary Block (Blockquote style) === */
.hops-read-summary {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1.75;
    color: #444;
    background: #f8f9fa;
    border-left: 4px solid #1e73be;
    margin: 20px 0 24px;
    padding: 16px 20px;
    border-radius: 0 6px 6px 0;
    quotes: none;
}
.hops-read-summary p {
    margin: 0;
}

/* === Article Content === */
.hops-read-content {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}
.hops-read-content p {
    margin-bottom: 18px;
}
.hops-read-content a {
    color: var(--color-primary);
    text-decoration: none;
}
.hops-read-content a:hover {
    text-decoration: underline;
}
.hops-read-content strong.read__others,
.hops-read-content .read__others {
    display: block;
    background: #f7f8fa;
    border-left: 4px solid var(--color-primary);
    padding: 12px 16px;
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    color: #222;
}
.hops-read-content .read__others a {
    color: var(--color-primary);
    font-weight: 600;
}

/* Baca Juga box - auto-injected related article links */
.baca-juga-box {
    display: block;
    background: linear-gradient(135deg, #f0f5ff 0%, #f7f8fa 100%);
    border-left: 4px solid var(--color-primary);
    padding: 14px 18px;
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.6;
    border-radius: 0 6px 6px 0;
    transition: background 0.2s ease;
}
.baca-juga-box:hover {
    background: linear-gradient(135deg, #e8effd 0%, #f0f3f8 100%);
}
.baca-juga-label {
    font-weight: 700;
    color: var(--color-primary);
    margin-right: 4px;
}
.baca-juga-box a {
    color: #222;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.baca-juga-box a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.hops-read-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
.hops-read-content figure {
    margin: 20px 0;
}
.hops-read-content figcaption {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    font-style: italic;
}

/* === Article Pagination === */
.hops-page-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0 8px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    flex-wrap: wrap;
    box-sizing: border-box;
    max-width: 100%;
    position: relative;
    z-index: 10;
}
.hops-page-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}
.hops-page-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    min-width: 0;
    flex: 1;
}
.hops-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border: 1px solid #d1d5db;
    background: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(37, 99, 160, 0.15);
    touch-action: manipulation;
    user-select: none;
}
.hops-page-num:hover {
    background: #eef4fb;
    border-color: var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
}
.hops-page-num:active {
    background: #d0e3f5;
    border-color: #1e4f82;
    transform: scale(0.95);
}
.hops-page-num.hops-page-active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    cursor: default;
    font-weight: 600;
}
.hops-page-next {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 16px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border: 1px solid #d1d5db;
    background: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    -webkit-tap-highlight-color: rgba(37, 99, 160, 0.15);
    touch-action: manipulation;
    user-select: none;
}
.hops-page-next:hover {
    background: #eef4fb;
    border-color: var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
}
.hops-page-next:active {
    background: #d0e3f5;
    border-color: #1e4f82;
    transform: scale(0.95);
}
.hops-page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 32px;
    font-size: 13px;
    color: #9ca3af;
    letter-spacing: 1px;
    user-select: none;
}
@media (max-width: 768px) {
    .hops-page-pagination {
        gap: 8px;
        padding: 14px 14px;
        margin-bottom: 80px;
    }
    .hops-page-num {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
    .hops-page-next {
        height: 42px;
        padding: 0 18px;
        border-radius: 21px;
        font-size: 14px;
    }
}

/* =========== CUACA TABLE STYLES =========== */
.cuaca-tbl {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.cuaca-tbl th {
    background: #1a73e8;
    color: #fff;
    padding: 10px 12px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.cuaca-tbl td {
    padding: 8px 12px;
    border-bottom: 1px solid #e8eaed;
    font-size: 13px;
    vertical-align: middle;
}
.cuaca-tbl tr:nth-child(odd) td {
    background: #f8f9fa;
}
.cuaca-tbl tr:nth-child(even) td {
    background: #fff;
}
.cuaca-tbl tr:hover td {
    background: #e8f0fe;
}
@media (max-width: 767px) {
    .cuaca-tbl,
    .cuaca-tbl thead,
    .cuaca-tbl tbody,
    .cuaca-tbl th,
    .cuaca-tbl td,
    .cuaca-tbl tr {
        display: block;
    }
    .cuaca-tbl thead {
        display: none;
    }
    .cuaca-tbl tr {
        margin-bottom: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 12px 14px;
        background: #fff !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    }
    .cuaca-tbl tr:hover td {
        background: transparent;
    }
    .cuaca-tbl td {
        padding: 5px 0;
        border: none;
        text-align: left;
        position: relative;
        padding-left: 95px;
        background: transparent !important;
        min-height: 28px;
        font-size: 14px;
        line-height: 1.5;
    }
    .cuaca-tbl td::before {
        position: absolute;
        left: 0;
        top: 5px;
        font-weight: 600;
        text-align: left;
        color: #5f6368;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    .cuaca-tbl td:nth-of-type(1) {
        font-weight: 700;
        padding-left: 0;
        font-size: 15px;
        color: #1a73e8;
        border-bottom: 1px solid #e8eaed;
        padding-bottom: 8px;
        margin-bottom: 4px;
    }
    .cuaca-tbl td:nth-of-type(1)::before {
        content: none;
    }
    .cuaca-tbl td:nth-of-type(2)::before {
        content: "Cuaca";
    }
    .cuaca-tbl td:nth-of-type(3)::before {
        content: "Suhu";
    }
    .cuaca-tbl td:nth-of-type(4)::before {
        content: "Lembab";
    }
    .cuaca-tbl td:nth-of-type(5)::before {
        content: "Angin";
    }
}
/* END CUACA TABLE STYLES */

/* === Source & Editor === */
.hops-read-source,
.hops-read-editor {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}
.hops-read-source a {
    color: var(--color-primary);
}

/* === Tags === */
.hops-read-tags {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}
.hops-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.hops-tag-item {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    background: #f0f0f0;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
}
.hops-tag-item:hover {
    background: var(--color-primary);
    color: #fff;
}

/* === Related Articles === */
.hops-read-related {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}
.hops-related-list {
    margin-top: 15px;
}
.hops-related-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.hops-related-item:last-child {
    border-bottom: none;
}
.hops-related-img {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
}
.hops-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hops-related-title {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
    color: #222;
}
.hops-related-title a {
    color: inherit;
    text-decoration: none;
}
.hops-related-title a:hover {
    color: var(--color-primary);
}

/* === Terkini Section (article page) === */
.hops-read-latest {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

/* === Terpopuler sidebar for article page === */
.hops-article-page .kagemi-popular-list .d-flex {
    padding: 10px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    align-items: flex-start !important;
}
.hops-article-page .kagemi-popular-list .d-flex:last-child {
    border-bottom: none !important;
}
.hops-article-page .kagemi-popular-num {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #333 !important;
    min-width: 28px !important;
    line-height: 1.4 !important;
    font-family: "Poppins", sans-serif !important;
    background: none !important;
    margin-right: 10px !important;
}
.hops-article-page .kagemi-popular-num::after {
    display: none !important;
}
.hops-article-page .kagemi-popular-list h6 {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    padding-top: 4px !important;
}
.hops-article-page .kagemi-popular-list h6 a {
    color: #1a2a4a !important;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
}
.hops-article-page .kagemi-popular-list h6 a:hover {
    color: var(--color-primary) !important;
}
.hops-article-page .kagemi-popular-date {
    display: none !important;
}

/* === Hide default theme elements on hops article === */
.hops-article-page .archive-header,
.hops-article-page .main_content {
    display: none;
}

/* === Responsive ΓÇö Article Page === */
@media (max-width: 991px) {
    .hops-article-page .col-lg-4 {
        margin-top: 30px;
    }
    .hops-read-title {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    .hops-read-title {
        font-size: 20px;
    }
    .hops-read-content {
        font-size: 15px;
    }
    .hops-related-img {
        width: 100px;
        height: 65px;
    }
    .hops-related-title {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .hops-read-title {
        font-size: 18px;
    }
    .hops-read-content {
        font-size: 14px;
        line-height: 1.75;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .hops-read-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 13px;
    }
    .hops-read-content blockquote {
        padding: 10px 14px;
        margin: 16px 0;
        font-size: 14px;
    }
    .hops-read-content img {
        max-width: 100%;
        height: auto;
    }
    .baca-juga-box {
        padding: 10px 14px;
        font-size: 13px;
        margin: 16px 0;
    }
    .hops-related-img {
        width: 90px;
        height: 58px;
    }
    .hops-kredensial-names {
        font-size: 11px;
    }
    .hops-kredensial-names a {
        font-size: 11px;
    }
    .hops-kredensial-date {
        font-size: 10.5px;
    }
    .hops-kredensial-avatar {
        width: 28px;
        height: 28px;
    }
    .hops-social-circle {
        width: 34px;
        height: 34px;
    }
    .hops-social-label {
        font-size: 9px;
    }
    .hops-breadcrumb {
        font-size: 12px;
    }
    .hops-bottom-kredensial {
        gap: 8px;
        padding: 8px 12px;
    }
    .hops-bottom-kredensial .hops-kredensial-avatar {
        width: 32px;
        height: 32px;
    }
    .hops-ugc-disclaimer {
        padding: 10px 14px;
        font-size: 12px;
    }
    .hops-page-pagination {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 14px;
    }
    .hops-page-numbers {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        width: 100%;
    }
    .hops-page-num {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .hops-page-ellipsis {
        width: 22px;
        height: 36px;
        font-size: 14px;
    }
    .hops-page-next {
        height: 36px;
        padding: 0 16px;
        font-size: 13px;
        border-radius: 18px;
        max-width: none;
        overflow: visible;
    }
    .hops-page-label {
        font-size: 13px;
    }
    .hops-latest-item {
        gap: 10px;
        padding: 12px 0;
    }
    .hops-latest-img {
        width: 85px;
        height: 55px;
    }
    .hops-latest-title {
        font-size: 12.5px;
    }
    .hops-related-item {
        gap: 10px;
    }
    .hops-related-img {
        width: 85px;
        height: 55px;
    }
    .hops-related-title {
        font-size: 12.5px;
    }
    .hops-tag-item {
        font-size: 11px;
        padding: 4px 10px;
    }
    .hops-section-title {
        font-size: 15px;
    }
    .hops-read-summary {
        font-size: 13px;
        padding: 12px 14px;
    }
}
@media (max-width: 360px) {
    .hops-read-title {
        font-size: 16px;
    }
    .hops-read-content {
        font-size: 13px;
        line-height: 1.7;
    }
    .baca-juga-box {
        font-size: 12px;
        padding: 8px 12px;
    }
    .hops-latest-img {
        width: 75px;
        height: 50px;
    }
    .hops-latest-title {
        font-size: 12px;
    }
    .hops-related-img {
        width: 75px;
        height: 50px;
    }
    .hops-related-title {
        font-size: 12px;
    }
    .hops-page-pagination {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px 12px;
    }
    .hops-page-numbers {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        width: 100%;
    }
    .hops-page-num {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .hops-page-ellipsis {
        width: 18px;
        height: 32px;
        font-size: 13px;
    }
    .hops-page-next {
        height: 32px;
        padding: 0 14px;
        font-size: 12px;
        border-radius: 16px;
        max-width: none;
        overflow: visible;
    }
    .hops-page-label {
        font-size: 12px;
    }
    .hops-bottom-kredensial {
        gap: 6px;
        padding: 8px 10px;
    }
    .hops-ugc-disclaimer {
        padding: 8px 12px;
        font-size: 11.5px;
    }
    .hops-read-photo-caption {
        font-size: 11px;
    }
}

/* ======================================================
   Section 20: HOPS-STYLE AUTHOR/PENULIS PAGE
   ====================================================== */
.hops-author-page {
    background: #fff;
    padding: 20px 0 40px;
}

/* --- Author Profile Header --- */
.hops-author-profile {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.hops-author-cover {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--color-primary) 0%, color-mix(in srgb, var(--color-primary) 70%, #fff) 50%, color-mix(in srgb, var(--color-primary) 80%, #000) 100%);
    position: relative;
}
.hops-author-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}
.hops-author-header {
    text-align: center;
    margin-top: -50px;
    padding: 0 20px 24px;
    position: relative;
    z-index: 2;
}
.hops-author-thumb {
    display: inline-block;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    margin-bottom: 12px;
    background: #f3f4f6;
}
.hops-author-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hops-author-name {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.hops-author-desc {
    font-size: 14px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Posts List --- */
.hops-author-posts {
    margin-top: 20px;
}
.hops-author-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.hops-author-item:first-child {
    padding-top: 0;
}
.hops-author-item-img {
    flex-shrink: 0;
    width: 188px;
    height: 113px;
    border-radius: 6px;
    overflow: hidden;
}
.hops-author-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hops-author-item-right {
    flex: 1;
    min-width: 0;
}
.hops-author-item-cat a {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.3px;
}
.hops-author-item-cat a:hover {
    color: color-mix(in srgb, var(--color-primary) 80%, #000);
}
.hops-author-item-cat {
    margin: 0 0 4px;
}
.hops-author-item-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 6px;
}
.hops-author-item-title a {
    color: #222;
    text-decoration: none;
}
.hops-author-item-title a:hover {
    color: var(--color-primary);
}
.hops-author-item-date {
    font-size: 12px;
    color: #999;
}

/* --- Pagination --- */
.hops-author-paging {
    margin-top: 20px;
    text-align: center;
}
.hops-author-paging .pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.hops-author-paging .page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s;
}
.hops-author-paging .page-item .page-link:hover {
    background: #f0f0f0;
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.hops-author-paging .pagination .page-item.active .page-link {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #fff !important;
    overflow: visible !important;
    text-indent: 0 !important;
    font-size: 14px !important;
    line-height: 36px !important;
}
.hops-author-paging .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}

/* --- Terpopuler sidebar: match homepage style --- */
.hops-author-page .kagemi-popular-num {
    font-family: "Poppins", sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: #ccc !important;
    min-width: 36px !important;
    text-align: center !important;
    margin-right: 10px !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
}
.hops-author-page .kagemi-popular-date {
    display: none !important;
}
.hops-author-page .d-flex.align-items-start {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.hops-author-page .d-flex.align-items-start h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}
.hops-author-page .d-flex.align-items-start h6 a {
    color: #222;
    text-decoration: none;
}
.hops-author-page .d-flex.align-items-start h6 a:hover {
    color: var(--color-primary);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .hops-author-page .col-lg-4 {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .hops-author-cover {
        height: 120px;
    }
    .hops-author-header {
        margin-top: -42px;
    }
    .hops-author-thumb {
        width: 82px;
        height: 82px;
    }
    .hops-author-name {
        font-size: 18px;
    }
    .hops-author-item-img {
        width: 120px;
        height: 75px;
    }
    .hops-author-item-title {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .hops-author-cover {
        height: 90px;
    }
    .hops-author-header {
        margin-top: -38px;
    }
    .hops-author-thumb {
        width: 72px;
        height: 72px;
        border-width: 3px;
    }
    .hops-author-item-img {
        width: 100px;
        height: 65px;
    }
    .hops-author-item-title {
        font-size: 13px;
    }
}

/* --- Follow Section (profile header) --- */
.hops-follow-section {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hops-follow-stats {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
}
.hops-follow-stat {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
}
.hops-follow-stat:hover {
    color: var(--color-primary);
}
.hops-follow-count {
    font-weight: 700;
    color: #222;
    margin-right: 3px;
}
.hops-follow-label {
    color: #777;
}
.hops-follow-dot {
    color: #bbb;
    font-size: 16px;
    line-height: 1;
}
.hops-follow-action {
    margin-top: 2px;
}
.hops-btn-follow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 110px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    border: 2px solid var(--color-primary);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: var(--color-primary);
    color: #fff;
}
.hops-btn-follow:hover {
    background: color-mix(in srgb, var(--color-primary) 80%, #000);
    border-color: color-mix(in srgb, var(--color-primary) 80%, #000);
    color: #fff;
}
.hops-btn-follow.following {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.hops-btn-follow.following:hover {
    background: #fee2e2;
    border-color: #ef4444;
    color: #ef4444;
}
.hops-btn-follow.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* --- Author Follow Page (followers / following tab) --- */
.hops-author-follow-page {
    margin-top: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 0 0 20px;
    overflow: hidden;
}
.hops-follow-page-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
}
.hops-follow-page-tab {
    flex: 1;
    text-align: center;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #999;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}
.hops-follow-page-tab:hover {
    color: #555;
    background: #fafafa;
}
.hops-follow-page-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}
.hops-follow-page-tab-count {
    font-weight: 700;
    color: #ef4444;
    margin-right: 3px;
}
.hops-follow-page-tab.active .hops-follow-page-tab-count {
    color: var(--color-primary);
}

/* Follow list items */
.hops-follow-page-list {
    padding: 0 20px;
}
.hops-follow-page-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 0;
    color: #999;
    font-size: 14px;
}
.hops-follow-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: hops-spin 0.7s linear infinite;
}
@keyframes hops-spin {
    to {
        transform: rotate(360deg);
    }
}
.hops-follow-page-empty {
    text-align: center;
    padding: 30px 0;
    color: #aaa;
    font-size: 14px;
}
.hops-follow-user-card,
.hops-follow-user {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.hops-follow-user-card:last-child,
.hops-follow-user:last-child {
    border-bottom: none;
}
.hops-follow-user-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px;
    flex: 1;
    min-width: 0;
    text-decoration: none !important;
    color: inherit;
}
.hops-follow-user-link:hover {
    color: inherit;
    text-decoration: none !important;
}
img.hops-follow-user-avatar,
.hops-follow-user-avatar {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    border-radius: 50% !important;
    object-fit: cover;
    flex-shrink: 0;
    background: #f3f4f6;
    display: block !important;
    overflow: hidden;
}
.hops-follow-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hops-follow-user-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.hops-follow-user-name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hops-follow-user-name a {
    color: inherit;
    text-decoration: none;
}
.hops-follow-user-name a:hover {
    color: var(--color-primary);
}
.hops-follow-user-meta,
.hops-follow-user-followers {
    font-size: 12px;
    color: #999;
    display: block;
}
.hops-follow-user-btn {
    flex-shrink: 0;
}
.hops-follow-user-btn .hops-btn-follow {
    min-width: 90px;
    padding: 6px 18px;
    font-size: 13px;
}
.hops-btn-follow-sm {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    border: 2px solid var(--color-primary);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: var(--color-primary);
    color: #fff !important;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1.4;
}
.hops-btn-follow-sm:hover {
    background: color-mix(in srgb, var(--color-primary) 80%, #000);
    border-color: color-mix(in srgb, var(--color-primary) 80%, #000);
    color: #fff !important;
    text-decoration: none !important;
}
.hops-btn-follow-sm.following {
    background: transparent;
    color: var(--color-primary) !important;
    border-color: var(--color-primary);
}
.hops-btn-follow-sm.following:hover {
    background: #fee2e2;
    border-color: #ef4444;
    color: #ef4444 !important;
}
.hops-btn-follow-sm.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Load more & all loaded */
.hops-follow-page-loadmore {
    text-align: center;
    padding: 12px 20px 0;
}
.hops-btn-loadmore {
    display: inline-block;
    padding: 8px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s;
}
.hops-btn-loadmore:hover {
    background: var(--color-primary);
    color: #fff;
}
.hops-follow-page-allloaded {
    text-align: center;
    padding: 8px 0 0;
    color: var(--color-primary);
    font-size: 13px;
}

/* Back to profile link */
.hops-btn-back-profile {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}
.hops-btn-back-profile:hover {
    color: var(--color-primary);
}

/* Report user link */
.hops-report-user {
    margin-top: 6px;
}
.hops-report-user-link {
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 12px;
    color: #aaa;
    padding: 0;
    text-decoration: none;
}
.hops-report-user-link:hover {
    color: #ef4444;
}
.hops-report-user-link:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 3px; }

/* Report user modal */
.hops-report-modal-overlay { align-items: center; background: rgba(15, 23, 42, .56); display: flex; inset: 0; justify-content: center; padding: 20px; position: fixed; z-index: 10050; }
.hops-report-modal-overlay[hidden] { display: none !important; }
.hops-report-modal { background: #fff; border-radius: 14px; box-shadow: 0 24px 70px rgba(15, 23, 42, .35); max-height: calc(100vh - 40px); max-width: 510px; overflow: auto; width: 100%; }
.hops-report-modal-header { align-items: center; border-bottom: 1px solid #e7ecf2; display: flex; justify-content: space-between; padding: 18px 20px; }
.hops-report-modal-header h3 { color: #172033; font-size: 19px; font-weight: 700; margin: 0; }
.hops-report-modal-close { background: transparent; border: 0; color: #667085; cursor: pointer; font-size: 27px; line-height: 1; padding: 0 4px; }
.hops-report-modal-body { padding: 20px; }
.hops-report-modal-desc { color: #475467; font-size: 14px; line-height: 1.55; margin: 0 0 14px; }
.hops-report-reasons { display: grid; gap: 8px; }
.hops-report-reason-item { align-items: center; border: 1px solid #e1e7ef; border-radius: 8px; color: #344054; cursor: pointer; display: flex; font-size: 14px; gap: 9px; padding: 10px 12px; }
.hops-report-reason-item:hover { background: color-mix(in srgb, var(--color-primary) 8%, #fff); border-color: color-mix(in srgb, var(--color-primary) 40%, #fff); }
.hops-report-reason-item input { accent-color: var(--color-primary); }
.hops-report-detail { border: 1px solid #d9e1eb; border-radius: 8px; box-sizing: border-box; font-family: inherit; font-size: 14px; margin-top: 14px; min-height: 88px; padding: 10px 12px; resize: vertical; width: 100%; }
.hops-report-detail:focus { border-color: var(--color-primary); outline: 2px solid color-mix(in srgb, var(--color-primary) 15%, transparent); }
.hops-report-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }
.hops-report-btn-cancel, .hops-report-btn-submit { border-radius: 7px; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 700; padding: 10px 15px; }
.hops-report-btn-cancel { background: #fff; border: 1px solid #d0d5dd; color: #475467; }
.hops-report-btn-submit { background: var(--color-primary); border: 1px solid var(--color-primary); color: #fff; }
.hops-report-btn-submit:disabled { cursor: wait; opacity: .65; }
.hops-report-message { border-radius: 7px; font-size: 13px; line-height: 1.45; margin-top: 14px; padding: 10px 12px; }
.hops-report-message-success { background: #ecfdf3; color: #067647; }
.hops-report-message-error { background: #fef3f2; color: #b42318; }

/* Hidden utility */
.hops-hidden {
    display: none !important;
}

/* Verified badge */
.hops-verified-badge {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-left: 4px;
}

/* Responsive follow section */
@media (max-width: 767px) {
    .hops-follow-page-tab {
        font-size: 13px;
        padding: 12px 10px;
    }
    .hops-follow-page-list {
        padding: 0 14px;
    }
    .hops-follow-user-card,
    .hops-follow-user {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 10px;
        padding: 12px 0;
    }
    .hops-follow-user-link {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 10px;
    }
    img.hops-follow-user-avatar,
    .hops-follow-user-avatar {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
    }
    .hops-follow-user-info {
        flex: 1;
        min-width: 0;
    }
    .hops-follow-user-name {
        font-size: 14px;
    }
    .hops-follow-user-btn .hops-btn-follow,
    .hops-btn-follow-sm {
        min-width: 72px;
        padding: 5px 12px;
        font-size: 12px;
    }
    .hops-btn-follow {
        min-width: 100px;
        padding: 7px 20px;
        font-size: 13px;
    }
    .hops-follow-section {
        gap: 8px;
    }
    .hops-author-follow-page {
        margin-top: 14px;
        border-radius: 8px;
        padding: 0 0 14px;
    }
}
@media (max-width: 380px) {
    .hops-follow-user-card,
    .hops-follow-user {
        gap: 8px;
    }
    .hops-follow-user-link {
        gap: 8px;
    }
    img.hops-follow-user-avatar,
    .hops-follow-user-avatar {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px;
    }
    .hops-follow-user-name {
        font-size: 13px;
    }
    .hops-follow-user-followers {
        font-size: 11px;
    }
    .hops-btn-follow-sm {
        min-width: 62px;
        padding: 4px 10px;
        font-size: 11px;
    }
}

/* ======================================================
   21. MOBILE NEWS PORTAL ΓÇö Off-Canvas Drawer v3.9.5
   Profesional mobile UX: hamburger | logo | profile
   Only Γëñ991px. Desktop completely unchanged.
   ====================================================== */

/* ------------------------------------------------
   21-B. MOBILE STICKY HEADER BAR (ANTARA-style)
   ------------------------------------------------ */
.mn-mobile-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.mn-bar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 14px;
    position: relative;
}

/* Hamburger button ΓÇö compact toggle */
.mn-hamburger {
    background: #fff;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.mn-hamburger:hover,
.mn-hamburger:active {
    background: #f0f0f0;
    border-color: #bbb;
}
.mn-hamburger span {
    display: block;
    width: 16px;
    height: 2px;
    background: #555;
    border-radius: 2px;
    transition: all 0.25s ease;
}

/* Logo centered ΓÇö prominent */
.mn-bar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}
.mn-bar-logo img {
    max-height: 54px;
    width: auto;
}

/* Right area: profile icon ΓÇö bordered box to match hamburger */
.mn-bar-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.mn-profile-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    border: 1.5px solid #d0d0d0;
    color: #555;
    font-size: 19px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.mn-profile-btn:hover {
    background: #f0f0f0;
    border-color: #bbb;
    color: #333;
    text-decoration: none !important;
}
.mn-profile-btn.mn-logged-in {
    background: var(--color-primary);
    color: #fff;
}
.mn-profile-btn.mn-logged-in:hover {
    background: #1d4f80;
}

/* ------------------------------------------------
   21-C. OVERLAY BACKDROP
   ------------------------------------------------ */
.mn-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}
.mn-overlay.mn-show {
    opacity: 1;
    visibility: visible;
}

/* ------------------------------------------------
   21-D. OFF-CANVAS DRAWER
   ------------------------------------------------ */
.mn-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: #fff;
    z-index: 10002;
    display: flex !important;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.15);
}
.mn-drawer.mn-open {
    transform: translateX(0);
}

/* Drawer header: logo + close */
.mn-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}
.mn-drawer-logo img {
    max-height: 44px;
    width: auto;
}
.mn-drawer-close {
    background: none;
    border: none;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #555;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}
.mn-drawer-close:hover {
    background: #f0f0f0;
}

/* Drawer search bar */
.mn-drawer-search {
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}
.mn-search-wrap {
    display: flex;
    align-items: center;
    background: #f5f6f8;
    border-radius: 8px;
    overflow: hidden;
    height: 42px;
}
.mn-search-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 14px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #333;
    height: 100%;
    outline: none;
}
.mn-search-wrap input::placeholder {
    color: #aaa;
}
.mn-search-wrap button {
    background: none;
    border: none;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 15px;
    cursor: pointer;
}
.mn-search-wrap button:hover {
    color: var(--color-primary);
}

/* Drawer menu list */
.mn-drawer-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    flex: 1;
    overflow-y: auto;
}
.mn-drawer-menu li {
    margin: 0;
}
.mn-drawer-menu > li > a {
    display: flex;
    align-items: center;
    padding: 13px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f8f8f8;
    transition: all 0.15s ease;
}
.mn-drawer-menu > li > a i.ti-home {
    margin-right: 10px;
    font-size: 16px;
    color: #888;
}
.mn-drawer-menu > li > a:hover,
.mn-drawer-menu > li > a:focus {
    background: #f7f9fc;
    color: var(--color-primary);
}
.mn-drawer-menu > li > a .mn-arrow {
    margin-left: auto;
    font-size: 10px;
    color: #aaa;
    transition: transform 0.25s ease;
}
.mn-has-sub.mn-sub-open > a .mn-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

/* Sub-menu accordion */
.mn-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafbfc;
}
.mn-has-sub.mn-sub-open > .mn-submenu {
    max-height: 600px;
}
.mn-submenu li a {
    display: block;
    padding: 11px 20px 11px 40px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.15s ease;
}
.mn-submenu li a:hover {
    background: #f0f4fa;
    color: var(--color-primary);
}

/* Drawer account/profile section */
.mn-drawer-account {
    padding: 12px 18px 16px;
    border-top: 2px solid #eaedf2;
    margin-top: auto;
    flex-shrink: 0;
    background: #f5f7fa;
}
.mn-drawer-account::before {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #dce0e8;
    border-radius: 2px;
    margin: 0 auto 12px;
}
.mn-drawer-profile-link {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    padding: 12px 16px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333 !important;
    text-decoration: none !important;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e0e4ea;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    margin-bottom: 8px;
}
.mn-drawer-profile-link:last-child {
    margin-bottom: 0;
}
.mn-drawer-profile-link:hover {
    background: #eef3fb;
    border-color: #c5d3e8;
    color: var(--color-primary) !important;
    text-decoration: none !important;
}
.mn-drawer-profile-link i {
    font-size: 17px;
    width: 34px;
    height: 34px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50%;
    background: #eef2f8;
    color: #666;
    flex-shrink: 0;
    line-height: 1;
}
.mn-drawer-profile-link span {
    flex: 1;
    line-height: 1.3;
}
.mn-drawer-profile-link:hover i {
    background: #dce6f5;
    color: var(--color-primary);
}
.mn-drawer-logged-in {
    background: #eef4fb;
    border-color: #c5d3e8;
    color: var(--color-primary) !important;
}
.mn-drawer-logged-in i {
    background: #d4e4f7;
    color: var(--color-primary);
}
.mn-drawer-logout {
    color: #c0392b !important;
    border-color: #f0d0cc;
    background: #fef8f7;
}
.mn-drawer-logout i {
    background: #fdecea;
    color: #c0392b;
}
.mn-drawer-logout:hover {
    background: #fdecea;
    border-color: #e6b3ae;
    color: #a93226 !important;
}

/* Search button in mobile header */
.mn-search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    border: 1.5px solid #d0d0d0;
    color: #555;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    outline: none;
}
.mn-search-btn:hover {
    background: #f0f0f0;
    border-color: #bbb;
    color: #333;
}

/* Drawer footer */
.mn-drawer-footer {
    flex-shrink: 0;
    padding: 14px 18px;
    border-top: 1px solid #e8e8e8;
    background: #fafbfc;
    background: #fafbfc;
}
.mn-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.mn-social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eff0f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e7191;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.mn-social-links a:hover {
    background: var(--color-primary);
    color: #fff;
}
.mn-drawer-date {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #999;
}

/* ------------------------------------------------
   21-E. MOBILE CONTENT LAYOUT (Γëñ991px)
   ------------------------------------------------ */
@media (max-width: 991px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    /* Sidebar stacks below content */
    .recent-area .col-lg-8,
    .recent-area .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .recent-area .col-lg-4 {
        margin-top: 25px !important;
        padding-top: 20px !important;
        border-top: 2px solid #f0f0f0 !important;
    }
    /* Topik Khusus: 2 columns on tablet */
    .topik-khusus-section .col-lg-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* ------------------------------------------------
   21-F. MOBILE PHONE LAYOUT (Γëñ767px)
   Square images, compact spacing, news UX
   ------------------------------------------------ */
@media (max-width: 767px) {
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Tighter global spacing */
    main.position-relative.pt-40 {
        padding-top: 8px !important;
    }
    .pt-30 {
        padding-top: 12px !important;
    }
    .pb-30 {
        padding-bottom: 12px !important;
    }
    .mb-30 {
        margin-bottom: 12px !important;
    }
    .mb-20 {
        margin-bottom: 10px !important;
    }

    /* Section titles */
    .widget-header .widget-title,
    .section-title,
    h5.widget-title {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }

    /* === HERO SLIDER === */
    .kagemi-headline .col-lg-8,
    .kagemi-headline .col-md-8,
    .kagemi-headline .col-lg-4,
    .kagemi-headline .col-md-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .kagemi-headline .kagemi-slider-img {
        height: 220px !important;
        border-radius: 8px !important;
    }
    .kagemi-headline .featured-slider-1 .post-title {
        font-size: 16px !important;
        line-height: 1.3 !important;
    }
    /* Sub-thumbnails: 2x2 grid, SQUARE */
    .kagemi-headline .row.mt-2 {
        margin-left: -4px !important;
        margin-right: -4px !important;
    }
    .kagemi-headline .col-lg-3.col-md-3.col-6 {
        padding-left: 4px !important;
        padding-right: 4px !important;
        margin-bottom: 8px !important;
    }
    .kagemi-headline .col-lg-3.col-md-3.col-6 .post-thumb .thumb-overlay,
    .kagemi-headline .col-lg-3.col-md-3.col-6 .post-thumb .img-hover-slide {
        width: 100% !important;
        height: 0 !important;
        padding-bottom: 100% !important;
        min-height: 0 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }
    .kagemi-headline .col-lg-3.col-md-3.col-6 .post-title {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    /* === EDITORS PICK ΓÇö Square images === */
    .kagemi-editors-pick .ep-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .kagemi-editors-pick .ep-card-img img {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }
    .kagemi-editors-pick .ep-card-body h6 {
        font-size: 12px !important;
        line-height: 1.35 !important;
    }

    /* === GLOBAL: Force all bg-image thumbs to controlled size on mobile === */
    .img-hover-slide {
        min-height: 0 !important;
        height: 0 !important;
        padding-bottom: 100% !important; /* 1:1 square by default */
        background-size: cover !important;
        background-position: center !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    /* === BERITA TERKINI ΓÇö Horizontal card: thumb left + text right === */
    .recent-area .berita-terkini-list article.row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
        padding-bottom: 14px !important;
        margin-bottom: 14px !important;
    }
    .recent-area .berita-terkini-list .col-md-3 {
        flex: 0 0 110px !important;
        max-width: 110px !important;
        padding-right: 0 !important;
    }
    .recent-area .berita-terkini-list .col-md-9 {
        flex: 1 !important;
        max-width: none !important;
        padding-left: 14px !important;
    }
    .recent-area .berita-terkini-list .img-hover-slide {
        width: 110px !important;
        height: 110px !important;
        padding-bottom: 0 !important;
        min-height: 0 !important;
        border-radius: 8px !important;
    }
    .recent-area .berita-terkini-list .post-thumb.mr-20 {
        margin-right: 0 !important;
    }
    .recent-area .berita-terkini-list .post-title {
        font-size: 14px !important;
        line-height: 1.4 !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        display: -webkit-box !important;
        overflow: hidden !important;
    }
    .recent-area .berita-terkini-list .entry-meta.meta-0 {
        margin-bottom: 6px !important;
    }
    .recent-area .berita-terkini-list .entry-meta.meta-0 span {
        font-size: 10px !important;
        padding: 3px 8px 3px 16px !important;
    }
    .recent-area .berita-terkini-list .entry-meta.meta-1 {
        margin-top: 6px !important;
        margin-bottom: 0 !important;
    }
    .recent-area .berita-terkini-list .entry-meta.meta-1 span {
        font-size: 11px !important;
    }
    .recent-area .berita-terkini-list .post-content p.font-medium {
        display: none !important;
    }

    /* === ARTIKEL LAINNYA GRID ΓÇö 2 cols, square === */
    .loop-grid .col-lg-4.col-md-6,
    .loop-grid .col-lg-4,
    .loop-grid .col-lg-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        margin-bottom: 15px !important;
        overflow: hidden !important;
    }
    .loop-grid .post-thumb.mb-30 {
        margin-bottom: 8px !important;
    }
    .loop-grid .post-thumb img,
    .loop-grid .post-thumb img.lazy {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }
    .loop-grid .post-title {
        font-size: 13px !important;
        line-height: 1.35 !important;
    }
    /* Fix meta overflow in grid cards */
    .loop-grid .entry-meta.meta-1 {
        flex-wrap: wrap !important;
        gap: 2px 6px !important;
        overflow: hidden !important;
    }
    .loop-grid .entry-meta.meta-1 span {
        font-size: 11px !important;
        white-space: nowrap !important;
    }
    .loop-grid .entry-meta.meta-1 .hit-count {
        display: none !important;
    }
    .loop-grid .entry-meta.meta-1 .time-reading {
        display: none !important;
    }

    /* === ALL POST CARDS ΓÇö Square on mobile === */
    .post-module-1 .thumb-overlay .img-hover-slide {
        min-height: 0 !important;
        height: 0 !important;
        padding-bottom: 100% !important;
        border-radius: 8px !important;
    }

    /* === LIST PAGES ΓÇö Horizontal card: thumb left + text right === */
    .loop-list-1 article.row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    .loop-list-1 article.row > .col-md-6:first-child {
        flex: 0 0 120px !important;
        max-width: 120px !important;
    }
    .loop-list-1 article.row > .col-md-6:last-child {
        flex: 1 !important;
        max-width: none !important;
    }
    .loop-list-1 article.row .img-hover-slide {
        width: 120px !important;
        height: 120px !important;
        padding-bottom: 0 !important;
        min-height: 0 !important;
        border-radius: 8px !important;
    }
    .archive .loop-list-1 .first-post .img-hover-slide {
        width: 100% !important;
        height: 0 !important;
        padding-bottom: 56% !important; /* 16:9 hero */
        min-height: 0 !important;
    }
    .post-content h4.post-title {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    /* === RELATED POSTS ΓÇö Horizontal card === */
    .related-posts article.row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    .related-posts article.row > .col-md-4 {
        flex: 0 0 100px !important;
        max-width: 100px !important;
    }
    .related-posts article.row > .col-md-8 {
        flex: 1 !important;
        max-width: none !important;
    }
    .related-posts .img-hover-slide {
        width: 100px !important;
        height: 100px !important;
        padding-bottom: 0 !important;
        min-height: 0 !important;
        border-radius: 8px !important;
    }
    .loop-list .post-thumb.mr-20,
    .related-posts .post-thumb.mr-20 {
        margin-right: 12px !important;
    }

    /* === TOPIK KHUSUS ΓÇö Square === */
    .topik-khusus-section .col-lg-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    .topik-khusus-section .topik-card img {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    /* === TERPOPULER SIDEBAR === */
    .kagemi-popular-list .d-flex {
        padding: 8px 0 !important;
    }
    .kagemi-popular-list h6 {
        font-size: 13px !important;
    }

    /* === FOOTER ΓÇö Stack columns === */
    .footer-area .container > .row > [class*="col-lg"],
    .footer-area .container > .row > [class*="col-md"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }
    .footer-bottom-area {
        text-align: center !important;
    }
    .footer-bottom-area .container > .row > [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    /* === HOPS PAGES ΓÇö Square images === */
    .hops-latest-img {
        width: 100px !important;
        height: 100px !important;
        border-radius: 8px !important;
    }
    .hops-latest-img img {
        aspect-ratio: 1 / 1 !important;
        object-fit: cover !important;
    }
    .hops-latest-title {
        font-size: 14px !important;
    }
    .hops-hl-title {
        font-size: 18px !important;
    }
    .hops-read-title {
        font-size: 20px !important;
    }
    .hops-read-content {
        font-size: 15px !important;
    }
    .hops-related-img {
        width: 90px !important;
        height: 90px !important;
        border-radius: 8px !important;
    }
    .hops-related-img img {
        aspect-ratio: 1 / 1 !important;
        object-fit: cover !important;
    }
    .hops-author-item-img {
        width: 100px !important;
        height: 100px !important;
        border-radius: 8px !important;
    }
    .hops-author-item-img img {
        aspect-ratio: 1 / 1 !important;
        object-fit: cover !important;
    }

    /* === SINGLE ARTICLE === */
    .single-content .entry-main-content {
        font-size: 15px !important;
        line-height: 1.75 !important;
    }
    .single-thumnail img {
        border-radius: 8px !important;
    }
}

/* ------------------------------------------------
   21-G. SMALL MOBILE (Γëñ479px)
   ------------------------------------------------ */
@media (max-width: 479px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .mn-bar-logo img {
        max-height: 28px;
    }
    .mn-profile-btn {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .kagemi-headline .kagemi-slider-img {
        height: 180px !important;
    }
    .kagemi-headline .featured-slider-1 .post-title {
        font-size: 14px !important;
    }

    .kagemi-editors-pick .ep-grid {
        gap: 8px !important;
    }

    .recent-area .berita-terkini-list .col-md-3 {
        flex: 0 0 90px !important;
        max-width: 90px !important;
    }
    .recent-area .berita-terkini-list .img-hover-slide {
        width: 90px !important;
        height: 90px !important;
        padding-bottom: 0 !important;
    }
    .recent-area .berita-terkini-list .post-title {
        font-size: 12px !important;
    }
    .recent-area .berita-terkini-list .entry-meta.meta-1 {
        display: none !important;
    }

    .loop-grid .col-lg-4.col-md-6,
    .loop-grid .col-lg-4 {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
    .loop-grid .post-title {
        font-size: 12px !important;
    }

    .loop-list-1 article.row > .col-md-6:first-child {
        flex: 0 0 100px !important;
        max-width: 100px !important;
    }
    .loop-list-1 article.row .img-hover-slide {
        width: 100px !important;
        height: 100px !important;
        padding-bottom: 0 !important;
    }
    .widget-header .widget-title,
    .section-title,
    h5.widget-title {
        font-size: 15px !important;
    }

    .hops-latest-img {
        width: 85px !important;
        height: 85px !important;
    }
    .hops-latest-title {
        font-size: 13px !important;
    }
    .hops-hl-title {
        font-size: 16px !important;
    }
    .hops-read-title {
        font-size: 18px !important;
    }
    .hops-related-img {
        width: 80px !important;
        height: 80px !important;
    }
    .hops-author-item-img {
        width: 85px !important;
        height: 85px !important;
    }
}

/* ------------------------------------------------
   21-H. VERY SMALL (Γëñ360px)
   ------------------------------------------------ */
@media (max-width: 360px) {
    .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .mn-bar-logo img {
        max-height: 24px;
    }
    .mn-hamburger span {
        width: 18px;
    }
    .recent-area .berita-terkini-list .col-md-3 {
        flex: 0 0 80px !important;
        max-width: 80px !important;
    }
    .recent-area .berita-terkini-list .img-hover-slide {
        width: 80px !important;
        height: 80px !important;
        padding-bottom: 0 !important;
    }
    .recent-area .berita-terkini-list .post-title {
        font-size: 11px !important;
    }
    .loop-grid .post-title {
        font-size: 11px !important;
    }
    .kagemi-headline .kagemi-slider-img {
        height: 160px !important;
    }
    .hops-latest-img {
        width: 75px !important;
        height: 75px !important;
    }
}

/* ============================================================
   SEARCH PAGE ΓÇö WilisPost (inspired by hops.id style)
   ============================================================ */

/* Section */
.wp-search-section {
    padding-top: 20px;
}

/* Heading */
.wp-search-heading {
    margin-bottom: 18px;
    border-bottom: 3px solid var(--color-primary, #ff7a00);
    padding-bottom: 0;
}
.wp-search-heading-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0;
    display: inline-block;
    background: var(--color-primary, #ff7a00);
    color: #fff;
    padding: 8px 20px;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Search bar */
.wp-search-bar {
    margin-bottom: 20px;
}
.wp-search-bar-inner {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
}
.wp-search-bar-inner:focus-within {
    border-color: var(--color-primary, #ff7a00);
    box-shadow: 0 0 0 3px rgba(0, 74, 143, 0.08);
}
.wp-search-bar-icon {
    padding: 0 12px;
    color: #999;
    font-size: 16px;
    flex-shrink: 0;
}
.wp-search-bar-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 8px;
    font-size: 15px;
    color: #333;
    background: transparent;
    min-width: 0;
}
.wp-search-bar-input::placeholder {
    color: #aaa;
}
.wp-search-bar-btn {
    background: var(--color-primary, #ff7a00);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    flex-shrink: 0;
}
.wp-search-bar-btn:hover {
    background: color-mix(in srgb, var(--color-primary, #ff7a00) 80%, #000);
}

/* Filter row */
.wp-search-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}
.wp-search-filter-info {
    font-size: 14px;
    color: #555;
}
.wp-search-filter-info strong {
    color: var(--color-primary, #ff7a00);
}
.wp-search-filter-count {
    color: #999;
    font-size: 13px;
}
.wp-search-sort-select {
    padding: 6px 32px 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    background: #fff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E")
        no-repeat right 10px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.wp-search-sort-select:focus {
    outline: none;
    border-color: var(--color-primary, #ff7a00);
}

/* Result items ΓÇö horizontal card list (like hops.id) */
.wp-search-results {
    list-style: none;
    margin: 0;
    padding: 0;
}
.wp-search-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.wp-search-item:first-child {
    padding-top: 0;
}
.wp-search-item:hover {
    background: #fafbfc;
}

/* Thumbnail */
.wp-search-item-thumb {
    flex-shrink: 0;
    width: 220px;
    height: 140px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.wp-search-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s;
}
.wp-search-item:hover .wp-search-item-thumb img {
    transform: scale(1.05);
}
.wp-search-item-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Content side */
.wp-search-item-content {
    flex: 1;
    min-width: 0;
}
.wp-search-item-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-primary, #ff7a00);
    padding: 2px 10px;
    border-radius: 3px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background 0.2s;
}
.wp-search-item-cat:hover {
    background: color-mix(in srgb, var(--color-primary, #ff7a00) 80%, #000);
    color: #fff;
    text-decoration: none;
}
.wp-search-item-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
    color: #222;
}
.wp-search-item-title a {
    color: inherit;
    text-decoration: none;
}
.wp-search-item-title a:hover {
    color: var(--color-primary, #ff7a00);
}
.wp-search-item-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}
.wp-search-item-meta i {
    margin-right: 4px;
    font-size: 11px;
}
.wp-search-item-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.wp-search-item-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Empty state */
.wp-search-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}
.wp-search-empty-icon {
    font-size: 48px;
    color: #ddd;
    display: block;
    margin-bottom: 16px;
}
.wp-search-empty h4 {
    font-size: 18px;
    color: #555;
    margin-bottom: 8px;
}
.wp-search-empty p {
    font-size: 14px;
    color: #999;
}

/* Pagination */
.wp-search-pagination {
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
    margin-top: 10px;
}
.wp-search-pagination .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.wp-search-pagination .pagination .page-item .page-link,
.wp-search-pagination .pagination li a,
.wp-search-pagination .pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    text-decoration: none;
    transition: all 0.15s;
}
.wp-search-pagination .pagination .page-item.active .page-link,
.wp-search-pagination .pagination li.active a,
.wp-search-pagination .pagination li.active span {
    background: var(--color-primary, #ff7a00);
    color: #fff;
    border-color: var(--color-primary, #ff7a00);
}
.wp-search-pagination .pagination .page-item .page-link:hover,
.wp-search-pagination .pagination li a:hover {
    background: #f0f4f8;
    border-color: var(--color-primary, #ff7a00);
    color: var(--color-primary, #ff7a00);
}

/* ---- SEARCH PAGE RESPONSIVE ---- */
@media (max-width: 991px) {
    .wp-search-item-thumb {
        width: 160px;
        height: 100px;
    }
    .wp-search-item-title {
        font-size: 15px;
    }
    .wp-search-section {
        padding-top: 15px;
    }
}
@media (max-width: 767px) {
    .wp-search-item {
        gap: 12px;
        padding: 12px 0;
    }
    .wp-search-item-thumb {
        width: 110px;
        height: 75px;
        border-radius: 5px;
    }
    .wp-search-item-thumb img {
        border-radius: 5px;
    }
    .wp-search-item-title {
        font-size: 14px;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 4px;
    }
    .wp-search-item-cat {
        font-size: 10px;
        padding: 1px 7px;
        margin-bottom: 5px;
    }
    .wp-search-item-meta {
        font-size: 11px;
    }
    .wp-search-bar-input {
        padding: 10px 6px;
        font-size: 14px;
    }
    .wp-search-bar-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    .wp-search-heading-title {
        font-size: 16px;
        padding: 6px 16px;
    }
    .wp-search-filter {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .wp-search-pagination .pagination .page-item .page-link,
    .wp-search-pagination .pagination li a,
    .wp-search-pagination .pagination li span {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .wp-search-item-thumb {
        width: 90px;
        height: 65px;
    }
    .wp-search-item-title {
        font-size: 13px;
    }
    .wp-search-bar-icon {
        padding: 0 8px;
    }
    .wp-search-bar-btn {
        padding: 10px 12px;
        font-size: 12px;
    }
}
/* =====================================================
   AD CONTAINER STYLES (matching hops.id layout)
   ===================================================== */

/* --- General ad wrapper --- */
.hops-ad-slot {
    text-align: center;
    overflow: hidden;
    clear: both;
    line-height: 0;
}
.hops-ad-slot img,
.hops-ad-slot picture {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.hops-ad-slot .ads-item-wrapper,
.hops-ad-slot > div:not([data-type="_mgwidget"]) {
    display: flex;
    justify-content: center;
}
/* --- MGID native widget: reset parent styles and proper container --- */
.hops-ad-slot:has([data-type="_mgwidget"]) {
    overflow: visible;
    line-height: normal;
}
.hops-ad-slot [data-type="_mgwidget"] {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* --- Top leaderboard / Panel Ads (full-width, like desktopTopHome) --- */
.hops-ad-top-banner {
    margin: 16px auto;
    padding: 0;
    max-width: 970px;
    text-align: center;
}
.hops-ad-top-banner img {
    max-width: 970px;
    width: 100%;
    height: auto;
}

/* --- Header ad (below navbar, like hops.id header__middle area) --- */
.hops-ad-header {
    margin: 10px auto;
    padding: 0;
    max-width: 728px;
    text-align: center;
}
.hops-ad-header img {
    max-width: 728px;
    width: 100%;
    height: auto;
}

/* --- In-feed / MCB ads (between articles, like desktopMCB1-3) --- */
.hops-ad-infeed {
    margin: 20px auto;
    padding: 16px 0;
    max-width: 100%;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}
.hops-ad-infeed img {
    max-width: 100%;
    height: auto;
}

/* --- Sidebar ad (fixed position, no sticky overlap) --- */
.hops-ad-sidebar {
    margin: 0 auto 20px;
    padding: 0;
    text-align: center;
    position: static !important;
}
.hops-ad-sidebar img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* --- Before/After article ads (custom-1, custom-2 in post page) --- */
.hops-ad-article {
    margin: 16px auto;
    padding: 0;
    max-width: 100%;
    text-align: center;
}
.hops-ad-article img {
    max-width: 100%;
    height: auto;
}
/* Before-content ad: compact, no wasted space */
.hops-ad-before-content {
    margin: 8px auto 12px;
    min-height: 0 !important;
    height: auto !important;
    contain: content;
}
.hops-ad-before-content ins.adsbygoogle {
    min-height: 0 !important;
    height: auto !important;
}
.hops-ad-before-content ins.adsbygoogle[data-ad-status="unfilled"] {
    display: none !important;
    height: 0 !important;
}
.hops-ad-before-content .ads-item-wrapper,
.hops-ad-before-content > div {
    min-height: 0 !important;
    height: auto !important;
}
.hops-ad-before-content > div > div {
    min-height: 0 !important;
}

/* --- Before-footer ad (custom-3, like bottom of hops content) --- */
.hops-ad-before-footer {
    margin: 20px auto;
    padding: 0;
    max-width: 970px;
    text-align: center;
}
.hops-ad-before-footer img {
    max-width: 970px;
    width: 100%;
    height: auto;
}
/* MGID in before-footer: full-width, responsive */
.hops-ad-before-footer:has([data-type="_mgwidget"]) {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 16px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    position: relative;
    box-sizing: border-box;
}
.hops-ad-before-footer:has([data-type="_mgwidget"]) [data-type="_mgwidget"] {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
/* Capped state: limit height, progressive expand via inline style */
.hops-ad-before-footer.hops-ad-capped:has([data-type="_mgwidget"]) {
    overflow: hidden;
}
/* Show-more gradient overlay + button */
.hops-ad-showmore {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.75) 45%,
        rgba(255, 255, 255, 1) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
    z-index: 10;
    pointer-events: none;
}
.hops-ad-showmore-btn {
    pointer-events: auto;
    background: #ffffff;
    color: #111111;
    border: 1px solid #111111;
    padding: 9px 32px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.hops-ad-showmore-btn:hover {
    background: #111111;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* --- Ad label (small "Iklan" text above ad) --- */
.hops-ad-label {
    display: block;
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-align: center;
    line-height: 1;
}
/* MGID native widget label: "Konten Promosi" instead of "Iklan" */
.hops-ad-slot:has([data-type="_mgwidget"]) .hops-ad-label {
    font-size: 0;
    margin-bottom: 8px;
}
.hops-ad-slot:has([data-type="_mgwidget"]) .hops-ad-label::after {
    content: "Konten Promosi";
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* MGID article ads: proper spacing and separation */
.hops-ad-article:has([data-type="_mgwidget"]) {
    padding: 12px 0 4px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
}
/* Before-article MGID: fit within container, no overflow */
.hops-ad-before-article .hops-ad-scroll-wrap {
    width: 100%;
    overflow: hidden;
}
.hops-ad-before-article .hops-ad-scroll-wrap [data-type="_mgwidget"] {
    width: 100%;
    max-width: 100%;
}
/* Hide entire ad slot when no active ad content (only label present) */
.hops-ad-slot:not(:has(img)):not(:has(iframe)):not(:has(ins)):not(
        :has(.ads-item-wrapper)
    ):not(:has([data-type="_mgwidget"])) {
    display: none !important;
}

/* --- Responsive ads --- */
@media (max-width: 991px) {
    .hops-ad-top-banner {
        max-width: 728px;
    }
    .hops-ad-top-banner img {
        max-width: 728px;
    }
    .hops-ad-header {
        max-width: 100%;
    }
    .hops-ad-header img {
        max-width: 100%;
    }
    .hops-ad-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .hops-ad-top-banner {
        max-width: 100%;
        margin: 10px auto;
    }
    .hops-ad-top-banner img {
        max-width: 100%;
    }
    .hops-ad-header {
        max-width: 100%;
        margin: 8px auto;
    }
    .hops-ad-infeed {
        margin: 12px auto;
        padding: 10px 0;
    }
    .hops-ad-sidebar {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .hops-ad-sidebar img {
        max-width: 100%;
    }
    .hops-ad-before-footer {
        max-width: 100%;
        margin: 10px 0;
    }
    .hops-ad-before-footer:has([data-type="_mgwidget"]) {
        padding: 8px 10px;
        margin: 10px 0;
    }
    .hops-ad-before-footer img {
        max-width: 100%;
    }
    .hops-ad-showmore {
        height: 70px;
        padding-bottom: 10px;
    }
    .hops-ad-showmore-btn {
        padding: 7px 24px;
        font-size: 12px;
    }
    .hops-ad-article {
        margin: 12px auto;
    }
    .hops-ad-before-content {
        margin: 4px auto 8px;
        min-height: 0 !important;
        height: auto !important;
    }
    .hops-ad-before-content ins.adsbygoogle {
        min-height: 0 !important;
        height: auto !important;
    }
}

/* ======================================================
   PHOTO CAPTION TOGGLE (antaranews.com style)
   Mobile only: (!) icon in bottom-right of photos,
   click to reveal caption overlay
   ====================================================== */
@media (max-width: 991px) {
    /* Featured photo wrapper */
    .hops-read-photo {
        position: relative;
    }
    .hops-read-photo .hops-read-photo-img {
        position: relative;
        overflow: visible !important;
    }
    /* Hide caption by default on mobile, show below photo when toggled */
    .hops-read-photo .hops-read-photo-caption {
        display: none;
        position: relative;
        background: none;
        color: #999 !important;
        font-size: 12px;
        line-height: 1.5;
        padding: 0;
        margin-top: 8px;
        border-radius: 0;
        z-index: auto;
        font-style: italic;
        font-family: "Poppins", sans-serif;
        box-sizing: border-box;
    }
    .hops-read-photo .hops-read-photo-caption.caption-visible {
        display: block;
    }

    /* In-content figure captions */
    .hops-read-content figure {
        position: relative;
    }
    .hops-read-content figure figcaption {
        display: none;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.75);
        color: #fff !important;
        font-size: 12px;
        line-height: 1.5;
        padding: 10px 14px;
        margin-top: 0;
        border-radius: 0 0 6px 6px;
        z-index: 5;
        font-style: italic;
        box-sizing: border-box;
    }
    .hops-read-content figure figcaption.caption-visible {
        display: block;
    }

    /* Info (i) button */
    .photo-info-btn {
        position: absolute !important;
        bottom: 10px !important;
        right: 10px !important;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.8);
        font-size: 16px;
        font-weight: 700;
        font-family: Georgia, serif;
        line-height: 26px;
        text-align: center;
        cursor: pointer;
        z-index: 10 !important;
        transition:
            background 0.2s,
            transform 0.2s;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .photo-info-btn:active {
        transform: scale(0.9);
        background: rgba(0, 0, 0, 0.8);
    }
    .photo-info-btn.active {
        background: rgba(37, 99, 160, 0.85);
    }
}

/* Desktop: ensure captions always visible */
@media (min-width: 992px) {
    .photo-info-btn {
        display: none !important;
    }
}

/* ======================================================
   Lihat Foto Lightbox (kompas.com style)
   ====================================================== */
/* Overlay button on featured image */
.hops-read-photo-img {
    position: relative;
}
/* Clickable photo for lightbox */
.hops-read-photo-img[onclick] {
    cursor: pointer;
    transition: opacity 0.2s;
}
.hops-read-photo-img[onclick]:hover {
    opacity: 0.92;
}

/* Lightbox full-screen overlay */
.lf-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
}
.lf-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Header bar */
.lf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    z-index: 2;
    background: #111;
    flex-shrink: 0;
}
.lf-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.lf-back:hover {
    opacity: 0.8;
    color: #fff;
    text-decoration: none;
}
.lf-fullscreen {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 4px;
    padding: 6px 14px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.lf-fullscreen:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

/* Image body area */
.lf-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    min-height: 0;
    padding: 10px 0;
}
.lf-image-wrap {
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 0 60px;
}
.lf-image {
    max-width: 100%;
    max-height: calc(100vh - 180px);
    object-fit: contain;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}
.lf-caption {
    color: #ccc;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 12px;
    font-style: italic;
    text-align: center;
}

/* Navigation arrows */
.lf-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
}
.lf-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}
.lf-prev {
    left: 16px;
}
.lf-next {
    right: 16px;
}

/* Bottom counter */
.lf-counter {
    text-align: center;
    padding: 10px;
    color: #999;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    z-index: 2;
    flex-shrink: 0;
    background: #111;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .lf-header {
        padding: 10px 14px;
    }
    .lf-back {
        font-size: 13px;
    }
    .lf-fullscreen span {
        display: none;
    }
    .lf-image-wrap {
        padding: 0 10px;
    }
    .lf-nav {
        width: 36px;
        height: 36px;
    }
    .lf-prev {
        left: 6px;
    }
    .lf-next {
        right: 6px;
    }
}

/* ──────────────────────────────────────
   AI Content Label
   ────────────────────────────────────── */
.hops-read-dateline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.hops-ai-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f0f0;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    line-height: 1.4;
    border: 1px solid #e0e0e0;
    white-space: nowrap;
}
.hops-ai-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ------------------------------------------------
   MOMENT LOGO (beside main logo — like ANTARA)
   ------------------------------------------------ */
/* === Desktop Header Logo Group === */
.header-logo-group {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
}

/* === Desktop Moment Separator === */
.moment-sep-desktop {
    display: inline-block !important;
    width: 1.5px !important;
    height: 36px !important;
    background: #c8c8c8 !important;
    margin: 0 12px !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

/* === Desktop Moment Link & Image === */
.moment-link-desktop {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
    height: 44px !important;
}
.moment-img-desktop {
    height: 44px !important;
    max-height: 44px !important;
    width: auto !important;
    max-width: 180px !important;
    display: block !important;
    object-fit: contain !important;
}

/* === Mobile Moment Separator === */
.moment-sep-mobile {
    display: inline-block !important;
    width: 1px !important;
    height: 28px !important;
    background: #d0d0d0 !important;
    margin: 0 8px !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

/* === Mobile Moment Link & Image === */
.moment-link-mobile {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
    height: 32px !important;
}
.moment-img-mobile {
    height: 32px !important;
    max-height: 32px !important;
    width: auto !important;
    max-width: 120px !important;
    display: block !important;
    object-fit: contain !important;
}

/* === Mobile bar logo group (flex centering, replaces absolute) === */
.mn-bar-logo-group {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    min-width: 0 !important;
    gap: 0 !important;
    height: 100% !important;
}
.mn-bar-logo-group .mn-bar-logo {
    position: static !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
}
.mn-bar-logo-group .moment-img-mobile {
    height: 32px !important;
    max-height: 32px !important;
}

/* === Drawer header with moment logo === */
.mn-drawer-header {
    flex-wrap: nowrap !important;
}
.mn-drawer-header .d-inline-flex {
    flex-shrink: 1;
    min-width: 0;
}
.mn-drawer-header .moment-sep-mobile {
    height: 24px !important;
    margin: 0 6px !important;
}
.mn-drawer-header .moment-img-mobile {
    height: 26px !important;
    max-height: 26px !important;
    max-width: 80px !important;
}

/* === Tablet logo with moment === */
.logo-tablet .d-inline-flex {
    display: inline-flex !important;
    align-items: center !important;
}
.logo-tablet .moment-img-mobile {
    height: 30px !important;
    max-height: 30px !important;
}

/* === Responsive: small screens === */
@media (max-width: 479px) {
    .moment-img-mobile {
        height: 26px !important;
        max-height: 26px !important;
        max-width: 80px !important;
    }
    .moment-sep-mobile {
        height: 22px !important;
        margin: 0 5px !important;
    }
    .mn-bar-logo-group .moment-img-mobile {
        height: 26px !important;
        max-height: 26px !important;
    }
}
@media (max-width: 360px) {
    .moment-img-mobile {
        height: 22px !important;
        max-height: 22px !important;
        max-width: 64px !important;
    }
    .moment-sep-mobile {
        height: 18px !important;
        margin: 0 4px !important;
    }
    .mn-bar-logo-group .moment-img-mobile {
        height: 22px !important;
        max-height: 22px !important;
    }
}

/* ============================================================
   PROFILE PHOTO PROTECTION — prevent download/save/drag
   ============================================================ */
/* Article author & editor avatars */
.hops-kredensial-avatar {
    position: relative;
    overflow: hidden;
}
.hops-kredensial-avatar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: 3;
}
.hops-kredensial-avatar img {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Author page profile photo */
.hops-author-thumb {
    position: relative;
    overflow: hidden;
}
.hops-author-thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: 3;
}
.hops-author-thumb img {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}

/* Header user avatar (logged-in bar) */
.hdr-user-avatar,
.mb-nav img[style*="border-radius"] {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}

/* ──────────────────────────────────────
   404 Page — Professional News Portal
   ────────────────────────────────────── */
/* ============================================================
   Error Pages (401, 403, 404, 419, 429, 500, 503)
   ============================================================ */
.hops-error-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}
.hops-error-content {
    max-width: 560px;
    margin: 0 auto;
}
.hops-error-code {
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    color: var(--color-primary, #ff7a00);
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 10px;
    letter-spacing: -4px;
}
.hops-error-illustration {
    width: 280px;
    height: 210px;
    margin: 0 auto 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: multiply;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}
.hops-error-icon {
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hops-error-icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--color-primary, #ff7a00);
    opacity: 0.7;
}
.hops-error-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px;
}
.hops-error-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px;
}
.hops-error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hops-error-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.hops-error-btn-primary {
    background: var(--color-primary, #ff7a00);
    color: #fff;
    border: 2px solid var(--color-primary, #ff7a00);
}
.hops-error-btn-primary:hover {
    background: transparent;
    color: var(--color-primary, #ff7a00);
}
.hops-error-btn-primary svg {
    flex-shrink: 0;
}
.hops-error-btn-outline {
    background: transparent;
    color: var(--color-primary, #ff7a00);
    border: 2px solid var(--color-primary, #ff7a00);
}
.hops-error-btn-outline:hover {
    background: var(--color-primary, #ff7a00);
    color: #fff;
}
.hops-error-btn-outline svg {
    flex-shrink: 0;
}
.hops-error-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.hops-error-search:focus-within {
    border-color: var(--color-primary, #ff7a00);
}
.hops-error-search input[type="text"] {
    border: none;
    outline: none;
    padding: 9px 14px;
    font-size: 14px;
    width: 200px;
    min-width: 0;
    background: transparent;
}
.hops-error-search button {
    border: none;
    background: none;
    cursor: pointer;
    padding: 9px 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.hops-error-search button:hover {
    color: var(--color-primary, #ff7a00);
}

/* Latest articles section below error hero */
.hops-error-latest {
    padding: 40px 0 60px;
    background: #fff;
}
.hops-error-latest .hops-section-title {
    margin-bottom: 24px;
}

/* Responsive error pages */
@media (max-width: 767px) {
    .hops-error-hero {
        padding: 40px 0 30px;
    }
    .hops-error-code {
        font-size: 90px;
        letter-spacing: -2px;
    }
    .hops-error-illustration {
        width: 200px;
        height: 150px;
    }
    .hops-error-icon {
        width: 70px;
        height: 70px;
    }
    .hops-error-icon svg {
        width: 56px;
        height: 56px;
    }
    .hops-error-title {
        font-size: 18px;
    }
    .hops-error-desc {
        font-size: 14px;
    }
    .hops-error-actions {
        flex-direction: column;
        gap: 10px;
    }
    .hops-error-search input[type="text"] {
        width: 160px;
    }
    .hops-error-latest {
        padding: 24px 0 40px;
    }
}

/* ======================================================
   ACCOUNT TYPE LABELS — Citizen vs Official
   ====================================================== */
.ugc-card-label,
.hops-ugc-label span {
    display: inline-block;
    background: var(--color-primary, #ff7a00);
    color: #fff;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: 2px 8px;
    border-radius: 4px;
    line-height: 1.4;
    align-self: flex-start;
    vertical-align: middle;
}
.ugc-card-label {
    margin-top: 8px;
    margin-left: 4px;
}
.hops-ugc-label span {
    margin-bottom: 8px;
    font-size: 11px;
    padding: 3px 10px;
}

.ugc-card-label.official,
.hops-ugc-label.official span {
    background: var(--color-primary);
}

/* ======================================================
   GLOBAL UI REFRESH v1.0
   Cohesive modern touches applied site-wide
   ====================================================== */

/* --- 1. Base transitions & link liveness --- */
a,
a:hover,
a:focus {
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body {
    color: #2d2d2d;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: #111827;
    letter-spacing: -0.015em;
}

/* --- 2. Buttons modernized --- */
.button,
.btn,
.btn-primary,
.boxed-btn,
a.read-more,
.hops-btn {
    border-radius: 999px !important;
    font-weight: 600;
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease !important;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--color-primary, #ff7a00) 22%, transparent);
}

.button:hover,
.btn:hover,
.btn-primary:hover,
.boxed-btn:hover,
a.read-more:hover,
.hops-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.97);
    box-shadow: 0 8px 22px color-mix(in srgb, var(--color-primary, #ff7a00) 30%, transparent);
}

.button:active,
.btn:active,
.btn-primary:active {
    transform: translateY(0);
}

a.read-more {
    padding: 8px 14px;
    font-size: 12px;
}

/* --- 3. Form controls --- */
.form-control,
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea,
select {
    border-radius: 10px !important;
    border-color: #e5e7eb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--color-primary, #ff7a00);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary, #ff7a00) 12%, transparent);
}

/* --- 4. Cards / Post cards hover lift --- */
.post-thumb,
.img-hover-scale,
.img-hover-slide,
.hops-read-photo,
.hops-related-img,
.hops-latest-img,
.hops-hl-img,
.ep-img,
.hops-citizen-card,
.hops-benefit-card,
.hops-step,
.widget,
.sidebar-widget,
.editor-picked,
.featured-slider-1,
.featured-slider-2,
.post-carausel-2,
.post-carausel-3,
.topik-card,
.kirim-hero,
.kirim-metrics,
.dbn-play__panel {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-thumb:hover,
.img-hover-scale:hover,
.hops-read-photo:hover,
.hops-related-img:hover,
.hops-latest-img:hover,
.hops-hl-img:hover,
.ep-img:hover,
.hops-citizen-card:hover,
.hops-benefit-card:hover,
.hops-step:hover,
.widget:hover,
.sidebar-widget:hover {
    box-shadow: 0 14px 32px rgba(0, 0, 0, .08);
}

/* --- 5. Images smoother scale --- */
.img-hover-scale img,
.post-thumb img,
.hops-read-photo img,
.hops-related-img img,
.hops-latest-img img,
.hops-hl-img img,
.ep-img img,
.hops-citizen-img img,
.topik-card img {
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-hover-scale:hover img,
.post-thumb:hover img,
.hops-read-photo:hover img,
.hops-related-img:hover img,
.hops-latest-img:hover img,
.hops-hl-img:hover img,
.ep-img:hover img,
.hops-citizen-img:hover img,
.topik-card:hover img {
    transform: scale(1.06);
}

/* --- 6. Section headers modern --- */
.hh-section-title,
.hops-section-title,
.widget-header .widget-title,
.hops-citizen-header .hh-section-title,
.hops-citizen-header h3,
.archive-header h1,
.archive-header h2 {
    font-family: var(--font-header);
    font-weight: 800;
    color: #111827;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 18px;
}

.hh-section-title::after,
.hops-section-title::after,
.widget-header .widget-title::after,
.hops-citizen-header .hh-section-title::after,
.hops-citizen-header h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 4px;
    border-radius: 2px;
    background: var(--color-primary, #ff7a00);
}

.hh-section-title span,
.hops-section-title span {
    color: var(--color-primary, #ff7a00);
}

/* --- 7. "Lihat semua" links --- */
.hops-lihat-semua,
.hops-citizen-more,
.hops-video-stories__all,
.dbn-play__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13px;
    color: var(--color-primary, #ff7a00);
    transition: gap 0.2s ease, color 0.2s ease;
}

.hops-citizen-more:hover,
.hops-video-stories__all:hover,
.dbn-play__all:hover {
    gap: 10px;
    color: var(--color-primary, #ff7a00);
    text-decoration: none;
}

.hops-lihat-semua:hover,
.hops-lihat-semua:active,
.hops-lihat-semua:focus {
    gap: 10px;
    color: #fff;
    background: var(--color-primary, #111);
    text-decoration: none;
    outline: none;
}

/* --- 8. Sidebar widgets --- */
.sidebar-widget {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .03);
}

.widget-header {
    margin-bottom: 18px;
}

.widget-title {
    font-size: 16px;
    font-weight: 800;
}

/* --- 9. Main content cards/containers --- */
.hh-section,
.topik-khusus-section,
.hops-citizen-home,
.hops-official-home {
    margin-bottom: 40px;
}

/* --- 10. Breadcrumb polish --- */
.hops-breadcrumb,
.breadcrumb {
    font-size: 13px;
    color: #6b7280;
}

.hops-breadcrumb a,
.breadcrumb a {
    color: #6b7280;
    transition: color 0.2s ease;
}

.hops-breadcrumb a:hover,
.breadcrumb a:hover {
    color: var(--color-primary, #ff7a00);
}

/* --- 11. Header / Nav enhancements --- */
.header-bottom {
    border-bottom: 1px solid #f0f0f0;
}

.main-header .main-nav ul li a {
    font-weight: 600;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.main-header .main-nav ul li a:hover {
    color: var(--color-primary, #ff7a00) !important;
}

.main-header .main-menu > li:hover > a {
    background: rgba(0, 0, 0, .02);
}

/* --- 12. Pagination --- */
.pagination-area .page-link {
    border-radius: 10px;
    margin: 0 3px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.pagination-area .page-item.active .page-link {
    color: var(--color-primary, #ff7a00);
    font-weight: 800;
}

/* --- 13. Footer links --- */
.footer-area a {
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-area .footer-tittle ul li a:hover {
    padding-left: 6px;
    color: var(--color-primary, #ff7a00);
}

/* --- 14. Global scrollbar (WebKit) --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* --- 15. Mobile refinements --- */
@media (max-width: 767px) {
    h1 { font-size: 1.65rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }

    .sidebar-widget {
        padding: 16px;
        border-radius: 12px;
    }

    .post-thumb,
    .img-hover-scale,
    .hops-citizen-card,
    .topik-card {
        border-radius: 12px;
    }
}

/* --- 16. Selection highlight --- */
::selection {
    background: color-mix(in srgb, var(--color-primary, #ff7a00) 22%, transparent);
    color: #111827;
}

/* ======================================================
   GLOBAL UI REFRESH v2.0
   Deeper public-site cohesion — cards, badges, loops,
   sliders, pagination, widgets, footer, misc overrides
   ====================================================== */

/* --- 1. Unify category / topic badges to DBN orange --- */
.post-cat,
.post-cat a,
.background1,
.background2,
.background3,
.background4,
.background5,
.background6,
.background7,
.background8,
.background9,
.background10,
.background11,
.background12,
.topik-card .topik-card__cat {
    background: var(--color-primary, #ff7a00) !important;
    color: #fff !important;
    border-radius: 999px !important;
}
.post-cat:hover,
.post-cat a:hover {
    color: #fff !important;
    filter: brightness(0.97);
}

/* Force section titles to stay as plain dark text, not colored badges */
body .widget-title.color1,
body .widget-title.color2,
body .widget-title.color3,
body .widget-title.color4,
body .widget-title.color5 {
    background: transparent !important;
    color: #111827 !important;
    border-radius: 0 !important;
}

/* --- 2. Standard loop/post card image rounding & hover lift --- */
.post-card-1-block,
.post-card-2-block,
.post-card-1,
.post-card-2,
.hops-post-list__item,
.loop-grid > article,
.loop-list > article {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card-1-block:hover,
.post-card-2-block:hover,
.hops-post-list__item:hover,
.loop-grid > article:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,.08);
}
.post-card-1-block .post-thumb,
.post-card-2-block .post-thumb,
.post-card-1-block .img-hover-scale,
.post-card-2-block .img-hover-scale,
.post-card-1-block .img-hover-slide,
.post-card-2-block .img-hover-slide {
    border-radius: 16px !important;
    overflow: hidden;
}
.thumb-overlay,
.img-hover-scale .thumb-overlay,
.post-thumb .thumb-overlay {
    background: #f5f5f5 !important;
    border-radius: 16px;
    overflow: hidden;
}

/* --- 3. Carousels / sliders --- */
.featured-slider-1,
.featured-slider-2,
.post-carausel-2,
.post-carausel-3 {
    border-radius: 16px;
    overflow: hidden;
}
.featured-slider-1 .post-thumb,
.featured-slider-2 .post-thumb,
.post-carausel-2 .post-thumb,
.post-carausel-3 .post-thumb {
    border-radius: 16px !important;
}
.slick-arrow,
.post-carausel-2 button.slick-arrow,
.post-carausel-3 button.slick-arrow {
    color: var(--color-primary, #ff7a00) !important;
    border-color: var(--color-primary, #ff7a00) !important;
    border-radius: 50% !important;
    transition: all 0.2s ease;
}
.slick-arrow:hover {
    background: var(--color-primary, #ff7a00) !important;
    color: #fff !important;
}

/* --- 4. Topic / special cards --- */
.topik-card,
.topik-khusus-section .topik-card,
.categories-tab-posts .topik-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.topik-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,.08);
}
.topik-card img,
.topik-card .topik-card__img {
    border-radius: 16px;
    overflow: hidden;
}

/* --- 5. Sidebar widgets as cohesive cards --- */
.widget,
.sidebar-widget,
.widget-area .widget {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,.03);
}
.widget-header,
.widget .widget-header,
.sidebar-widget .widget-header {
    margin-bottom: 18px;
}
.widget-title,
.widget .widget-title,
.sidebar-widget .widget-title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}
.widget_categories ul li a,
.widget_archive ul li a,
.widget_recent_entries ul li a,
.widget_pages ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.widget_categories ul li a:hover,
.widget_archive ul li a:hover,
.widget_recent_entries ul li a:hover,
.widget_pages ul li a:hover {
    color: var(--color-primary, #ff7a00);
    padding-left: 6px;
}

/* --- 6. Pagination active state --- */
.pagination-area .page-item.active .page-link,
.page-item.active .page-link,
.pagination .page-item.active .page-link {
    background: var(--color-primary, #ff7a00) !important;
    border-color: var(--color-primary, #ff7a00) !important;
    color: #fff !important;
    font-weight: 800;
}
.pagination-area .page-link,
.pagination .page-link {
    color: #4b5563;
    border-radius: 10px;
    margin: 0 3px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.pagination-area .page-link:hover,
.pagination .page-link:hover {
    color: var(--color-primary, #ff7a00);
    background: #fff7ed;
}

/* --- 7. Buttons & forms coherence --- */
button.subscribe,
.btn-primary,
.button,
.boxed-btn,
a.read-more,
.hops-btn,
.hops-error-btn-primary,
.wp-search-bar-btn {
    border-radius: 999px !important;
    font-weight: 700 !important;
    background: var(--color-primary, #ff7a00) !important;
    border-color: var(--color-primary, #ff7a00) !important;
    color: #fff !important;
}
button.subscribe:hover,
.btn-primary:hover,
.button:hover,
.boxed-btn:hover,
a.read-more:hover,
.hops-btn:hover,
.wp-search-bar-btn:hover {
    filter: brightness(0.97);
    transform: translateY(-2px);
}
.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus,
.wp-search-bar-inner:focus-within {
    border-color: var(--color-primary, #ff7a00) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary, #ff7a00) 12%, transparent) !important;
}

/* --- 8. Misc blue/pink remapping --- */
.color2,
.primary-color,
.hops-section-title span,
.archive-header h1 span,
.archive-header h1 span.color1,
.archive-header h1 span.color2,
.archive-header h1 span.color3,
.archive-header h1 span.color4,
.archive-header h1 span.color5 {
    color: var(--color-primary, #ff7a00) !important;
}

/* Badge Member di komentar pakai background primary + teks putih */
.hops-opini-badge.member {
    background: var(--color-primary, #ff7a00);
    color: #fff !important;
}

/* --- 9. Popular / numbered list --- */
.kagemi-popular-num {
    background: var(--color-primary, #ff7a00) !important;
    color: #fff !important;
}
.kagemi-popular-list li a:hover {
    color: var(--color-primary, #ff7a00);
}

/* --- 10. Footer cohesion --- */
.footer-area {
    background: #0f172a;
    color: #cbd5e1;
}
.footer-area a {
    color: #cbd5e1;
}
.footer-area .footer-tittle h4,
.footer-area .footer-title {
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.footer-area .footer-tittle h4::after,
.footer-area .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: var(--color-primary, #ff7a00);
}
.footer-area .footer-tittle ul li a:hover {
    color: var(--color-primary, #ff7a00);
}

/* --- 11. Breadcrumb polish --- */
.breadcrumb-item a,
.hops-breadcrumb a,
.breadcrumb a {
    color: #6b7280;
}
.breadcrumb-item a:hover,
.hops-breadcrumb a:hover,
.breadcrumb a:hover,
.breadcrumb-item.active {
    color: var(--color-primary, #ff7a00);
}

/* --- 12. Scrollbar accent --- */
::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--color-primary, #ff7a00) 40%, #c1c1c1);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary, #ff7a00);
}

/* --- 13. Loader / placeholder backgrounds --- */
.thumb-overlay,
.img-hover-scale .thumb-overlay,
.post-thumb .thumb-overlay,
.hops-latest__img .thumb-overlay,
.ep-img .thumb-overlay {
    background: #f1f5f9 !important;
}

/* --- 14. UGC / supporter labels --- */
.ugc-card-label,
.hops-ugc-label span,
.hops-ugc-label.official span {
    background: var(--color-primary, #ff7a00) !important;
    color: #fff !important;
}

/* --- 15. Subtle entrance animation --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.hh-section,
.topik-khusus-section,
.hops-citizen-home,
.hops-official-home,
.widget,
.sidebar-widget,
.dbn-play__panel {
    animation: fadeInUp 0.6s ease both;
}

/* --- 16. Mobile loop refinements --- */
@media (max-width: 767px) {
    .post-card-1-block,
    .post-card-2-block,
    .topik-card,
    .featured-slider-1,
    .featured-slider-2,
    .post-carausel-2,
    .post-carausel-3 {
        border-radius: 12px;
    }
    .pagination-area .page-link {
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* ======================================================
   GLOBAL UI REFRESH v3.0 — layout & radius unification
   ====================================================== */

/* 1. Enforce consistent card/image radius everywhere (overrides inline styles) */
.post-thumb,
.post-thumb.border-radius-5,
.post-thumb.border-radius-10,
.post-card-1-block,
.post-card-2-block,
.post-card-1-block .post-thumb,
.post-card-2-block .post-thumb,
.post-card-1-block .img-hover-scale,
.post-card-2-block .img-hover-scale,
.topik-card,
.topik-card img,
.featured-slider-1,
.featured-slider-1 .post-thumb,
.featured-slider-2,
.featured-slider-2 .post-thumb,
.post-carausel-2,
.post-carausel-2 .post-thumb,
.post-carausel-3,
.post-carausel-3 .post-thumb,
.hops-latest__img,
.hops-related-img,
.hops-hl-img,
.ep-img,
.widget img,
.sidebar-widget img,
.hops-citizen-card,
.hops-benefit-card,
.hops-step,
.kirim-hero-cta,
.kirim-metrics,
.dbn-play__panel {
    border-radius: 16px !important;
    overflow: hidden;
}
.post-thumb img,
.kagemi-thumb-img,
.hops-latest__img img,
.hops-related-img img,
.hops-hl-img img,
.ep-img img,
.widget img,
.sidebar-widget img,
.topik-card img,
.post-card-1-block img,
.post-card-2-block img {
    border-radius: 16px !important;
}

/* 2. Category badges unified pill */
.post-cat,
.post-cat a,
.post-cat span {
    border-radius: 999px !important;
    padding: 3px 12px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
}

/* 3. Consistent section spacing & rhythm */
.hh-section,
.topik-khusus-section,
.hops-citizen-home,
.hops-official-home,
.hops-video-stories,
.featured-slider-1,
.featured-slider-2,
.post-carausel-2,
.post-carausel-3,
.kirim-hero-cta,
.kirim-metrics,
.dbn-play__panel {
    margin-bottom: 44px;
}

/* 4. Container alignment */
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1200px;
}

/* 5. Image placeholders */
.thumb-overlay,
.post-thumb .thumb-overlay,
.img-hover-scale .thumb-overlay,
.hops-latest__img .thumb-overlay,
.hops-related-img .thumb-overlay,
.hops-hl-img .thumb-overlay,
.ep-img .thumb-overlay {
    background: #f1f5f9 !important;
    border-radius: 16px;
}

/* 6. Loop cards spacing & hover */
.loop-grid > article,
.loop-list > article,
.post-card-1-block,
.post-card-2-block {
    margin-bottom: 26px;
}

/* 7. Header/footer subtle borders */
.main-header {
    border-bottom: 1px solid #f0f0f0;
}
.footer-bottom-area {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 18px 0;
}

/* 8. Form/dialog pills */
hops-report-user-link,
button.hops-report-user-link,
a.hops-report-user-link {
    border-radius: 999px !important;
}

/* 9. Mobile refinements */
@media (max-width: 767px) {
    .container { padding-left: 12px; padding-right: 12px; }
    .post-thumb,
    .post-thumb img,
    .post-card-1-block,
    .post-card-2-block,
    .post-card-1-block img,
    .post-card-2-block img,
    .topik-card,
    .topik-card img,
    .featured-slider-1,
    .featured-slider-2,
    .post-carausel-2,
    .post-carausel-3 {
        border-radius: 12px !important;
    }
    .hh-section,
    .topik-khusus-section,
    .hops-citizen-home,
    .hops-official-home,
    .hops-video-stories,
    .featured-slider-1,
    .featured-slider-2,
    .post-carausel-2,
    .post-carausel-3 {
        margin-bottom: 32px;
    }
}

/* ======================================================
   GLOBAL UI REFRESH v4.0 — Remove section-header underlines
   ====================================================== */

.hh-section-title,
.hops-section-title,
.widget-header .widget-title,
.sidebar-widget .widget-title,
.widget-title,
.archive-header h1,
.archive-header h2,
.hops-citizen-header .hh-section-title,
h3.section-title,
h5.section-title {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* Hide generated pseudo-element accent bars */
.hh-section-title::after,
.hops-section-title::after,
.widget-header .widget-title::after,
.sidebar-widget .widget-title::after,
.hops-citizen-header .hh-section-title::after,
.hops-citizen-header h3::after,
h3.section-title::after,
h5.section-title::after {
    display: none !important;
}

/* Keep comfortable spacing after removing the line */
.hh-section-title,
.hops-section-title,
.hops-citizen-header .hh-section-title {
    margin-bottom: 18px;
}

.widget-header .widget-title,
.sidebar-widget .widget-title,
.widget-title {
    margin-bottom: 14px;
}

@media (max-width: 767px) {
    .hh-section-title,
    .hops-section-title,
    .hops-citizen-header .hh-section-title {
        margin-bottom: 14px;
    }

    .widget-header .widget-title,
    .sidebar-widget .widget-title,
    .widget-title {
        margin-bottom: 12px;
    }
}

/* --- Static page header: normal dark title, no colored pill --- */
.page-header {
    background: transparent !important;
}
.page-header h1,
.page-header h1.page-header-title {
    display: block;
    background: transparent !important;
    color: #1a1a1a !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.page-header h1 span {
    background: transparent !important;
    color: inherit !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Scroll-to-top button — use global primary color */
#scrollUp,
#scrollUp:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

/* ======================================================
   POST CARAUSEL 2 — Custom arrow navigation
   ====================================================== */
.post-carausel-2 {
    position: relative;
}

.post-carausel-2 .slick-prev,
.post-carausel-2 .slick-next {
    font-size: 0; /* hide default Slick text */
}

.post-carausel-2 .slick-prev:hover,
.post-carausel-2 .slick-next:hover,
.post-carausel-2 .slick-prev:active,
.post-carausel-2 .slick-next:active,
.post-carausel-2 .slick-prev:focus,
.post-carausel-2 .slick-next:focus {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #111;
}
