/* ============================================
   Nuupdate - Portal Berita Teknologi
   Style: Clean, Modern, Content-Focused
   ============================================ */

/* Design Tokens */
:root {
    --nu-color-background: #f9fafb;
    --nu-color-surface: #ffffff;
    --nu-color-elevated: #f3f4f6;
    --nu-color-border: #e5e7eb;
    --nu-color-text: #1f2937;
    --nu-color-text-muted: #6b7280;
    --nu-color-primary: #2563eb;
    --nu-color-primary-dark: #1d4ed8;
    --nu-color-accent: #f97316;
    --nu-radius-sm: 6px;
    --nu-radius-md: 12px;
    --nu-radius-lg: 16px;
    --nu-space-0: 0;
    --nu-space-1: 0.25rem;
    --nu-space-2: 0.5rem;
    --nu-space-3: 0.75rem;
    --nu-space-4: 1rem;
    --nu-space-5: 1.25rem;
    --nu-space-6: 1.5rem;
    --nu-space-8: 2rem;
    --nu-space-10: 2.5rem;
    --nu-space-12: 3rem;
    --nu-space-section-y: clamp(2.5rem, 4vw + 1rem, 4rem);
    --nu-max-width-lg: 1024px;
    --nu-max-width-xl: 1200px;
    --nu-max-width-xxl: 1360px;
    --nu-container-padding: clamp(1rem, 2.8vw, 2rem);
    --nu-transition-fast: 0.2s ease;
    --nu-transition-medium: 0.3s ease;
}

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

html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-height: 100vh;
    position: relative;
    /* Prevent unwanted dragging/scrolling on mobile */
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
    overscroll-behavior-x: none;
    overscroll-behavior-y: auto;
}

/* Prevent footer from shaking/wobbling during scroll */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Prevent horizontal scroll */
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
    height: auto;
}

body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    position: relative !important;
    /* Prevent unwanted touch behaviors */
    touch-action: pan-y !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    /* Allow text selection for content */
}

/* Allow text selection for content areas */
.main-content,
.nu-container,
section,
article,
p,
h1, h2, h3, h4, h5, h6,
.nu-footer-links a,
.nav-link {
    -webkit-user-select: text;
    user-select: text;
}

html {
    scroll-padding-top: 140px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 100px;
        position: relative;
        width: 100%;
        height: auto;
        overflow-x: hidden !important;
    }
    
    body {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y !important;
        overscroll-behavior: none;
        overscroll-behavior-x: none;
    }
    
    /* Prevent all horizontal scrolling */
    * {
        max-width: 100vw !important;
    }
    
    /* Prevent unwanted dragging */
    img, video, iframe {
        -webkit-user-drag: none;
        user-drag: none;
        pointer-events: auto;
    }
    
    /* Allow vertical scroll only */
    .main-content,
    section,
    .nu-container {
        overflow-x: hidden !important;
        overflow-y: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        touch-action: pan-y !important;
    }
    
    /* Prevent pull-to-refresh */
    body {
        overscroll-behavior-y: contain;
    }
}

/* Prevent horizontal scroll on mobile */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Prevent unwanted dragging on mobile/tablet */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Prevent image dragging */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Prevent text selection on UI elements */
button,
a,
.nav-link,
.nu-footer-links a,
.section-title,
.bisnis-strategi-title,
.keamanan-slider-title {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent pull-to-refresh on mobile */
body {
    overscroll-behavior-y: contain;
}

img, video, iframe, embed, object {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* Ensure tables are responsive */
table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: auto !important;
    word-wrap: break-word !important;
}

/* Prevent text overflow */
p, span, div, h1, h2, h3, h4, h5, h6, a, li {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

/* Ensure no padding/margin that could create white space */
body {
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--nu-color-text);
    background: var(--nu-color-background);
}

/* Add padding-top to body to accommodate fixed header */
body {
    padding-top: 240px !important;
    padding-bottom: 0 !important;
}

/* Adjust padding for scrolled header (smaller header) */
body.header-scrolled {
    padding-top: 120px !important;
    padding-bottom: 0 !important;
}

/* Responsive padding for mobile */
@media (max-width: 768px) {
    body {
        padding-top: 120px !important;
        padding-bottom: 0 !important;
    }
    
    body.header-scrolled {
        padding-top: 70px !important;
        padding-bottom: 0 !important;
    }
}

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

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

/* Layout Utilities */
.nu-container {
    width: 100%;
    max-width: var(--nu-max-width-xxl);
    margin: 0 auto;
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nu-container + .nu-container {
    margin-top: 0;
}

.nu-stack {
    display: flex;
    flex-direction: column;
    gap: var(--nu-space-4);
}

.nu-stack--tight {
    gap: var(--nu-space-2);
}

.nu-grid {
    display: grid;
    gap: var(--nu-space-4);
}
ul {
    list-style: none;
}

/* ============================================
   HEADER STYLES
   ============================================ */
/* ============================================
   HEADER - 3 SECTION LAYOUT (NYTimes Style)
   ============================================ */

.main-header {
    background: var(--nu-color-surface);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--nu-color-border);
    margin: 0;
    padding: 0;
}

/* Homepage Header - NYTimes Style (Only Categories saat scroll) */
.main-header.homepage-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    margin: 0;
    margin-bottom: 0;
    padding: 0;
    background: var(--nu-color-surface);
}

/* Saat scroll, sembunyikan top dan middle bar */
.main-header.homepage-header.scrolled .header-top-bar,
.main-header.homepage-header.scrolled .header-middle-bar {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    pointer-events: none;
}

/* Default state untuk top dan middle bar */
.main-header.homepage-header .header-top-bar,
.main-header.homepage-header .header-middle-bar {
    max-height: 200px;
    opacity: 1;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

/* Semua halaman: sembunyikan middle bar (section 2) saat scroll */
.main-header.scrolled .header-middle-bar {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    pointer-events: none;
}

/* Default state untuk middle bar di semua halaman */
.main-header .header-middle-bar {
    max-height: 200px;
    opacity: 1;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

/* Bottom bar - NYTimes Style */
.main-header.homepage-header .header-bottom-bar {
    padding: 12px 0;
    border-bottom: 1px solid #e2e2e2;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Saat scroll, bottom bar lebih compact seperti NYTimes */
.main-header.homepage-header.scrolled .header-bottom-bar {
    padding: 8px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e2e2e2;
}

/* Sembunyikan mobile menu toggle di homepage (hanya tampilkan navigation) */
.main-header.homepage-header .mobile-menu-toggle {
    display: none !important;
}

/* Navigation - NYTimes Style */
.main-header.homepage-header .main-nav {
    display: flex !important;
    gap: 20px;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
    margin: 0;
    touch-action: pan-x !important;
}

.main-header.homepage-header .main-nav::-webkit-scrollbar {
    display: none;
}

/* Mobile: Navigation horizontal scroll */
@media (max-width: 768px) {
    .main-header.homepage-header .main-nav {
        gap: 16px;
        padding-right: 20px;
    }
    
    .main-header.homepage-header .nav-link {
        font-size: 0.8rem;
        padding: 4px 0;
    }
}

/* Nav Link - NYTimes Style */
.main-header.homepage-header .nav-link {
    color: #000000;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 6px 0;
    border-radius: 0;
    transition: color 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
    border-bottom: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.main-header.homepage-header .nav-link:hover {
    color: #000000;
    border-bottom: none;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Dropdown arrow - NYTimes Style */
.main-header.homepage-header .dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
    color: #666;
    margin-left: 2px;
}

.main-header.homepage-header .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu - NYTimes Style */
.main-header.homepage-header .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1001;
    padding: 8px 0;
}

.main-header.homepage-header .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-header.homepage-header .nav-dropdown-item {
    display: block;
    padding: 8px 16px;
    color: #000000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: background 0.2s ease;
    text-transform: none;
}

.main-header.homepage-header .nav-dropdown-item:hover {
    background: #f5f5f5;
    color: #000000;
}

/* Pastikan konten homepage tidak terhalang */
body.homepage .main-content {
    padding-top: 0;
    margin-top: 0;
}

/* Section 1: Top Bar */
.header-top-bar {
    background: var(--nu-color-surface);
    border-bottom: 1px solid var(--nu-color-border);
    padding: var(--nu-space-2) 0;
    font-size: 0.75rem;
    position: relative;
    z-index: 1001;
    overflow: visible;
}

.header-top-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    overflow: visible;
    position: relative;
}

.header-top-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.header-top-center {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 1;
}

.header-top-link {
    color: var(--nu-color-text-muted);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
}

.header-top-link:hover {
    color: var(--nu-color-primary);
}

.header-top-link.active {
    color: var(--nu-color-primary);
    font-weight: 700;
    font-size: 0.8rem;
}

.header-top-link.active::after {
    content: '●';
    margin-left: 6px;
    font-size: 0.5rem;
    color: var(--nu-color-primary);
    vertical-align: middle;
}

.header-top-link-regional {
    color: var(--nu-color-primary);
    font-weight: 700;
    position: relative;
}

.header-top-link-regional:hover {
    color: var(--nu-color-primary-dark);
}

.header-top-link-regional::after {
    content: '★';
    font-size: 0.6rem;
    margin-left: 4px;
    color: var(--nu-color-accent);
}

.header-top-separator {
    color: #d1d5db;
    margin: 0 8px;
    font-weight: 300;
}

/* Language Dropdown */
.header-language-dropdown {
    position: relative;
    display: inline-block;
    z-index: 1002;
    overflow: visible;
}

.header-language-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow-small {
    font-size: 0.6rem;
    transition: transform 0.3s;
    display: inline-block;
    margin-left: 2px;
}

.header-language-dropdown:hover .dropdown-arrow-small,
.header-language-dropdown.active .dropdown-arrow-small {
    transform: rotate(180deg);
}

.header-language-menu {
    position: absolute !important;
    top: calc(100% + 5px) !important;
    left: 0 !important;
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
    min-width: 150px !important;
    max-width: 200px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-5px) !important;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
    z-index: 1003 !important;
    padding: 6px 0 !important;
    pointer-events: none !important;
    margin-top: 0 !important;
    white-space: nowrap !important;
    display: block !important;
}

.header-language-dropdown:hover .header-language-menu,
.header-language-dropdown.active .header-language-menu,
.header-language-dropdown.clicked .header-language-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: all !important;
    display: block !important;
}

.header-language-item {
    display: block;
    padding: 8px 16px;
    color: var(--nu-color-text);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all var(--nu-transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.header-language-item:hover {
    background: rgba(37, 99, 235, 0.08);
}

.header-language-item.active {
    background: rgba(37, 99, 235, 0.12);
    color: var(--nu-color-primary);
    font-weight: 700;
    position: relative;
}

.header-language-item.active::before {
    content: '●';
    margin-right: 8px;
    font-size: 0.6rem;
    color: var(--nu-color-primary);
}

.header-top-right {
    display: flex;
    gap: var(--nu-space-3);
    align-items: center;
    justify-content: flex-end;
}

/* Search Icon Button */
.search-icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nu-color-text);
    transition: all 0.2s ease;
    border-radius: 4px;
    position: relative;
    z-index: 2;
}

.search-icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--nu-color-primary);
}

.search-icon-btn.active {
    color: var(--nu-color-primary);
}

.search-icon-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Search Box Wrapper */
.search-box-wrapper {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 8px;
    width: 0;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    background: #ffffff;
    border: 1px solid var(--nu-color-border);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    pointer-events: none;
}

.search-box-wrapper.active {
    width: 100%;
    min-width: 300px;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

/* Search Form */
.search-form {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 40px 12px 16px;
    font-size: 0.875rem;
    color: var(--nu-color-text);
    background: transparent;
    width: 100%;
}

.search-input::placeholder {
    color: var(--nu-color-text-muted);
}

.search-submit-btn,
.search-close-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nu-color-text-muted);
    transition: all 0.2s ease;
    border-radius: 4px;
}

.search-submit-btn {
    right: 40px;
}

.search-submit-btn:hover,
.search-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--nu-color-primary);
}

.search-submit-btn svg,
.search-close-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.subscribe-btn {
    background: var(--nu-color-primary);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: var(--nu-radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background var(--nu-transition-fast), box-shadow var(--nu-transition-fast);
}

.subscribe-btn:hover {
    background: var(--nu-color-primary-dark);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}

.login-btn-top {
    background: var(--nu-color-surface);
    color: var(--nu-color-text);
    padding: 6px 16px;
    border: 1px solid var(--nu-color-border);
    border-radius: var(--nu-radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--nu-transition-fast);
}

.login-btn-top:hover {
    background: var(--nu-color-elevated);
    border-color: var(--nu-color-primary);
}

/* Section 2: Middle Bar (Logo Centered) */
.header-middle-bar {
    background: var(--nu-color-surface);
    border-bottom: 1px solid var(--nu-color-border);
    padding: var(--nu-space-4) 0;
}

.header-middle-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--nu-space-4);
}

.header-middle-left {
    display: flex;
    flex-direction: column;
    gap: var(--nu-space-1);
}

.header-date {
    font-size: 0.85rem;
    color: var(--nu-color-text-muted);
    font-weight: 500;
}

.header-edition-link {
    font-size: 0.75rem;
    color: var(--nu-color-primary);
    text-decoration: none;
    font-weight: 600;
}

.header-edition-link:hover {
    text-decoration: underline;
}

.header-middle-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-main {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-main-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.header-middle-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.search-btn-main {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    color: var(--nu-color-text-muted);
    transition: color var(--nu-transition-fast);
    line-height: 1;
}

.search-btn-main:hover {
    color: var(--nu-color-primary);
}

/* Section 3: Bottom Bar (Navigation) */
.header-bottom-bar {
    background: var(--nu-color-surface);
    border-bottom: 1px solid var(--nu-color-border);
    padding: var(--nu-space-3) 0;
}

/* NYTimes Style untuk homepage */
.main-header.homepage-header .header-bottom-container {
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

/* Pastikan navigation full width di homepage */
.main-header.homepage-header .header-bottom-container .main-nav {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Header bottom container - NYTimes Style */
.main-header.homepage-header .header-bottom-container {
    width: 100%;
    max-width: 100%;
}

.header-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-top-container:not(.nu-container),
.header-middle-container:not(.nu-container),
.header-bottom-container:not(.nu-container) {
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
}

.main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow: visible;
    min-width: 0;
    max-width: 100%;
}

.nav-link {
    color: var(--nu-color-text);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 0;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--nu-color-primary);
    border-bottom-color: var(--nu-color-primary);
    background: transparent;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-link-with-dropdown {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: var(--nu-color-surface);
    border: 1px solid var(--nu-color-border);
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
    margin-top: 0;
    padding: 8px 0;
    overflow: visible;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--nu-color-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.nav-dropdown-item:hover {
    background: var(--nu-color-elevated);
    color: var(--nu-color-primary);
}

/* Mobile Menu Toggle */
body.nav-open {
    overflow: hidden;
}

/* Mobile Menu Toggle - NYTimes Style */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 1003;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger-line {
    width: 24px;
    height: 2px;
    background: #000000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1004 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu-overlay.active {
    display: block !important;
    opacity: 1 !important;
    pointer-events: all !important;
    visibility: visible !important;
}

/* Mobile Menu Sidebar - NYTimes Style */
.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 1005 !important;
    overflow-y: auto;
    overflow-x: hidden;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu-sidebar.active {
    left: 0 !important;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.mobile-menu-content {
    padding: 0;
    display: flex !important;
    flex-direction: column !important;
    flex: 1;
    overflow-y: auto;
}

.mobile-menu-sidebar {
    display: flex !important;
    flex-direction: column !important;
}

/* Mobile Menu Search */
.mobile-menu-search {
    padding: 16px;
    border-bottom: 1px solid #e5e5e5;
    display: block !important;
    visibility: visible !important;
}

.mobile-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.mobile-search-input {
    flex: 1;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.mobile-search-input:focus {
    border-color: #1A73E8;
}

.mobile-search-submit {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A73E8;
}

/* Mobile Navigation */
.mobile-nav {
    display: flex !important;
    flex-direction: column;
    padding: 0;
    visibility: visible !important;
}

.mobile-nav-link {
    display: block;
    padding: 16px 20px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s ease;
    position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: #f8f8f8;
}

.mobile-nav-link-with-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-arrow {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.mobile-nav-link.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-nav-dropdown-menu {
    display: none;
    flex-direction: column;
    background: #f8f8f8;
    padding: 0;
}

.mobile-nav-dropdown-menu.active {
    display: flex;
}

.mobile-nav-dropdown-item {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.mobile-nav-dropdown-item:hover {
    background: #f0f0f0;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 20px 16px;
    border-top: 1px solid #e5e5e5;
    margin-top: auto;
    display: block !important;
    visibility: visible !important;
}

.mobile-menu-languages {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    visibility: visible !important;
}

.mobile-lang-link {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    text-decoration: none;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mobile-lang-link:hover {
    background: #f8f8f8;
}

.mobile-lang-link.active {
    color: #1A73E8;
    border-color: #1A73E8;
    background: rgba(26, 115, 232, 0.05);
}

.mobile-menu-actions {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    visibility: visible !important;
}

.mobile-subscribe-btn,
.mobile-login-btn {
    display: block;
    padding: 12px 16px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mobile-subscribe-btn {
    background: #1A73E8;
    color: #ffffff;
}

.mobile-subscribe-btn:hover {
    background: #1557b0;
}

.mobile-login-btn {
    background: transparent;
    color: #1A73E8;
    border: 1px solid #1A73E8;
}

.mobile-login-btn:hover {
    background: rgba(26, 115, 232, 0.05);
}

/* Legacy mobile menu toggle (for compatibility) */
.mobile-menu-toggle-legacy {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--nu-color-text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav-backdrop {
    display: none;
}

.user-menu {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.user-greeting {
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s;
}

.user-greeting:hover {
    background: #f9fafb;
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 8px 0;
    min-width: 180px;
    display: none;
    border: 1px solid #e5e7eb;
}

.user-menu:hover .user-menu-dropdown,
.user-menu.open .user-menu-dropdown {
    display: block;
}

.user-menu:focus-within .user-menu-dropdown {
    display: block;
}

.user-menu-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.user-menu-dropdown a:hover {
    background: #f9fafb;
    color: #007bff;
}

.btn-login {
    background: #007bff;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-login:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

/* ============================================
   MAIN CONTENT LAYOUT
   ============================================ */
.main-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0 var(--nu-container-padding);
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Ensure new footer is full screen - break out of any container */
/* Footer is separate from body content - FIXED AT BOTTOM */
.nu-footer {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    clear: both !important;
    overflow: hidden !important;
}

.nu-footer-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: #0056b3 !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

/* Add spacing before footer */
section:last-of-type {
    margin-bottom: 60px !important;
}

.section-video {
    margin-bottom: 60px !important;
}

/* Remove any space before footer */
.main-content + .nu-footer,
body > .nu-footer {
    margin-top: 0 !important;
}

/* Remove any space after footer */
.nu-footer + *,
footer.nu-footer + *,
.nu-footer-bottom + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure footer sticks to bottom with no white space */
html {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Ensure no space between body content and footer */
body > .main-content:last-child,
body > section:not(:has(.nu-footer)):last-child {
    margin-bottom: 0;
    padding-bottom: var(--nu-space-section-y);
}

/* Ensure body content doesn't stretch with footer */
body > .main-content,
body > section:not(:has(.nu-footer)) {
    max-width: var(--nu-max-width-xxl);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}


/* Layout with sidebar */
.content-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Content layout for Keamanan Fisik - equal height */
.content-layout .content-area,
.content-layout .sidebar {
    display: flex;
    flex-direction: column;
}

.content-area {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-shrink: 1;
}

.sidebar {
    min-width: 0;
    flex-shrink: 0;
    width: 432px !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    /* Hero section stays within max-width, doesn't stretch */
    max-width: var(--nu-max-width-xxl);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 var(--nu-container-padding);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--nu-space-6);
    margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.featured-article {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-height: 400px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-article:hover {
    box-shadow: 0 6px 30px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 40px;
    color: white;
}

.article-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-badges-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.featured-badges-wrapper .article-badge {
    position: static;
    margin: 0;
}

.category-tag {
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.article-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
}

.article-meta {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.article-meta span {
    opacity: 0.95;
}

.article-progress-line {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid rgba(255,255,255,0.2);
}

.progress-indicator {
    height: 3px;
    background: linear-gradient(90deg, #007bff 0%, #00d4ff 100%);
    border-radius: 2px;
    width: 100%;
}

.sidebar-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-article {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.sidebar-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #007bff;
}

.sidebar-image,
img.sidebar-image,
div.sidebar-image {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    border-radius: 8px;
    flex-shrink: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* Support for div-based sidebar images (placeholders) */
.sidebar-image:not(img) {
    min-height: 0 !important;
    min-width: 100px !important;
    max-width: 100px !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    width: 100px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--nu-color-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.sidebar-meta {
    font-size: 0.85rem;
    color: var(--nu-color-text-muted);
    line-height: 1.5;
}

/* ============================================
   SECTIONS
   ============================================ */
/* Body content sections - keep max-width, don't stretch */
section:not(:has(.nu-footer)) {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    max-width: var(--nu-max-width-xxl);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 var(--nu-container-padding);
}

section:last-child:not(:has(.nu-footer)) {
    margin-bottom: 0;
}

/* Footer section is completely separate from body content */
/* Footer section - no max-width constraint, full screen */
section:has(.nu-footer),
section:last-of-type:has(footer),
section:has(footer.nu-footer) {
    overflow-x: visible !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 100px !important;
    width: 100% !important;
}

/* Ensure any parent container doesn't limit footer */
*:has(.nu-footer) {
    overflow-x: visible !important;
    max-width: none !important;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    gap: 8px;
}

.view-all {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 0;
    position: relative;
    z-index: 10;
}

/* ============================================
   HIGHLIGHT SECTION - 4 COLUMNS GRID LAYOUT
   ============================================ */
.highlight-grid-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-grid-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
    box-sizing: border-box;
}

.highlight-section-header {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    width: 100%;
    max-width: 1360px;
    height: 37px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: visible;
    flex-wrap: nowrap;
}

.highlight-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    width: auto;
    min-width: 0;
    height: 37px;
    white-space: nowrap;
}

.highlight-section-line {
    flex: 1;
    min-width: 0;
    height: 0;
    border-top: 1px solid #E5E5E5;
    margin: 0 16px 0 20px;
    align-self: center;
}

.highlight-section-view-all {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1A73E8;
    text-decoration: none;
    margin-left: auto;
    position: relative;
    padding-right: 20px;
    width: 125px;
    height: 24px;
    text-align: right;
    flex-shrink: 0;
}

.highlight-section-view-all::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 0;
    background: #1A73E8;
    border: 2px solid #1A73E8;
    box-sizing: border-box;
}

.highlight-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 316px);
    gap: 32px;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    box-sizing: border-box;
    justify-content: start;
}

.highlight-grid-item {
    width: 316px;
    height: 406px;
    display: flex;
    flex-direction: column;
    background: transparent;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

.highlight-grid-image-wrapper {
    position: relative;
    width: 316px;
    height: 211px;
    overflow: hidden;
    margin-bottom: 20px;
}

.highlight-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #D9D9D9;
}

/* Logo fallback - ensure it fits without being cropped (wrapped) */
/* Use attribute selector to target logo fallback images */
img[src*="logo_white_nuupdate"].highlight-grid-image,
img[src*="logo_white_nuupdate"].hero-featured-image,
img[src*="logo_white_nuupdate"].hero-sidebar-image,
img[src*="logo_white_nuupdate"].bisnis-featured-image,
img[src*="logo_white_nuupdate"].bisnis-sidebar-image,
img[src*="logo_white_nuupdate"].keamanan-slider-image,
img[src*="logo_white_nuupdate"].section-video-thumbnail,
img[src*="icon_fallback"].highlight-grid-image,
img[src*="icon_fallback"].hero-featured-image,
img[src*="icon_fallback"].hero-sidebar-image,
img[src*="icon_fallback"].bisnis-featured-image,
img[src*="icon_fallback"].bisnis-sidebar-image,
img[src*="icon_fallback"].keamanan-slider-image,
img[src*="icon_fallback"].section-video-thumbnail,
img[src*="logo_blue_nuupdate"].highlight-grid-image,
img[src*="logo_blue_nuupdate"].hero-featured-image,
img[src*="logo_blue_nuupdate"].hero-sidebar-image,
img[src*="logo_blue_nuupdate"].bisnis-featured-image,
img[src*="logo_blue_nuupdate"].bisnis-sidebar-image,
img[src*="logo_blue_nuupdate"].keamanan-slider-image,
img[src*="logo_blue_nuupdate"].section-video-thumbnail {
    object-fit: contain !important;
    object-position: center !important;
    background: #1A73E8 !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    height: 100% !important;
}

/* Responsive padding for smaller containers */
@media (max-width: 768px) {
    img[src*="logo_white_nuupdate"].hero-sidebar-image,
    img[src*="logo_white_nuupdate"].bisnis-sidebar-image,
    img[src*="icon_fallback"].hero-sidebar-image,
    img[src*="icon_fallback"].bisnis-sidebar-image,
    img[src*="logo_blue_nuupdate"].hero-sidebar-image,
    img[src*="logo_blue_nuupdate"].bisnis-sidebar-image {
        padding: 8px !important;
    }
    
    img[src*="logo_white_nuupdate"].highlight-grid-image,
    img[src*="logo_white_nuupdate"].keamanan-slider-image,
    img[src*="logo_white_nuupdate"].section-video-thumbnail,
    img[src*="icon_fallback"].highlight-grid-image,
    img[src*="icon_fallback"].keamanan-slider-image,
    img[src*="icon_fallback"].section-video-thumbnail,
    img[src*="logo_blue_nuupdate"].highlight-grid-image,
    img[src*="logo_blue_nuupdate"].keamanan-slider-image,
    img[src*="logo_blue_nuupdate"].section-video-thumbnail {
        padding: 12px !important;
    }
    
    img[src*="logo_white_nuupdate"].hero-featured-image,
    img[src*="logo_white_nuupdate"].bisnis-featured-image,
    img[src*="icon_fallback"].hero-featured-image,
    img[src*="icon_fallback"].bisnis-featured-image,
    img[src*="logo_blue_nuupdate"].hero-featured-image,
    img[src*="logo_blue_nuupdate"].bisnis-featured-image {
        padding: 20px !important;
    }
}

.highlight-grid-badge {
    position: absolute;
    top: 10px;
    left: 209px;
    width: 97px;
    height: 24px;
    background: #00B894;
    border: 1px solid #00B894;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    filter: drop-shadow(0px 1px 10px rgba(0, 0, 0, 0.25));
    z-index: 2;
}

.highlight-badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.highlight-grid-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.highlight-grid-categories {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.highlight-grid-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999;
}

.highlight-grid-category-dot {
    width: 4px;
    height: 4px;
    background: rgba(153, 153, 153, 0.6);
    border-radius: 50%;
    display: inline-block;
}

.highlight-grid-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #0F172A;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
    min-height: 72px;
}

.highlight-grid-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    color: #999999;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
    min-height: 51px;
}

.highlight-grid-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    color: #999999;
    margin-top: auto;
}

.highlight-grid-author {
    font-style: italic;
}

.highlight-grid-dot {
    width: 4px;
    height: 4px;
    background: rgba(153, 153, 153, 0.6);
    border-radius: 50%;
    display: inline-block;
}

.highlight-grid-date,
.highlight-grid-read {
    color: #999999;
}

@media (min-width: 1024px) {
    .highlight-grid-layout {
        grid-template-columns: repeat(4, 316px) !important;
        gap: 32px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .highlight-grid-item {
        width: 316px !important;
        height: 406px !important;
    }
    .highlight-grid-image-wrapper {
        width: 316px !important;
        height: 211px !important;
    }
    .highlight-section-header {
        width: 1360px !important;
        max-width: 1360px !important;
    }
}

/* Tablet and below - responsive adjustments */
@media (max-width: 1440px) and (min-width: 768px) {
    .highlight-grid-layout {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        width: 100%;
        max-width: 100%;
    }
    .highlight-grid-item {
        width: 100%;
        height: auto;
        min-height: 406px;
    }
    .highlight-grid-image-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 316 / 211;
    }
}

@media (max-width: 768px) {
    .highlight-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .highlight-grid-item {
        min-height: auto;
    }
    .highlight-section-title {
        font-size: 24px;
        line-height: 30px;
    }
}

/* ============================================
   BISNIS & STRATEGI SECTION
   ============================================ */
.bisnis-strategi-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0;
    background: transparent;
    position: relative;
    clear: both;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bisnis-strategi-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
    box-sizing: border-box;
    position: relative;
}

.bisnis-strategi-header {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    width: 100%;
    max-width: 1360px;
    height: 37px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: visible;
    flex-wrap: nowrap;
}

.bisnis-strategi-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    width: auto;
    min-width: 0;
    height: 37px;
    white-space: nowrap;
}

.bisnis-strategi-view-all {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1A73E8;
    text-decoration: none;
    margin-left: auto;
    position: relative;
    padding-right: 20px;
    width: 125px;
    height: 24px;
    text-align: right;
}

.bisnis-strategi-view-all::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 0;
    background: #1A73E8;
    border: 2px solid #1A73E8;
    box-sizing: border-box;
}

.bisnis-strategi-header-line {
    flex: 1;
    height: 0;
    border-top: 1px solid #E5E5E5;
    margin: 0 16px 0 20px;
    align-self: center;
    min-width: 0;
}

.bisnis-strategi-layout {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    box-sizing: border-box;
    flex-wrap: nowrap;
    position: relative;
    clear: both;
}

.bisnis-strategi-featured {
    width: 896px;
    max-width: 896px;
    min-width: 896px;
    flex-shrink: 0;
    position: relative;
    padding: 0;
    margin: 0;
}

.bisnis-featured-card {
    display: flex !important;
    flex-direction: row !important;
    gap: 32px;
    width: 896px;
    height: 376px;
    background: transparent;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    position: relative;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    overflow: visible;
}

.bisnis-featured-content {
    flex: 0 0 310px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    width: 310px;
    min-width: 310px;
    max-width: 310px;
    position: relative;
    z-index: 1;
    gap: 0;
}

.bisnis-featured-badge {
    width: 97px;
    height: 24px;
    background: #00B894;
    border: 1px solid #00B894;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 0 12px 0;
    padding: 0;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.bisnis-badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.bisnis-featured-categories {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 16px 0;
    padding: 0;
    width: 100%;
    max-width: 310px;
    min-height: 15px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
}

.bisnis-featured-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.bisnis-featured-category-dot {
    width: 4px;
    height: 4px;
    background: rgba(153, 153, 153, 0.6);
    border-radius: 50%;
    display: none; /* Hide dot to make it single line */
    flex-shrink: 0;
}

.bisnis-featured-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: #000000;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
    min-height: 87px;
    width: 310px;
    max-width: 310px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.bisnis-featured-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    color: #999999;
    margin: 0 0 16px 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
    min-height: 51px;
    width: 304px;
    max-width: 304px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.bisnis-featured-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    color: #999999;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 242px;
    max-width: 242px;
}

.bisnis-featured-author {
    font-style: italic;
}

.bisnis-featured-dot {
    width: 4px;
    height: 4px;
    background: rgba(153, 153, 153, 0.6);
    border-radius: 50%;
    display: inline-block;
}

.bisnis-featured-date,
.bisnis-featured-read {
    color: #999999;
}

.bisnis-featured-image-wrapper {
    width: 564px;
    height: 376px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    z-index: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.bisnis-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #D9D9D9;
}

.bisnis-strategi-sidebar {
    width: 432px;
    max-width: 432px;
    min-width: 432px;
    flex-shrink: 0;
}

.bisnis-sidebar-article-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    justify-content: space-between;
}

.bisnis-sidebar-article-item {
    display: flex;
    gap: 16px;
    width: 432px;
    height: auto;
    min-height: 120px;
    text-decoration: none;
    color: inherit;
    padding: 0;
    box-sizing: border-box;
    flex: 0 0 auto;
}

.bisnis-sidebar-image-wrapper {
    width: 130px;
    height: 104px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0;
}

.bisnis-sidebar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #D9D9D9;
}

.bisnis-sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    min-width: 0;
    width: 286px;
}

.bisnis-sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #0F172A;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    min-height: 44px;
}

.bisnis-sidebar-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    color: #999999;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    min-height: 30px;
}

.bisnis-sidebar-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    color: #999999;
    margin-top: auto;
}

.bisnis-sidebar-author {
    font-style: italic;
}

.bisnis-sidebar-dot {
    width: 4px;
    height: 4px;
    background: rgba(153, 153, 153, 0.6);
    border-radius: 50%;
    display: inline-block;
}

.bisnis-sidebar-date,
.bisnis-sidebar-read {
    color: #999999;
}

.bisnis-sidebar-divider {
    width: 100%;
    max-width: 432px;
    height: 0;
    border-top: 1px solid #E5E5E5;
    margin: 0;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .bisnis-strategi-section {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 445px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 60px !important;
    }
    
    .bisnis-strategi-container {
        width: 1360px !important;
        max-width: 1360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: var(--nu-container-padding) !important;
        padding-right: var(--nu-container-padding) !important;
    }
    
    .bisnis-strategi-header {
        width: 1360px !important;
        max-width: 1360px !important;
        height: 37px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
    }
    
    .bisnis-strategi-layout {
        width: 1360px !important;
        max-width: 1360px !important;
        height: 376px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .bisnis-strategi-featured {
        width: 896px !important;
        height: 376px !important;
    }
    
    .bisnis-featured-card {
        width: 896px !important;
        height: 376px !important;
        display: flex !important;
        flex-direction: row !important;
    }
    
    .bisnis-featured-content {
        width: 310px !important;
        min-width: 310px !important;
        max-width: 310px !important;
        flex: 0 0 310px !important;
        order: 1 !important;
    }
    
    .bisnis-featured-image-wrapper {
        width: 564px !important;
        height: 376px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex: 0 0 564px !important;
        order: 2 !important;
    }
    
    .bisnis-featured-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .bisnis-strategi-sidebar {
        width: 432px !important;
        height: 376px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .bisnis-sidebar-article-list {
        height: 100% !important;
        justify-content: space-between !important;
    }
    
    .bisnis-sidebar-article-item {
        width: 432px !important;
        height: auto !important;
        min-height: 120px !important;
        flex: 0 0 auto !important;
    }
    
    .bisnis-sidebar-divider {
        flex: 0 0 auto !important;
        margin: 0 !important;
    }
    
    .bisnis-sidebar-image-wrapper {
        width: 130px !important;
        height: 104px !important;
    }
    
    .bisnis-sidebar-content {
        width: 286px !important;
    }
}

/* Tablet and below - responsive adjustments */
@media (max-width: 1440px) and (min-width: 768px) {
    .bisnis-strategi-layout {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }
    .bisnis-strategi-featured {
        width: 100%;
        min-width: 0;
    }
    .bisnis-featured-card {
        width: 100%;
        height: auto;
        flex-direction: column;
    }
    .bisnis-featured-image-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 564 / 376;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .bisnis-featured-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 100% !important;
    }
    .bisnis-strategi-sidebar {
        width: 100%;
        min-width: 0;
    }
    .bisnis-sidebar-article-item {
        width: 100%;
        height: auto;
        min-height: 120px;
    }
}

.highlight-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--nu-color-border);
}

.highlight-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--nu-color-text);
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.highlight-slider-wrapper {
    position: relative;
    width: 100%;
}

.highlight-slider-container {
    overflow: hidden;
    width: 100%;
    margin-bottom: 2rem;
}

.highlight-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.highlight-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
    background: var(--nu-color-surface);
    border-radius: var(--nu-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.highlight-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
}

.highlight-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-image {
    transform: scale(1.05);
}

.highlight-image-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.highlight-teaser {
    padding: 1.25rem;
    background: #ffffff;
    flex: 1;
    display: flex;
    align-items: center;
}

.highlight-teaser-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.highlight-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--nu-color-border);
    background: #ffffff;
    color: var(--nu-color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.highlight-slider-btn:hover {
    background: var(--nu-color-primary);
    border-color: var(--nu-color-primary);
    color: #ffffff;
    transform: scale(1.1);
}

.highlight-slider-btn:active {
    transform: scale(0.95);
}

.highlight-slider-btn svg {
    width: 20px;
    height: 20px;
}

.highlight-slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.highlight-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.highlight-dot:hover {
    background: #9ca3af;
    transform: scale(1.2);
}

.highlight-dot.active {
    background: var(--nu-color-primary);
    width: 24px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .highlight-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 767px) {
    .highlight-section {
        padding: calc(var(--nu-space-section-y) * 0.75) var(--nu-container-padding);
    }
    
    .highlight-header {
        margin-bottom: 2rem;
    }
    
    .highlight-card {
        flex: 0 0 100%;
    }
    
    .highlight-slider-track {
        gap: 15px;
    }
    
    .highlight-teaser {
        padding: 1rem;
    }
    
    .highlight-teaser-text {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
    }
    
    .highlight-slider-btn {
        width: 40px;
        height: 40px;
    }
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all {
    color: #007bff;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* ============================================
   ARTICLE GRID
   ============================================ */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

/* Enhanced styling for HIGHLIGHT section cards */
section:has(.article-slider-container) .article-card {
    background: var(--nu-color-surface);
    border-radius: var(--nu-radius-lg);
    border: 1px solid var(--nu-color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all var(--nu-transition-medium);
    overflow: hidden;
}

section:has(.article-slider-container) .article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--nu-color-primary);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* Enhanced image styling for HIGHLIGHT section */
/* Enhanced image styling for HIGHLIGHT section */
section:has(.article-slider-container) .card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform var(--nu-transition-medium);
    position: relative;
    display: block;
}

/* Support for div-based card-image (placeholder) */
section:has(.article-slider-container) .card-image:not(img) {
    min-height: 0;
    aspect-ratio: 16 / 9;
    height: auto;
    width: 100%;
}

/* Add overlay for dark images to ensure text contrast */
section:has(.article-slider-container) .card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--nu-transition-medium);
}

section:has(.article-slider-container) .article-card:hover .card-image {
    transform: scale(1.05);
}

section:has(.article-slider-container) .article-card:hover .card-image::after {
    opacity: 1;
}

.card-content {
    padding: 25px;
}

/* Enhanced content padding for HIGHLIGHT section */
section:has(.article-slider-container) .card-content {
    padding: 1.5rem;
    background: #ffffff; /* Ensure light background for dark text */
}

/* Dark background card - dark content background */
section:has(.article-slider-container) .article-card[data-bg="dark"] .card-content,
section:has(.article-slider-container) .article-card.dark-bg .card-content {
    background: #1f2937; /* Dark background for white text */
}

.card-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced badge styling for HIGHLIGHT section */
section:has(.article-slider-container) .card-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--nu-radius-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

/* Enhanced title styling for HIGHLIGHT section */
section:has(.article-slider-container) .card-title {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937; /* Dark text on light background */
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--nu-transition-fast);
}

section:has(.article-slider-container) .article-card:hover .card-title {
    color: var(--nu-color-primary);
}

/* Dark background card - white text */
section:has(.article-slider-container) .article-card[data-bg="dark"] .card-title,
section:has(.article-slider-container) .article-card.dark-bg .card-title {
    color: #ffffff;
}

section:has(.article-slider-container) .article-card[data-bg="dark"] .card-meta,
section:has(.article-slider-container) .article-card.dark-bg .card-meta {
    color: rgba(255, 255, 255, 0.9);
}

section:has(.article-slider-container) .article-card[data-bg="dark"] .card-excerpt,
section:has(.article-slider-container) .article-card.dark-bg .card-excerpt {
    color: rgba(255, 255, 255, 0.85);
    border-top-color: rgba(255, 255, 255, 0.2);
}

.card-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Enhanced meta styling for HIGHLIGHT section */
section:has(.article-slider-container) .card-meta {
    font-size: 0.8125rem;
    color: #6b7280; /* Dark muted text on light background */
    margin-bottom: 0.875rem;
    font-weight: 400;
}

.card-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Enhanced excerpt styling for HIGHLIGHT section */
section:has(.article-slider-container) .card-excerpt {
    font-size: 0.875rem;
    color: #6b7280 !important; /* Dark muted text on light background */
    line-height: 1.6;
    display: block !important; /* Force display */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
    min-height: 3.6em; /* Ensure consistent height for 3 lines */
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fallback for browsers that don't support :has() */
.article-slider-container .card-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    display: block !important;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
    min-height: 3.6em;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ============================================
   ARTICLE SLIDER
   ============================================ */
.article-slider-container {
    position: relative;
    margin-bottom: 40px;
}

/* Enhanced slider container for HIGHLIGHT section */
section:has(.article-slider-container) .article-slider-container {
    margin-bottom: 3rem;
    padding: 0;
}

.article-slider {
    overflow: hidden;
    margin: 0;
}

.article-slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.article-slider-track .article-card {
    flex: 0 0 calc(25% - 18.75px);
    min-width: 0;
}

/* Enhanced slider track for HIGHLIGHT section */
section:has(.article-slider-container) .article-slider-track {
    gap: 1.5rem;
    padding: 0.5rem 0;
}

section:has(.article-slider-container) .article-slider-track .article-card {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 280px;
}

/* Responsive adjustments for HIGHLIGHT section */
@media (max-width: 1200px) {
    section:has(.article-slider-container) .article-slider-track .article-card {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: 260px;
    }
    
    /* Ensure images maintain aspect ratio on tablet */
    section:has(.article-slider-container) .card-image {
        aspect-ratio: 16 / 9;
        height: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    section:has(.article-slider-container) .article-slider-track .article-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 240px;
    }
    
    section:has(.article-slider-container) .section-title {
        font-size: 1.5rem;
    }
    
    section:has(.article-slider-container) .card-content {
        padding: 1.25rem;
    }
    
    /* Ensure images maintain aspect ratio on mobile */
    section:has(.article-slider-container) .card-image {
        aspect-ratio: 16 / 9;
        height: auto;
        width: 100%;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #007bff;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #007bff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: #007bff;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-progress {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #007bff 0%, #00d4ff 100%);
    border-radius: 2px;
    transition: width 0.5s ease, background 0.3s ease;
    width: 25%;
}

.slider-progress.active {
    background: rgba(0,123,255,0.1);
    border-color: #007bff;
}

.slider-progress.active .slider-progress-bar {
    background: linear-gradient(90deg, #007bff 0%, #00d4ff 100%);
    animation: progressPulse 0.5s ease;
}

@keyframes progressPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,123,255,0.4);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(0,123,255,0.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,123,255,0);
    }
}

/* Digital Slider Specific Styles */
.slider-digital {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.slider-digital .article-slider {
    margin: 0;
    overflow: hidden;
    width: 100%;
}

.slider-digital .article-slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slider-digital #digitalSlider .article-card-digital {
    flex: 0 0 calc(25% - 18.75px);
    width: calc(25% - 18.75px);
    min-width: calc(25% - 18.75px);
    max-width: calc(25% - 18.75px);
    box-sizing: border-box;
}

.slider-content-right {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.slider-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

/* Enhanced slider progress wrapper for HIGHLIGHT section */
section:has(.article-slider-container) .slider-progress-wrapper {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--nu-color-border);
    gap: 1.25rem;
}

.slider-progress-wrapper .slider-progress {
    flex: 1;
    margin: 0;
}

.slider-navigation-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Enhanced navigation for HIGHLIGHT section */
section:has(.article-slider-container) .slider-navigation-inline {
    gap: 0.75rem;
}

.slider-progress-wrapper .slider-btn {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    margin: 0;
}

/* Enhanced button styling for HIGHLIGHT section */
section:has(.article-slider-container) .slider-progress-wrapper .slider-btn {
    width: 44px;
    height: 44px;
    background: var(--nu-color-surface);
    border: 1.5px solid var(--nu-color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--nu-transition-medium);
    font-size: 1.25rem;
}

section:has(.article-slider-container) .slider-progress-wrapper .slider-btn:hover {
    background: var(--nu-color-primary);
    border-color: var(--nu-color-primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.slider-progress-wrapper .slider-btn:hover {
    transform: scale(1.1);
}

/* ============================================
   AD BLOCKS
   ============================================ */
.ad-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #ced4da;
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: #999;
    margin: 40px 0;
    transition: all 0.3s;
}

.ad-block:hover {
    border-color: #007bff;
    background: linear-gradient(135deg, #f0f4ff 0%, #e3f2fd 100%);
}

.ad-block h3 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
}

.ad-block p {
    font-size: 0.85rem;
    color: #999;
}

.ad-block-large {
    width: 100%;
    max-width: 1360px;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
    clear: both;
    position: relative;
    box-sizing: border-box;
}

/* Section 3 Ad Block - Specific dimensions */
.nu-container .ad-block-section-3 {
    width: 1360px !important;
    height: 230px !important;
    position: relative;
    margin: 40px auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clear: both;
}

.ad-section-3-image {
    width: 1360px !important;
    height: 230px !important;
    object-fit: cover;
    opacity: 1;
}

@media (min-width: 1024px) {
    .nu-container .ad-block-section-3 {
        width: 1360px !important;
        height: 230px !important;
        margin: 40px auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        opacity: 1 !important;
        clear: both !important;
    }
    
    .ad-section-3-image {
        width: 1360px !important;
        height: 230px !important;
        opacity: 1 !important;
    }
}

.ad-block-small {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
}

.ad-block-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.article-grid-with-ads {
    grid-template-columns: repeat(3, 1fr);
}

.article-grid-with-ads .ad-block-small {
    grid-column: span 1;
}

/* ============================================
   SLIDER WITH ADS LAYOUT (Side-by-side)
   ============================================ */
.slider-with-ads-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

.slider-ads-left {
    position: sticky;
    top: 20px;
}

.slider-ads-left .ad-block-small {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.slider-content-right {
    flex: 1;
}

.slider-content-right .article-slider-container {
    margin-bottom: 0;
}

.slider-content-right .article-slider {
    margin: 0 50px;
}

.ad-block-sidebar {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ============================================
   ARTICLE LIST STYLES
   ============================================ */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.list-article-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.list-article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.list-article-image {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.list-article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-article-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.list-article-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.list-article-excerpt {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.list-article-footer {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    gap: 10px;
}

/* ============================================
   SIDEBAR WIDGETS
   ============================================ */
.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.sidebar-widget:first-child {
    margin-top: 0;
}

.sidebar-widget-no-padding {
    padding: 0;
}

.sidebar-widget-no-padding .sidebar-article-list {
    padding: 25px;
}

/* Featured Article Large (Keamanan Fisik Section & HIGHLIGHT Section) */
.featured-article-large {
    display: block;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    width: 896px !important;
    height: 616px !important;
    position: relative;
    flex-shrink: 0;
    opacity: 1;
}

.featured-article-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.featured-large-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-large-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-large-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3), transparent);
    padding: 40px 30px 30px;
    color: white;
}

.featured-overlay-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.featured-large-content-overlay .article-badge {
    position: static;
    margin: 0;
}

.featured-large-content-overlay .category-tag {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-large-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-large-excerpt {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-large-content-overlay .article-meta {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}





.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #007bff;
}

.sidebar-article-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    border-width: 1px;
    width: 432px !important;
    height: 146px !important;
    box-sizing: border-box;
    flex-shrink: 0;
    overflow: hidden;
    opacity: 1;
}

.sidebar-article-item:hover {
    background: #f9fafb;
    border-color: #e5e7eb;
}

.sidebar-article-thumb,
img.sidebar-article-thumb,
div.sidebar-article-thumb {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    border-radius: 6px;
    flex-shrink: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* Support for div-based sidebar thumbnails (placeholders) */
.sidebar-article-thumb:not(img),
div.sidebar-article-thumb {
    min-height: 0 !important;
    min-width: 100px !important;
    max-width: 100px !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    width: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

/* Force consistent sizing for all sidebar images - override any inline styles */
aside .sidebar-image,
aside .sidebar-article-thumb,
aside img.sidebar-image,
aside img.sidebar-article-thumb,
.sidebar .sidebar-image,
.sidebar .sidebar-article-thumb,
.sidebar img.sidebar-image,
.sidebar img.sidebar-article-thumb,
.sidebar-article .sidebar-image,
.sidebar-article img.sidebar-image,
.sidebar-article-item .sidebar-article-thumb,
.sidebar-article-item img.sidebar-article-thumb,
.sidebar-article-list .sidebar-article-thumb,
.sidebar-article-list img.sidebar-article-thumb,
.sidebar-widget .sidebar-article-thumb,
.sidebar-widget img.sidebar-article-thumb {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}

/* Override inline styles for placeholder divs */
aside .sidebar-image:not(img),
aside .sidebar-article-thumb:not(img),
.sidebar .sidebar-image:not(img),
.sidebar .sidebar-article-thumb:not(img),
.sidebar-article .sidebar-image:not(img),
.sidebar-article-item .sidebar-article-thumb:not(img),
.sidebar-article-list .sidebar-image:not(img),
.sidebar-article-list .sidebar-article-thumb:not(img),
.sidebar-widget .sidebar-image:not(img),
.sidebar-widget .sidebar-article-thumb:not(img) {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Global override - catch all sidebar images - MUST BE LAST */
[class*="sidebar"] [class*="image"],
[class*="sidebar"] [class*="thumb"],
aside [class*="image"],
aside [class*="thumb"],
*[class*="sidebar-image"],
*[class*="sidebar-article-thumb"] {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    box-sizing: border-box !important;
}

/* Override inline styles with attribute selector */
[class*="sidebar-image"][style],
[class*="sidebar-article-thumb"][style],
div[class*="sidebar-image"][style],
div[class*="sidebar-article-thumb"][style] {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    box-sizing: border-box !important;
}

.sidebar-article-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0;
}

.sidebar-article-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-article-meta {
    font-size: 0.75rem;
    color: #999;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 12px;
    background: #f0f4ff;
    color: #007bff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.tag:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

/* ============================================
   FOOTER - Full Screen (Like Header)
   ============================================ */
/* New Footer - Full Screen Structure (Separated from body) */
.nu-footer {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    clear: both;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    box-sizing: border-box;
    display: block;
}

.nu-footer-wrapper {
    width: 100%;
    max-width: 100%;
    background: inherit;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nu-footer-content {
    padding-top: clamp(2.5rem, 4vw + 1rem, 4rem);
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--nu-space-8);
    width: 100%;
    box-sizing: border-box;
}

.nu-footer-content:not(.nu-container) {
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
}

.nu-footer-section:first-child {
    padding-right: 20px;
}

.nu-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.nu-footer-logo-img {
    height: 35px;
    width: auto;
}

.nu-footer-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.85;
    line-height: 1.6;
}

.nu-footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nu-contact-link {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.2s;
    color: white;
    text-decoration: none;
}

.nu-contact-link:hover {
    opacity: 1;
}

.nu-footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.nu-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nu-footer-links a {
    opacity: 0.85;
    font-size: 0.95rem;
    transition: all 0.2s;
    color: white;
    text-decoration: none;
}

.nu-footer-links a:hover {
    opacity: 1;
    color: #64b5f6;
    padding-left: 5px;
}

/* Footer Category Group (with subcategories) */
.nu-footer-category-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
}

.nu-footer-category-main {
    font-weight: 600 !important;
    opacity: 1 !important;
    font-size: 0.95rem !important;
    color: white !important;
    text-decoration: none;
    transition: all 0.2s;
}

.nu-footer-category-main:hover {
    color: #64b5f6 !important;
    padding-left: 5px;
}

.nu-footer-subcategories {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 12px;
    margin-top: 4px;
}

.nu-footer-subcategory {
    font-size: 0.875rem !important;
    opacity: 0.75 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.nu-footer-subcategory::before {
    content: '•';
    position: absolute;
    left: -10px;
    color: rgba(255, 255, 255, 0.5);
}

.nu-footer-subcategory:hover {
    opacity: 1 !important;
    color: #64b5f6 !important;
    padding-left: 5px;
}

.nu-footer-link {
    opacity: 0.85;
    font-size: 0.95rem;
    transition: all 0.2s;
    color: white;
    text-decoration: none;
}

.nu-footer-link:hover {
    opacity: 1;
    color: #64b5f6;
    padding-left: 5px;
}

.nu-social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.nu-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s;
    border: 2px solid transparent;
    color: white;
    text-decoration: none;
}

.nu-social-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.3);
}

.nu-social-cta {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

.nu-footer-bottom {
    position: relative !important;
    border-top: 1px solid rgba(255,255,255,0.2);
    background: #0d47a1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    clear: both !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    padding-bottom: 0 !important;
    box-sizing: border-box;
    display: block !important;
    position: relative;
    left: 0 !important;
    right: 0 !important;
    bottom: 0;
}

.nu-footer-bottom-content {
    max-width: 1360px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.nu-footer-bottom p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .nu-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--nu-space-6);
    }
}

@media (max-width: 768px) {
    .nu-footer-content {
        grid-template-columns: 1fr;
        gap: var(--nu-space-5);
        padding-top: clamp(2rem, 5vw, 3rem);
        padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .nu-footer-section:first-child {
        padding-right: 0;
    }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,123,255,0.4);
    transition: all 0.3s;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.scroll-top:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.5);
}

.scroll-top.show {
    display: flex;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .main-content {
        padding: 30px 20px;
    }
    
    .hero-section {
        gap: 25px;
    }
    
}

@media (max-width: 1024px) {
    
    .hero-section {
        grid-template-columns: 1fr;
    }
    
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logo {
        margin-right: 30px;
    }
    
    .main-nav {
        gap: 18px;
        margin-right: 20px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 8px 8px;
    }
    
    .header-actions {
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .logo {
        margin-right: 20px;
    }
    
    .main-nav {
        gap: 15px;
        margin-right: 15px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 8px 6px;
    }
    
    .header-actions {
        gap: 12px;
    }
}

/* Responsive Design for 3-Section Header */
@media (max-width: 1024px) {
    .header-middle-container {
        grid-template-columns: 1fr auto 1fr;
        gap: 15px;
    }
    
    .logo-main-img {
        height: 50px;
    }
    
    .main-nav {
        gap: 18px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
    
    .header-top-left {
        gap: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        flex-wrap: nowrap;
    }
    
    .header-top-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .header-top-left {
        order: 1;
        justify-content: flex-start;
    }
    
    .header-top-center {
        order: 2;
        justify-content: center;
        gap: 10px;
    }
    
    .header-top-center::-webkit-scrollbar {
        height: 3px;
    }
    
    .header-top-center::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }
    
    .header-top-link {
        font-size: 0.7rem;
        padding: 4px 6px;
        flex-shrink: 0;
    }
    
    .header-top-separator {
        margin: 0 6px;
        flex-shrink: 0;
    }
    
    .header-top-right {
        order: 3;
        gap: 10px;
        flex-shrink: 0;
        justify-content: flex-end;
    }
    
    .subscribe-btn,
    .login-btn-top {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .search-box-wrapper.active {
        min-width: 280px;
        max-width: calc(100vw - 40px);
    }
}

@media (max-width: 900px) {
    .header-middle-container {
        gap: 10px;
    }
    
    .logo-main-img {
        height: 45px;
    }
    
    .header-date {
        font-size: 0.75rem;
    }
    
    .header-edition-link {
        font-size: 0.7rem;
    }
    
    .main-nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 8px 8px;
    }
    
    .header-top-left {
        gap: 8px;
    }
    
    .header-top-link {
        font-size: 0.65rem;
        padding: 4px 5px;
    }
    
    .header-top-separator {
        margin: 0 5px;
        font-size: 0.8rem;
    }
}

/* ============================================
   MOBILE HEADER - NYTIMES STYLE
   ============================================ */
@media (max-width: 768px) {
    /* Hide desktop top bar on mobile, but keep middle bar for logo/hamburger/login */
    .header-top-bar {
        display: none !important;
    }
    
    /* Show middle bar on mobile - this contains logo, hamburger, and login */
    .header-middle-bar {
        display: block !important;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Mobile Header Layout - NYTimes Style */
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        background: #ffffff;
        border-bottom: 1px solid #e5e5e5;
        padding: 0;
    }
    
    /* Mobile Header - NYTimes Style: Hamburger (kiri) | Logo (tengah) | Login (kanan) */
    .header-middle-bar {
        padding: 12px 0;
        min-height: 56px;
    }
    
    .header-middle-container {
        display: grid !important;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 16px;
        position: relative;
    }
    
    /* Hamburger menu button - kiri */
    .header-middle-container .mobile-menu-toggle {
        position: relative;
        z-index: 1004 !important;
        pointer-events: all !important;
        cursor: pointer !important;
        display: flex !important;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        margin: 0;
        padding: 0;
    }
    
    .header-middle-container .mobile-menu-toggle:active {
        opacity: 0.7;
    }
    
    .header-middle-container .mobile-menu-toggle:hover {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 4px;
    }
    
    /* Hide date and edition link on mobile */
    .header-middle-left {
        display: none !important;
    }
    
    /* Logo stays in center - HANYA SATU LOGO */
    .header-middle-center {
        display: flex !important;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .header-middle-center .logo-main {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .logo-main-img {
        height: 32px !important;
        width: auto;
        max-width: 120px;
    }
    
    /* Show hamburger menu on mobile */
    .header-middle-container .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Hide desktop navigation on mobile */
    .main-nav {
        display: none !important;
    }
    
    /* Adjust body padding for mobile header */
    body {
        padding-top: 56px !important;
    }
    
    body.header-scrolled {
        padding-top: 56px !important;
    }
    
    /* Hide search box wrapper on mobile (use mobile menu search instead) */
    .search-box-wrapper {
        display: none !important;
    }
    
    /* Ensure footer is visible on mobile and desktop */
    .nu-footer {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .nu-footer-wrapper {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nu-footer-content {
        display: grid !important;
        visibility: visible !important;
    }
    
    .nu-footer-section {
        display: block !important;
        visibility: visible !important;
    }
    
    .nu-footer-bottom {
        display: block !important;
        visibility: visible !important;
    }
    
    /* Ensure mobile header elements are visible and clickable */
    .header-bottom-bar,
    .header-bottom-container {
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-toggle,
    .logo-main,
    .header-mobile-right {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: all !important;
    }
    
    /* Ensure mobile menu sidebar and all its elements are visible */
    .mobile-menu-sidebar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1005 !important;
    }
    
    .mobile-menu-content {
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
    }
    
    .mobile-menu-search,
    .mobile-nav,
    .mobile-menu-footer {
        display: block !important;
        visibility: visible !important;
    }
    
    .mobile-menu-languages,
    .mobile-menu-actions {
        display: flex !important;
        visibility: visible !important;
    }
    
    .mobile-menu-overlay.active {
        display: block !important;
        visibility: visible !important;
        z-index: 1004 !important;
    }
    
    /* Legacy mobile styles (kept for compatibility) */
    .header-top-bar {
        padding: 6px 0;
    }
    
    .header-top-container {
        padding: 0 var(--nu-container-padding);
        flex-direction: column;
        gap: 8px;
    }
    
    .header-top-left {
        gap: 8px;
        order: 2;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 4px;
    }
    
    .header-top-left::-webkit-scrollbar {
        height: 2px;
    }
    
    .header-top-left::-webkit-scrollbar-thumb {
        background: #999;
        border-radius: 2px;
    }
    
    .header-top-link {
        font-size: 0.6rem;
        padding: 3px 5px;
        flex-shrink: 0;
    }
    
    .header-top-separator {
        margin: 0 4px;
        font-size: 0.7rem;
        flex-shrink: 0;
    }
    
    .header-language-menu {
        min-width: 120px;
        padding: 4px 0;
    }
    
    .header-language-item {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .header-top-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .header-top-left {
        order: 1;
        justify-content: flex-start;
    }
    
    .header-top-center {
        order: 2;
        justify-content: center;
        gap: 10px;
    }
    
    .header-top-right {
        order: 3;
        gap: var(--nu-space-2);
        width: 100%;
        justify-content: flex-end;
    }
    
    .subscribe-btn,
    .login-btn-top {
        padding: 6px 12px;
        font-size: 0.65rem;
        white-space: nowrap;
    }
    
    .search-box-wrapper.active {
        min-width: 280px;
        max-width: calc(100vw - 40px);
    }
    
    .header-middle-bar {
        padding: 15px 0;
    }
    
    .header-middle-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 var(--nu-container-padding);
    }
    
    .header-middle-left {
        order: 2;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-middle-center {
        order: 1;
    }
    
    .logo-main-img {
        height: 45px;
    }
    
    .header-middle-right {
        order: 3;
        justify-content: center;
    }
    
    .search-btn-main {
        font-size: 1.5rem;
    }
    
    .header-bottom-bar {
        padding: 10px 0;
    }
    
    .header-bottom-container {
        padding: 0 var(--nu-container-padding);
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: var(--nu-space-3);
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Homepage: Sembunyikan mobile menu toggle */
    .main-header.homepage-header .mobile-menu-toggle {
        display: none !important;
    }
    
    /* Homepage: Navigation horizontal scroll di mobile */
    .main-header.homepage-header .header-bottom-container {
        padding-right: var(--nu-container-padding);
    }
    
    .main-header.homepage-header .main-nav {
        padding-right: 0;
    }
    
    .mobile-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        z-index: 998;
        opacity: 0;
        transition: opacity var(--nu-transition-medium);
        pointer-events: none;
    }
    
    .mobile-nav-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: calc(72px + var(--nu-space-4)) var(--nu-container-padding) var(--nu-space-4);
        gap: 0;
        overflow-y: auto;
        transition: transform var(--nu-transition-medium), opacity var(--nu-transition-medium);
        z-index: 999;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
        transform: translateX(-105%);
        opacity: 0;
    }
    
    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-link {
        width: 100%;
        padding: var(--nu-space-3) 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.95rem;
        text-transform: none;
    }
    
    .nav-link:hover {
        border-bottom-color: #f0f0f0;
        border-bottom-width: 1px;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-link-with-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        background: #f9f9f9;
        min-width: auto;
        width: 100%;
        margin-top: 0;
    }
    
    .nav-dropdown-item {
        padding: var(--nu-space-3) var(--nu-space-4);
        border-bottom: 1px solid #e0e0e0;
    }

    .header-top-left {
        justify-content: center;
    }

    body.nav-open .main-header {
        box-shadow: 0 14px 32px rgba(15, 23, 42, 0.25);
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 6px 10px;
        white-space: nowrap;
    }
    
    
    .article-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .hero-section {
        margin-bottom: 40px;
    }
    
    .featured-image {
        min-height: 300px;
    }
    
    .sidebar-image {
        width: 100px !important;
        min-width: 100px !important;
        max-width: 100px !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        object-fit: cover !important;
        flex-shrink: 0 !important;
    }
    
    .sidebar-image:not(img) {
        width: 100px !important;
        min-width: 100px !important;
        max-width: 100px !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
    }
    
    .sidebar-article-thumb {
        width: 100px !important;
        min-width: 100px !important;
        max-width: 100px !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        object-fit: cover !important;
        flex-shrink: 0 !important;
    }
    
    .sidebar-article-thumb:not(img) {
        width: 100px !important;
        min-width: 100px !important;
        max-width: 100px !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
    }
    
    .list-article-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .list-article-image {
        width: 100%;
        height: 200px;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .slider-with-ads-layout {
        grid-template-columns: 250px 1fr;
        gap: 20px;
    }
    
    .slider-digital .article-slider-track {
        gap: 15px;
    }
    
    .slider-digital #digitalSlider .article-card-digital {
        flex: 0 0 calc(33.333% - 10px);
        width: calc(33.333% - 10px);
        min-width: calc(33.333% - 10px);
        max-width: calc(33.333% - 10px);
    }
}

@media (max-width: 768px) {
    .article-grid-with-ads {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slider-with-ads-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .slider-ads-left {
        position: relative;
        top: 0;
    }
    
    .slider-ads-left .ad-block-small {
        min-height: 250px;
    }
    
    .slider-content-right .article-slider {
        margin: 0 40px;
    }
    
    .slider-digital .article-slider-track {
        gap: 15px;
    }
    
    .slider-digital #digitalSlider .article-card-digital {
        flex: 0 0 calc(50% - 7.5px);
        width: calc(50% - 7.5px);
        min-width: calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }
    
    .slider-progress-wrapper {
        gap: 10px;
    }
    
    .slider-progress-wrapper .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px 15px;
    }
    
    .header-container {
        padding: 10px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        font-size: 1.3rem;
    }
    
    .article-title {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .featured-content {
        padding: 25px 20px;
    }
    
    .article-badge {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .scroll-top {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
    
    .main-nav {
        gap: 10px;
        padding: 10px 0;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
    .user-greeting {
        font-size: 0.8rem;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .search-toggle, .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .article-grid-with-ads {
        grid-template-columns: 1fr;
    }
    
    .featured-article-large {
        min-height: auto;
        width: 896px !important;
        height: 616px !important;
    }
    
    .featured-large-image {
        height: 250px;
    }
    
    .featured-large-title {
        font-size: 1.4rem;
    }
    
    .sidebar-scrollable,
    .sidebar-article-list-scroll {
        max-height: none;
        overflow-y: visible;
    }
    
    .slider-content-right .article-slider {
        margin: 0 30px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-digital .article-slider-track {
        gap: 10px;
    }
    
    .slider-digital #digitalSlider .article-card-digital {
        flex: 0 0 calc(100% - 5px);
        width: calc(100% - 5px);
        min-width: calc(100% - 5px);
        max-width: calc(100% - 5px);
    }
    
    .slider-progress-wrapper {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .slider-progress-wrapper .slider-progress {
        order: 1;
        width: 100%;
    }
    
    .slider-navigation-inline {
        order: 2;
        width: 100%;
        justify-content: center;
    }
    
    .slider-progress-wrapper .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Category Listing Page Styles */
.category-listing-page {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Category Articles Section - Grid Layout seperti Homepage */
.category-articles-section {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 40px var(--nu-container-padding);
    box-sizing: border-box;
}

.category-articles-section .highlight-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 316px);
    gap: 32px;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    box-sizing: border-box;
    justify-content: start;
}

.category-articles-section .highlight-grid-item {
    width: 316px;
    height: 406px;
    display: flex;
    flex-direction: column;
    background: transparent;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

/* Responsive untuk category articles */
@media (max-width: 1200px) {
    .category-articles-section .highlight-grid-layout {
        grid-template-columns: repeat(3, 316px);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .category-articles-section .highlight-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .category-articles-section .highlight-grid-item {
        width: 100%;
        height: auto;
        min-height: 406px;
    }
    
    .category-articles-section .highlight-grid-image-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 316 / 211;
    }
}

@media (max-width: 768px) {
    .category-articles-section {
        padding: 20px var(--nu-container-padding);
    }
    
    .category-articles-section .highlight-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-articles-section .highlight-grid-item {
        min-height: auto;
    }
}

.category-main-content {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 30px var(--nu-container-padding);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-breadcrumb {
    margin-bottom: 20px;
    padding-top: 0;
    width: 100%;
    box-sizing: border-box;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #999;
    margin: 0 4px;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

.category-page-header {
    background: white;
    border-radius: 12px;
    padding: 30px 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-bottom: 3px solid #007bff;
    width: 100%;
    box-sizing: border-box;
}

.category-header-content {
    border-bottom: none;
    padding-bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.category-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.category-description {
    font-size: 1.125rem;
    color: #666;
    margin: 10px 0 0 0;
    line-height: 1.6;
}

.category-sub-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.sub-nav-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sub-nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sub-nav-link {
    display: inline-block;
    padding: 8px 16px;
    background: #f3f4f6;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.sub-nav-link:hover,
.sub-nav-link.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* Featured Article Hero */
.featured-article-hero {
    margin-bottom: 50px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.featured-article-hero:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.featured-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-article-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #f3f4f6;
}

.featured-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article-hero:hover .featured-article-image {
    transform: scale(1.05);
}

.featured-article-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-article-image-placeholder svg {
    width: 100%;
    height: 100%;
}

.featured-article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 25px;
}

.article-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.article-badge {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-featured {
    background: #007bff;
    color: white;
}

.badge-category {
    background: rgba(255,255,255,0.9);
    color: #333;
}

.featured-article-content {
    padding: 35px;
    background: white;
}

.article-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    color: #666;
}

.meta-separator {
    color: #ccc;
}

.article-date {
    font-weight: 500;
    color: #666;
}

.article-read-time {
    color: #999;
}

.featured-article-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.featured-article-summary {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 25px 0;
}

.article-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-label {
    color: #666;
    font-size: 0.875rem;
}

.author-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #333;
}

.article-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.875rem;
}

.stat-item svg {
    width: 16px;
    height: 16px;
}

/* Articles List Section */
.articles-list-section {
    margin-bottom: 50px;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.article-list-item {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s;
}

.article-list-item:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.article-list-item:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom: none;
}

.article-list-item:hover {
    background: #f9fafb;
}

.article-item-link {
    display: flex;
    gap: 25px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
}

.article-item-image {
    width: 200px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
}

.article-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-list-item:hover .article-item-image img {
    transform: scale(1.05);
}

.article-item-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.article-item-image-placeholder svg {
    width: 100%;
    height: 100%;
}

.article-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.8125rem;
    color: #666;
}

.article-item-category {
    font-weight: 600;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.article-item-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-list-item:hover .article-item-title {
    color: #007bff;
}

.article-item-excerpt {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-item-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: #999;
}

.article-item-author {
    font-weight: 500;
    color: #666;
}

.article-item-views {
    color: #999;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 50px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn:hover:not(.disabled) {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.pagination-number:hover,
.pagination-number.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-listing-page {
        padding: 0 var(--nu-container-padding);
    }
    
    .content-layout {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .content-area {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
    }
    
    .sidebar {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
    }
    
    .article-item-image {
        flex: 0 0 150px;
        width: 150px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .category-main-content {
        padding: 20px 15px !important;
    }
    
    .category-page-header {
        padding: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .category-main-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .category-sub-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .sub-nav-links {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .featured-article-hero-new {
        max-width: 100% !important;
        margin-bottom: 20px;
    }
    
    .featured-article-link-new {
        flex-direction: column !important;
        gap: 16px;
    }
    
    .featured-article-image-left {
        flex: 1 1 100% !important;
        width: 100% !important;
        height: 200px !important;
    }
    
    .featured-article-content-right {
        width: 100% !important;
    }
    
    .featured-article-image-container {
        height: 250px;
    }
    
    .featured-article-content {
        padding: 20px;
    }
    
    .featured-article-headline {
        font-size: 1.5rem;
    }
    
    .article-list-item-new {
        margin-bottom: 20px;
    }
    
    .article-item-link-new {
        flex-direction: column !important;
        gap: 16px;
    }
    
    .article-item-image-new {
        flex: 1 1 100% !important;
        width: 100% !important;
        height: 200px !important;
    }
    
    .article-item-content-new {
        width: 100% !important;
    }
    
    .article-item-image {
        width: 100%;
        height: 200px;
    }
    
    .articles-slider-section,
    .articles-list-section-new {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .pagination-numbers {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .pagination-wrapper-new {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .sidebar-article-item-new {
        flex-direction: column;
        gap: 12px;
    }
    
    .sidebar-article-thumb-new {
        flex: 1 1 100% !important;
        width: 100% !important;
        height: 180px !important;
    }
}

/* ============================================
   ARTICLE DETAIL PAGE
   ============================================ */
.article-detail-page {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    background: #f9fafb;
    min-height: 60vh;
}

.article-detail-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.article-main-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Article Breadcrumb */
.article-breadcrumb {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.article-breadcrumb .breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

.article-breadcrumb .breadcrumb-list li {
    display: flex;
    align-items: center;
}

.article-breadcrumb .breadcrumb-list a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

.article-breadcrumb .breadcrumb-list a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.article-breadcrumb .breadcrumb-separator {
    color: #999;
    margin: 0 4px;
}

.article-breadcrumb .breadcrumb-current {
    color: #333;
    font-weight: 500;
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Article Header */
.article-header-section {
    margin-bottom: 30px;
}

.article-category-tag {
    display: inline-block;
    margin-bottom: 15px;
}

.article-category-tag span {
    display: inline-block;
    padding: 6px 16px;
    background: #007bff;
    color: white;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.article-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 25px;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-author-name {
    font-weight: 600;
    color: #333;
    font-size: 0.9375rem;
}

.article-date {
    color: #666;
    font-size: 0.875rem;
}

.article-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.article-views {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.875rem;
}

.article-featured-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Article Body */
.article-body-content {
    line-height: 1.8;
    color: #333;
}

.article-content-wrapper {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #444;
}

.article-content-wrapper p {
    margin-bottom: 1.5rem;
}

.article-content-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.article-content-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0 1rem 0;
    line-height: 1.3;
}

.article-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content-wrapper ul,
.article-content-wrapper ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content-wrapper li {
    margin-bottom: 0.75rem;
}

.article-content-wrapper blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

.article-content-wrapper a {
    color: #007bff;
    text-decoration: underline;
}

.article-content-wrapper a:hover {
    color: #0056b3;
}

/* Share Section */
.article-share-section {
    margin: 40px 0;
    padding: 25px 0;
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
}

.share-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-buttons-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-twitter {
    background: #1da1f2;
    color: white;
}

.share-twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.share-whatsapp {
    background: #25d366;
    color: white;
}

.share-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.share-linkedin {
    background: #0077b5;
    color: white;
}

.share-linkedin:hover {
    background: #006399;
    transform: translateY(-2px);
}

/* Author Section */
.article-author-section {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    margin: 40px 0;
}

.author-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.author-bio {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Article Navigation */
.article-navigation {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
}

.nav-article {
    flex: 1;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.nav-article:hover {
    background: white;
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-prev {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Comments Section */
.article-comments-section {
    margin: 40px 0;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
}

.comments-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.comments-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.comments-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: #1d4ed8;
    font-weight: 600;
    font-size: 0.9rem;
}

.comment-flash {
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.comment-flash::before {
    content: "";
    width: 8px;
    border-radius: 8px;
    align-self: stretch;
}

.comment-flash-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.comment-flash-success::before {
    background: #34d399;
}

.comment-flash-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.comment-flash-error::before {
    background: #fb7185;
}

.comment-flash-error ul {
    margin: 0;
    padding-left: 18px;
}

.comment-form {
    margin-bottom: 36px;
}

.comment-reply-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #1f2937;
}

.comment-reply-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-cancel-reply {
    background: none;
    border: none;
    color: #2563eb;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.comment-cancel-reply:hover {
    background: rgba(37, 99, 235, 0.12);
}

.comment-form-field textarea {
    width: 100%;
    border: 1px solid #d0d7e3;
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 1rem;
    min-height: 150px;
    resize: vertical;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.comment-form-field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
    outline: none;
}

.comment-form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.comment-submit {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    padding: 11px 26px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 12px 20px -12px rgba(37, 99, 235, 0.7);
}

.comment-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px -12px rgba(37, 99, 235, 0.8);
}

.comment-submit:active {
    transform: translateY(0);
}

.comment-login-prompt {
    padding: 20px;
    border: 1px dashed #cbd5f5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: #f8faff;
    margin-bottom: 32px;
    font-size: 0.95rem;
    color: #1f2937;
}

.comment-login-link {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.comment-login-link:hover {
    text-decoration: underline;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.comment-card {
    display: flex;
    gap: 18px;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 18px 40px -25px rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.comment-card--reply {
    background: #f8fafc;
    border-color: rgba(203, 213, 225, 0.8);
}

.comment-card--highlight {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.comment-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1d4ed8;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-card__avatar-fallback {
    font-size: 1.2rem;
}

.comment-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.comment-card__identity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-card__name {
    font-weight: 700;
    color: #0f172a;
}

.comment-card__username {
    font-size: 0.85rem;
    color: #64748b;
}

.comment-card__date {
    font-size: 0.85rem;
    color: #94a3b8;
}

.comment-card__content {
    font-size: 0.97rem;
    line-height: 1.7;
    color: #1e293b;
}

.comment-card__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-card__actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.comment-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s;
}

.comment-card__action svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.comment-card__action:hover {
    border-color: #2563eb;
    color: #2563eb;
    box-shadow: 0 8px 16px -14px rgba(37, 99, 235, 0.7);
}

.comment-card__action--like {
    background: #f8fafc;
}

.comment-thread {
    margin-top: 18px;
    margin-left: 68px;
    padding-left: 18px;
    border-left: 2px solid rgba(203, 213, 225, 0.7);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comment-card--reply .comment-card__avatar {
    width: 44px;
    height: 44px;
}

.comment-card--highlight .comment-card__avatar {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.comments-empty,
.comments-disabled {
    padding: 22px;
    border-radius: 14px;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.95rem;
    border: 1px dashed rgba(148, 163, 184, 0.5);
    text-align: center;
}

@media (max-width: 768px) {
    .comments-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .comment-form-field textarea {
        min-height: 130px;
    }

    .comment-card {
        flex-direction: column;
        gap: 14px;
    }

    .comment-card__avatar {
        width: 44px;
        height: 44px;
    }

    .comment-thread {
        margin-left: 32px;
        padding-left: 14px;
    }

    .comment-login-prompt {
        flex-direction: column;
        align-items: flex-start;
    }
}

.comments-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 28px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(224, 231, 255, 0.45), rgba(219, 234, 254, 0.6));
    border-radius: 20px;
    border: 1px solid rgba(199, 210, 254, 0.6);
    position: relative;
    overflow: hidden;
}

.comments-hero::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.18), transparent 60%);
    pointer-events: none;
}

.comments-hero__copy {
    flex: 1 1 320px;
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.comments-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #1d4ed8;
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
}

.comments-hero__title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.comments-hero__subtitle {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

.comments-hero__cta {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.comments-metric {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(199, 210, 254, 0.8);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comments-metric__label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 700;
}

.comments-metric__value {
    font-size: 2rem;
    font-weight: 800;
    color: #1d4ed8;
}

.comments-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 16px 32px -22px rgba(37, 99, 235, 0.9);
}

.comments-hero__button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.comments-hero__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px -20px rgba(37, 99, 235, 1);
}

.comments-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.comments-controls__hint {
    font-size: 0.9rem;
    color: #64748b;
}

.comments-controls__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comments-controls__label {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 600;
}

.comments-controls__select {
    border: 1px solid #cbd5f5;
    border-radius: 12px;
    padding: 8px 14px;
    min-width: 160px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e293b;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.comments-controls__select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
    outline: none;
}

@media (max-width: 768px) {
    .comments-hero {
        padding: 22px;
        flex-direction: column;
    }

    .comments-hero__cta {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .comments-hero__button {
        width: 100%;
        justify-content: center;
    }

    .comments-controls {
        flex-direction: column;
        align-items: flex-start;
    }

/* ============================================
   SECTION 2: MODERN GRID LAYOUT
   ============================================ */
.section-modern-grid {
    margin: var(--nu-space-section-y) auto;
    padding: 0 var(--nu-container-padding);
    max-width: var(--nu-max-width-xxl);
    width: 100%;
    box-sizing: border-box;
}

.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--nu-color-border);
}

.section-header-content {
    flex: 1;
}

.section-title-modern {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--nu-color-text);
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--nu-color-text-muted);
    margin: 0;
    font-weight: 400;
}

.view-all-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--nu-color-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all var(--nu-transition-fast);
    padding: 0.5rem 1rem;
    border-radius: var(--nu-radius-md);
    background: rgba(37, 99, 235, 0.05);
}

.view-all-modern:hover {
    color: var(--nu-color-primary-dark);
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(4px);
}

.view-all-modern svg {
    transition: transform var(--nu-transition-fast);
}

.view-all-modern:hover svg {
    transform: translateX(2px);
}

.modern-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.modern-grid-featured {
    grid-column: 1 / -1;
}

.modern-card-featured {
    display: block;
    background: var(--nu-color-surface);
    border-radius: var(--nu-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--nu-transition-medium);
    border: 1px solid var(--nu-color-border);
    text-decoration: none;
    color: inherit;
}

.modern-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--nu-color-primary);
}

.modern-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.modern-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--nu-transition-medium);
}

.modern-card-featured:hover .modern-card-image {
    transform: scale(1.05);
}

.modern-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.modern-card-content-featured {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
}

.modern-card-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.modern-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--nu-radius-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.modern-category-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--nu-radius-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modern-card-title-featured {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.modern-card-excerpt-featured {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.modern-card-meta-featured {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
}

.modern-author,
.modern-date,
.modern-views {
    font-weight: 500;
}

.modern-separator {
    opacity: 0.6;
}

.modern-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.modern-card {
    display: block;
    background: var(--nu-color-surface);
    border-radius: var(--nu-radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all var(--nu-transition-medium);
    border: 1px solid var(--nu-color-border);
    text-decoration: none;
    color: inherit;
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--nu-color-primary);
}

.modern-card .modern-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.modern-card .modern-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--nu-transition-medium);
}

.modern-card:hover .modern-card-image {
    transform: scale(1.08);
}

.modern-card-content {
    padding: 1.5rem;
    min-height: auto;
    box-sizing: border-box;
}

.modern-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--nu-color-text);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--nu-transition-fast);
}

.modern-card:hover .modern-card-title {
    color: var(--nu-color-primary);
}

.modern-card-excerpt {
    font-size: 0.875rem;
    color: var(--nu-color-text-muted);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--nu-color-text-muted);
    flex-wrap: wrap;
}

/* Responsive Design */
@media (min-width: 768px) {
    .modern-grid-container {
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }
    
    .modern-grid-featured {
        grid-column: 1;
    }
    
    .modern-grid-cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .modern-grid-container {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .modern-grid-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .section-modern-grid {
        padding: 0 var(--nu-container-padding);
        margin: calc(var(--nu-space-section-y) * 0.75) auto;
    }
    
    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .view-all-modern {
        align-self: flex-start;
    }
    
    .modern-card-content-featured {
        padding: 1.5rem;
    }
    
    .modern-card-title-featured {
        font-size: 1.5rem;
    }
    
    .modern-grid-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .modern-grid-container {
        gap: 1.5rem;
    }
}

/* Fix for scroll issues - ensure proper spacing between sections */
section {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: clamp(2.5rem, 4vw + 1rem, 4rem) 0;
}

section + section {
    margin-top: 0;
}

/* Ensure all sections have consistent container */
section:not(.hero-section):not(.section-modern-grid) {
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
    max-width: var(--nu-max-width-xxl);
    margin-left: auto;
    margin-right: auto;
}

/* HIGHLIGHT section is now using .highlight-section class */

    .comment-form-field textarea {
        min-height: 130px;
    }

    .comment-login-prompt {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
}

/* ============================================
   FINAL OVERRIDE - SIDEBAR IMAGES UNIFORM SIZE
   Must be at the end to override everything
   ============================================ */
.sidebar-image,
.sidebar-article-thumb,
img.sidebar-image,
img.sidebar-article-thumb,
div.sidebar-image,
div.sidebar-article-thumb,
.sidebar-image[style],
.sidebar-article-thumb[style],
aside .sidebar-image,
aside .sidebar-article-thumb,
.sidebar .sidebar-image,
.sidebar .sidebar-article-thumb,
.sidebar-article .sidebar-image,
.sidebar-article-item .sidebar-article-thumb,
.sidebar-article-list .sidebar-image,
.sidebar-article-list .sidebar-article-thumb,
.sidebar-widget .sidebar-image,
.sidebar-widget .sidebar-article-thumb {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

.sidebar-image:not(img),
.sidebar-article-thumb:not(img),
div.sidebar-image,
div.sidebar-article-thumb {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* SECTION 1 HIGHLIGHT - FIXED SIZES (Desktop) */
@media (min-width: 1024px) {
    .content-layout .content-area .featured-article-large {
        width: 896px !important;
        height: 616px !important;
        max-width: 896px !important;
        max-height: 616px !important;
        min-width: 896px !important;
        min-height: 616px !important;
        opacity: 1 !important;
    }
    .content-layout .sidebar .sidebar-article-item {
        width: 432px !important;
        height: 146px !important;
        max-width: 432px !important;
        max-height: 146px !important;
        min-width: 432px !important;
        min-height: 146px !important;
        border-width: 1px !important;
        opacity: 1 !important;
    }
    .content-layout .sidebar {
        width: 432px !important;
        max-width: 432px !important;
        min-width: 432px !important;
    }
}

/* ============================================
   SECTION 2 - GRID LAYOUT
   ============================================ */
.section-grid-layout {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0 var(--nu-container-padding);
    box-sizing: border-box;
    clear: both;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-grid-container {
    width: 1360px;
    height: 475px;
    display: grid;
    grid-template-columns: repeat(4, 316px);
    gap: 20px;
    margin: 0 auto;
    box-sizing: border-box;
    justify-content: start;
}

.section-grid-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.section-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.section-grid-image-wrapper {
    width: 100%;
    height: 211px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-grid-image {
    width: 316px !important;
    height: 211px !important;
    max-width: 316px !important;
    max-height: 211px !important;
    min-width: 316px !important;
    min-height: 211px !important;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    border-width: 1px !important;
    box-sizing: border-box;
    display: block;
    opacity: 1;
}

.section-grid-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-grid-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.section-grid-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-grid-category {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-grid-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-grid-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 12px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-grid-meta {
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .section-grid-container {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .section-video-grid {
        width: 100% !important;
        max-width: 100% !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
    }
    
    .section-video-item {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .section-video-thumbnail-wrapper {
        width: 100% !important;
        height: 211px !important;
    }
    
    .section-grid-item {
        width: 316px !important;
        max-width: 316px !important;
    }
    .section-grid-image {
        width: 316px !important;
        height: 211px !important;
        max-width: 316px !important;
        max-height: 211px !important;
        min-width: 316px !important;
        min-height: 211px !important;
        border-width: 1px !important;
        opacity: 1 !important;
    }
}

/* ============================================
   SECTION 3 - LAYOUT WITH SIDEBAR (AI & Otomasi)
   ============================================ */
.section-3-layout {
    width: 1360px !important;
    max-width: 1360px !important;
    margin: 0 auto;
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
    box-sizing: border-box;
}

.section-3-content {
    width: 896px !important;
    max-width: 896px !important;
}

.section-3-sidebar {
    width: 432px !important;
    max-width: 432px !important;
}

.section-3-featured {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 896px !important;
    height: 376px !important;
    max-width: 896px !important;
    max-height: 376px !important;
    min-width: 896px !important;
    min-height: 376px !important;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

.section-3-featured .featured-large-image-wrapper {
    width: 564px !important;
    height: 376px !important;
    max-width: 564px !important;
    max-height: 376px !important;
    min-width: 564px !important;
    min-height: 376px !important;
    flex-shrink: 0;
    overflow: hidden;
}

.section-3-featured .featured-large-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-3-content-text {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-3-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.section-3-badge {
    display: inline-block;
    background: #00B894;
    color: white;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-3-category {
    display: inline-block;
    color: #999999;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-3-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: #000000;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-3-excerpt {
    font-size: 14px;
    line-height: 17px;
    color: #999999;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-3-meta {
    font-size: 10px;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.sidebar-article-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.sidebar-article-category {
    font-size: 10px;
    font-weight: 500;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sidebar-article-excerpt {
    font-size: 12px;
    line-height: 15px;
    color: #999999;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-article-divider {
    height: 1px;
    background: #E5E5E5;
    margin: 16px 0;
}

/* ============================================
   SECTION 4 - VIDEO GRID - PROFESSIONAL YOUTUBE STYLE
   ============================================ */
.section-video-grid {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 291px !important;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.section-video-item {
    height: auto !important;
    min-height: 291px !important;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
}

.section-video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.section-video-item:hover .section-video-thumbnail {
    transform: scale(1.05);
}

.section-video-item:hover .section-video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Thumbnail Wrapper */
.section-video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 211px;
    overflow: hidden;
    background: #000000;
    flex-shrink: 0;
}

.section-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.section-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-video-placeholder-icon {
    color: rgba(255, 255, 255, 0.3);
    width: 48px;
    height: 48px;
}

/* Overlay Gradient */
.section-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.section-video-item:hover .section-video-overlay {
    opacity: 1;
}

/* Play Button */
.section-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.section-video-item:hover .section-video-play-button {
    background: #FF0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.section-video-play-icon {
    width: 28px;
    height: 28px;
    color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    transition: color 0.3s ease;
}

.section-video-item:hover .section-video-play-icon {
    color: #FFFFFF;
}

/* Duration Badge */
.section-video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.85);
    color: #FFFFFF;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Video Content */
.section-video-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-video-category {
    margin-bottom: 4px;
}

.section-video-category span {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.section-video-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8em;
}

.section-video-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    margin-top: auto;
}

.section-video-views,
.section-video-date {
    color: #6b7280;
}

.section-video-separator {
    color: #9ca3af;
}

.section-grid-image-wrapper {
    position: relative;
}

/* ============================================
   SECTION 5 - HORIZONTAL SLIDER
   ============================================ */
.section-slider-layout {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0 var(--nu-container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.section-slider-wrapper {
    width: 1012px;
    margin: 0 auto;
    position: relative;
}

.section-slider-container {
    overflow: hidden;
    width: 100%;
}

.section-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.section-slider-item {
    flex: 0 0 316px;
    min-width: 316px;
    max-width: 316px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    height: 271px !important;
    max-height: 271px !important;
    min-height: 271px !important;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.section-slider-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.section-slider-image-wrapper {
    width: 100%;
    height: 211px;
    overflow: hidden;
    flex-shrink: 0;
}

.section-slider-image {
    width: 316px !important;
    height: 211px !important;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    border-width: 1px !important;
    display: block;
}

.section-slider-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #0F172A;
    margin: 16px 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.section-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    gap: 16px;
}

.section-slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F5F9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #1A73E8;
    flex-shrink: 0;
}

.section-slider-btn:hover {
    background: #E2E8F0;
    transform: scale(1.1);
}

.section-slider-progress {
    flex: 1;
    height: 8px;
    background: #F1F5F9;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.section-slider-progress-bar {
    height: 100%;
    background: #1A73E8;
    border-radius: 30px;
    transition: width 0.3s ease;
    width: 20%;
}

/* Large Screen Optimization - Full Screen UI/UX */
@media (min-width: 1600px) {
    .nu-container,
    .hero-featured-container,
    .highlight-grid-container,
    .bisnis-strategi-container,
    .keamanan-slider-container,
    .section-grid-layout,
    .section-slider-layout {
        max-width: 90%;
    }
    
    .hero-featured-layout,
    .highlight-grid-layout,
    .bisnis-strategi-layout,
    .keamanan-slider-layout {
        max-width: 100%;
    }
}

@media (min-width: 1920px) {
    .nu-container,
    .hero-featured-container,
    .highlight-grid-container,
    .bisnis-strategi-container,
    .keamanan-slider-container,
    .section-grid-layout,
    .section-slider-layout {
        max-width: 85%;
    }
}

@media (min-width: 1024px) {
    .section-3-layout {
        width: 1360px !important;
        height: 376px !important;
    }
    .section-3-content {
        width: 896px !important;
        height: 376px !important;
    }
    .section-3-sidebar {
        width: 432px !important;
        height: 376px !important;
    }
    .section-3-featured {
        width: 896px !important;
        height: 376px !important;
    }
    .section-3-featured .featured-large-image-wrapper {
        width: 564px !important;
        height: 376px !important;
    }
    .section-video-grid {
        width: 1360px !important;
        height: 291px !important;
    }
    .section-slider-wrapper {
        width: 1012px !important;
    }
    .section-slider-item {
        width: 316px !important;
        height: 271px !important;
    }
    .section-slider-image {
        width: 316px !important;
        height: 211px !important;
    }
}

/* ============================================
   HERO/FEATURED SECTION - Above HIGHLIGHT
   ============================================ */
.hero-featured-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
    padding-top: clamp(2.5rem, 4vw + 1rem, 4rem);
    padding-bottom: clamp(2.5rem, 4vw + 1rem, 4rem);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-featured-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
    box-sizing: border-box;
    position: relative;
}

.hero-featured-layout {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

@media (max-width: 1440px) {
    .hero-featured-layout {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    .hero-featured-main {
        width: calc(65% - 10px);
        min-width: 0;
    }
    .hero-featured-sidebar {
        width: calc(35% - 10px);
        min-width: 0;
    }
    .hero-featured-card {
        width: 100%;
        height: auto;
        aspect-ratio: 896 / 616;
    }
    .hero-sidebar-article-item {
        width: 100%;
        height: auto;
        min-height: 146px;
    }
}

.hero-featured-main {
    width: 100%;
    max-width: 896px;
    min-width: 0;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.hero-featured-card {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 616px;
    min-height: 250px;
    position: relative;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border-radius: 0;
    box-sizing: border-box;
}

.hero-featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-width: 100%;
}

.hero-featured-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
}

.hero-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 252px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 50.22%), 
                linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 832px;
    min-height: 170px;
    padding: 0 32px 52px 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
}

.hero-featured-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.hero-featured-badge {
    display: inline-block;
    background: #00B894;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    text-transform: uppercase;
    box-sizing: border-box;
    filter: drop-shadow(0px 1px 10px rgba(0, 0, 0, 0.25));
}

.hero-featured-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 12px;
}

.hero-featured-category::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.hero-featured-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: #FFFFFF;
    margin: 0;
    width: 411px;
    max-width: 100%;
}

.hero-featured-play-btn {
    position: absolute;
    right: 86px;
    bottom: 32px;
    width: 46px;
    height: 46px;
    background: #FFFFFF;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-featured-play-btn svg {
    width: 19px;
    height: 19px;
}

.hero-featured-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-featured-sidebar {
    width: 432px;
    max-width: 432px;
    min-width: 432px;
    height: 616px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.hero-sidebar-article-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    justify-content: space-between;
}

.hero-sidebar-article-item {
    display: flex;
    gap: 16px;
    width: 432px;
    height: auto;
    min-height: 146px;
    text-decoration: none;
    color: inherit;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.hero-sidebar-image-wrapper {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0;
}

.hero-sidebar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    min-width: 0;
}

.hero-sidebar-categories {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.hero-sidebar-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
}

.hero-sidebar-category-dot {
    width: 4px;
    height: 4px;
    background: rgba(153, 153, 153, 0.6);
    border-radius: 50%;
    display: inline-block;
}

.hero-sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #0F172A;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

.hero-sidebar-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    color: #999999;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

.hero-sidebar-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    color: #999999;
}

.hero-sidebar-author {
    font-style: italic;
}

.hero-sidebar-dot {
    width: 4px;
    height: 4px;
    background: rgba(153, 153, 153, 0.6);
    border-radius: 50%;
    display: inline-block;
}

.hero-sidebar-date,
.hero-sidebar-read {
    color: #999999;
}

.hero-sidebar-divider {
    width: 100%;
    max-width: 432px;
    height: 0;
    border-top: 1px solid #E5E5E5;
    margin: 0;
    flex-shrink: 0;
    display: block;
}

@media (min-width: 1024px) {
    .hero-featured-layout {
        width: 100% !important;
        max-width: 1360px !important;
        height: 616px !important;
    }
    .hero-featured-main {
        width: 896px !important;
        height: 616px !important;
    }
    .hero-featured-card {
        width: 896px !important;
        height: 616px !important;
    }
    .hero-featured-sidebar {
        width: 432px !important;
        height: 616px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .hero-sidebar-article-list {
        height: 100% !important;
        justify-content: space-between !important;
    }
    
    .hero-sidebar-article-item {
        width: 432px !important;
        height: auto !important;
        flex: 0 0 auto !important;
    }
    
    .hero-sidebar-divider {
        flex: 0 0 auto !important;
        margin: 0 !important;
    }
    .hero-sidebar-image-wrapper {
        width: 130px !important;
        height: 130px !important;
    }
}

/* ============================================
   KEAMANAN & INFRASTRUKTUR SLIDER SECTION
   ============================================ */
.keamanan-slider-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0;
    background: transparent;
    position: relative;
    clear: both;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Partnership & Impact Section - Same styling as Keamanan */
.partnership-impact-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0;
    background: transparent;
    position: relative;
    clear: both;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Teknologi & Inovasi Section - Same styling as Highlight */
.teknologi-inovasi-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.keamanan-slider-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
    box-sizing: border-box;
}

.keamanan-slider-layout {
    display: flex;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.keamanan-slider-content {
    width: 1012px;
    max-width: 1012px;
    min-width: 1012px;
    height: 404px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.keamanan-slider-header {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    width: 1012px;
    height: 37px;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
    flex-wrap: nowrap;
}

.keamanan-slider-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    width: auto;
    min-width: 0;
    height: 37px;
    white-space: nowrap;
}

.keamanan-slider-header-line {
    flex: 1;
    height: 0;
    border-top: 1px solid #E5E5E5;
    margin: 0 16px 0 20px;
    align-self: center;
    min-width: 0;
}

.keamanan-slider-view-all {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1A73E8;
    text-decoration: none;
    margin-left: auto;
    position: relative;
    padding-right: 20px;
    width: 125px;
    height: 24px;
    text-align: right;
}

.keamanan-slider-view-all::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 0;
    background: #1A73E8;
    border: 2px solid #1A73E8;
    box-sizing: border-box;
}

.keamanan-slider-wrapper {
    width: 1012px;
    height: 335px;
    min-height: 335px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.keamanan-slider-container-inner {
    width: 1012px;
    height: 271px;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    touch-action: pan-y !important;
}

.keamanan-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: max-content;
    height: 271px;
    touch-action: pan-y pinch-zoom !important;
}

.keamanan-slider-item {
    flex: 0 0 316px;
    min-width: 316px;
    max-width: 316px;
    width: 316px;
    height: 271px;
    position: relative;
    flex-shrink: 0;
}

.keamanan-slider-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.keamanan-slider-image-wrapper {
    width: 316px;
    height: 211px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.keamanan-slider-image {
    width: 316px;
    height: 211px;
    object-fit: cover;
    display: block;
    background: #D9D9D9;
}

.keamanan-slider-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #0F172A;
    margin: 16px 0 0 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    height: 44px;
    width: 316px;
}

.keamanan-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    width: 1012px;
    height: 36px;
    position: relative;
}

.keamanan-slider-progress {
    width: 907px;
    height: 8px;
    background: #F1F5F9;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.keamanan-slider-progress-bar {
    width: 184px;
    height: 8px;
    background: #1A73E8;
    border-radius: 30px;
    position: absolute;
    left: 0;
    top: 0;
    transition: width 0.3s ease;
}

.keamanan-slider-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.keamanan-slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F5F9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #1A73E8;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.keamanan-slider-btn:hover {
    background: #E2E8F0;
    transform: scale(1.05);
}

.keamanan-slider-btn:active {
    transform: scale(0.95);
}

.keamanan-slider-btn svg {
    width: 20px;
    height: 20px;
}

.keamanan-slider-sidebar {
    width: 316px;
    max-width: 316px;
    min-width: 316px;
    flex-shrink: 0;
    height: 404px;
    position: relative;
}

.keamanan-slider-ad {
    width: 316px;
    height: 404px;
    background: #F3F3F3;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.keamanan-slider-ad-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.keamanan-slider-ad-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #000000;
    margin: 0 0 20px 0;
    padding: 0;
}

.keamanan-slider-ad-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.keamanan-slider-ad-logo-icon {
    width: 40px;
    height: 40px;
    background: #1A73E8;
    color: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.keamanan-slider-ad-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A73E8;
}

.keamanan-slider-ad-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #666666;
    margin: 0 0 20px 0;
    padding: 0;
}

.keamanan-slider-ad-dimensions {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    color: #999999;
    text-align: right;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

@media (min-width: 1024px) {
    .keamanan-slider-section {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 404px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .keamanan-slider-container {
        width: 100% !important;
        max-width: 1360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: var(--nu-container-padding) !important;
        padding-right: var(--nu-container-padding) !important;
    }
    
    .keamanan-slider-layout {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .keamanan-slider-content {
        width: 1012px !important;
        max-width: 1012px !important;
        min-width: 1012px !important;
        height: 404px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .keamanan-slider-header {
        width: 1012px !important;
        height: 37px !important;
        flex-wrap: nowrap !important;
    }
    
    .keamanan-slider-title {
        width: auto !important;
        min-width: 0 !important;
        white-space: nowrap !important;
    }
    
    .keamanan-slider-header-line {
        flex: 1 !important;
        min-width: 0 !important;
        margin: 0 16px 0 20px !important;
    }
    
    .keamanan-slider-wrapper {
        width: 1012px !important;
        height: 335px !important;
        min-height: 335px !important;
        flex: 1 !important;
    }
    
    .keamanan-slider-container-inner {
        width: 1012px !important;
        height: 271px !important;
    }
    
    .keamanan-slider-item {
        width: 316px !important;
        height: 271px !important;
    }
    
    .keamanan-slider-image-wrapper {
        width: 316px !important;
        height: 211px !important;
    }
    
    .keamanan-slider-image {
        width: 316px !important;
        height: 211px !important;
    }
    
    .keamanan-slider-controls {
        width: 1012px !important;
        height: 36px !important;
    }
    
    .keamanan-slider-progress {
        width: 907px !important;
        height: 8px !important;
    }
    
    .keamanan-slider-sidebar {
        width: 316px !important;
        height: 404px !important;
    }
    
    .keamanan-slider-ad {
        width: 316px !important;
        height: 404px !important;
    }
}

/* Ensure Leadership & Growth section uses same layout as Bisnis & Strategi */
.leadership-growth-section {
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0;
    background: transparent;
    position: relative;
    clear: both;
    overflow: hidden;
}

.leadership-growth-section .bisnis-strategi-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
    box-sizing: border-box;
}

.leadership-growth-section .bisnis-strategi-layout {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    box-sizing: border-box;
    flex-wrap: nowrap;
    position: relative;
    clear: both;
}

.leadership-growth-section .bisnis-strategi-featured {
    width: 896px;
    max-width: 896px;
    min-width: 896px;
    flex-shrink: 0;
    position: relative;
    padding: 0;
    margin: 0;
}

.leadership-growth-section .bisnis-featured-card {
    display: flex !important;
    flex-direction: row !important;
    gap: 32px;
    width: 896px;
    height: 376px;
    background: transparent;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    position: relative;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

.leadership-growth-section .bisnis-featured-content {
    flex: 0 0 310px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    width: 310px !important;
    min-width: 310px !important;
    max-width: 310px !important;
    position: relative;
    z-index: 1;
    gap: 0;
    order: 1 !important;
}

.leadership-growth-section .bisnis-featured-image-wrapper {
    width: 564px !important;
    height: 376px !important;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    z-index: 0;
    order: 2 !important;
}

.leadership-growth-section .bisnis-strategi-sidebar {
    width: 432px;
    max-width: 432px;
    min-width: 432px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .leadership-growth-section .bisnis-strategi-layout {
        width: 1360px !important;
        max-width: 1360px !important;
    }
    
    .leadership-growth-section .bisnis-strategi-featured {
        width: 896px !important;
        max-width: 896px !important;
        min-width: 896px !important;
    }
    
    .leadership-growth-section .bisnis-featured-card {
        width: 896px !important;
        height: 376px !important;
        flex-direction: row !important;
    }
    
    .leadership-growth-section .bisnis-featured-content {
        width: 310px !important;
        min-width: 310px !important;
        max-width: 310px !important;
        order: 1 !important;
    }
    
    .leadership-growth-section .bisnis-featured-image-wrapper {
        width: 564px !important;
        height: 376px !important;
        order: 2 !important;
    }
    
    .leadership-growth-section .bisnis-strategi-sidebar {
        width: 432px !important;
        height: 376px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .leadership-growth-section .bisnis-sidebar-article-list {
        height: 100% !important;
        justify-content: space-between !important;
    }
    
    .leadership-growth-section .bisnis-sidebar-article-item {
        height: auto !important;
        min-height: 120px !important;
        flex: 0 0 auto !important;
    }
    
    .leadership-growth-section .bisnis-sidebar-divider {
        flex: 0 0 auto !important;
        margin: 0 !important;
    }
}

/* Partnership & Impact Section - Uses same layout as Keamanan & Infrastruktur */
.partnership-impact-section {
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0;
    background: transparent;
    position: relative;
    clear: both;
    overflow: hidden;
}

.partnership-impact-section .keamanan-slider-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
    box-sizing: border-box;
}

.partnership-impact-section .keamanan-slider-layout {
    display: flex;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    flex-wrap: nowrap;
    position: relative;
    clear: both;
}

.partnership-impact-section .keamanan-slider-content {
    width: 1012px;
    max-width: 1012px;
    min-width: 1012px;
    height: 404px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.partnership-impact-section .keamanan-slider-header {
    flex-wrap: nowrap;
}

.partnership-impact-section .keamanan-slider-title {
    width: auto;
    min-width: 0;
    white-space: nowrap;
}

.partnership-impact-section .keamanan-slider-header-line {
    flex: 1;
    min-width: 0;
    margin: 0 16px 0 20px;
}

.partnership-impact-section .keamanan-slider-wrapper {
    flex: 1;
    height: 335px;
    min-height: 335px;
}

.partnership-impact-section .keamanan-slider-sidebar {
    width: 316px;
    max-width: 316px;
    min-width: 316px;
    height: 404px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .partnership-impact-section .keamanan-slider-container {
        width: 100% !important;
        max-width: 1360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: var(--nu-container-padding) !important;
        padding-right: var(--nu-container-padding) !important;
    }
    
    .partnership-impact-section .keamanan-slider-layout {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .partnership-impact-section .keamanan-slider-content {
        width: 1012px !important;
        max-width: 1012px !important;
        min-width: 1012px !important;
        height: 404px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .partnership-impact-section .keamanan-slider-header {
        flex-wrap: nowrap !important;
    }
    
    .partnership-impact-section .keamanan-slider-title {
        width: auto !important;
        min-width: 0 !important;
        white-space: nowrap !important;
    }
    
    .partnership-impact-section .keamanan-slider-header-line {
        flex: 1 !important;
        min-width: 0 !important;
        margin: 0 16px 0 20px !important;
    }
    
    .partnership-impact-section .keamanan-slider-wrapper {
        flex: 1 !important;
        height: 335px !important;
        min-height: 335px !important;
    }
    
    .partnership-impact-section .keamanan-slider-sidebar {
        width: 316px !important;
        max-width: 316px !important;
        min-width: 316px !important;
        height: 404px !important;
    }
    
    .partnership-impact-section .keamanan-slider-ad {
        width: 316px !important;
        height: 404px !important;
    }
}

/* Teknologi & Inovasi Section - Uses same layout as HIGHLIGHT */

.teknologi-inovasi-section .highlight-grid-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: var(--nu-container-padding);
    padding-right: var(--nu-container-padding);
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .teknologi-inovasi-section .highlight-grid-container {
        width: 100% !important;
        max-width: 1360px !important;
    }
    
    .teknologi-inovasi-section .highlight-grid-layout {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ============================================ */

/* Base Mobile Styles (< 768px) */
@media (max-width: 767px) {
    /* Container adjustments */
    .nu-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Override all fixed widths */
    .bisnis-strategi-container,
    .keamanan-slider-container,
    .highlight-grid-container,
    .partnership-impact-section .keamanan-slider-container,
    .teknologi-inovasi-section .highlight-grid-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .bisnis-strategi-header,
    .bisnis-strategi-layout,
    .keamanan-slider-layout,
    .highlight-grid-layout,
    .partnership-impact-section .keamanan-slider-layout,
    .teknologi-inovasi-section .highlight-grid-layout {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Header Responsive */
    .header-top-bar {
        display: none; /* Hide top bar on mobile */
    }
    
    .header-middle-bar {
        padding: 12px 0;
    }
    
    .header-middle-container {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .header-middle-left {
        order: 2;
        width: 100%;
        justify-content: center;
        font-size: 12px;
    }
    
    .header-middle-center {
        order: 1;
        width: 100%;
        text-align: center;
    }
    
    .logo-main-img {
        max-width: 120px;
        height: auto;
    }
    
    .header-middle-right {
        order: 3;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header-bottom-bar {
        position: relative;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #e5e5e5;
        font-size: 14px;
    }
    
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f9fafb;
        margin-top: 8px;
        padding-left: 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #1f2937;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .mobile-nav-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        touch-action: none;
    }
    
    /* Prevent all horizontal scrolling and dragging on mobile */
    * {
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        max-width: 100vw !important;
    }
    
    /* Prevent image and element dragging */
    img, video, iframe, embed, object {
        -webkit-user-drag: none !important;
        -khtml-user-drag: none !important;
        -moz-user-drag: none !important;
        -o-user-drag: none !important;
        user-drag: none !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }
    
    /* Prevent text selection on UI elements */
    button, a, .nav-link, .section-title, 
    .bisnis-strategi-title, .keamanan-slider-title,
    .highlight-section-title {
        -webkit-user-select: none !important;
        user-select: none !important;
        -webkit-tap-highlight-color: transparent !important;
        touch-action: manipulation !important;
    }
    
    /* Prevent horizontal scroll on all containers */
    .main-content,
    section,
    .nu-container,
    .hero-featured-layout,
    .highlight-grid-layout,
    .section-grid-container,
    .keamanan-slider-layout,
    .bisnis-strategi-layout {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        touch-action: pan-y !important;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent slider tracks from causing horizontal scroll */
    .keamanan-slider-track,
    .highlight-grid-layout,
    .section-video-grid {
        touch-action: pan-y pinch-zoom !important;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Lock body scroll direction */
    body {
        overscroll-behavior-y: contain !important;
        overscroll-behavior-x: none !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .mobile-nav-backdrop.active {
        display: block;
    }
    
    /* Hero/Featured Section */
    .hero-featured-section {
        margin-top: 20px !important;
        margin-bottom: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .hero-featured-layout {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .hero-featured-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .hero-featured-main {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 300px !important;
    }
    
    .hero-featured-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 250px !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .hero-featured-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
        position: relative !important;
        overflow: hidden !important;
        display: block !important;
    }
    
    .hero-featured-image {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        min-height: 250px !important;
        max-height: 250px !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
    }
    
    .hero-featured-image[style*="background"] {
        width: 100% !important;
        max-width: 100% !important;
        height: 250px !important;
        min-height: 250px !important;
    }
    
    .hero-featured-overlay {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
    }
    
    .hero-featured-content {
        padding: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        height: auto !important;
        left: 0 !important;
        right: 0 !important;
        box-sizing: border-box !important;
    }
    
    .hero-featured-title {
        font-size: 18px !important;
        line-height: 22px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-featured-badges {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }
    
    .hero-featured-play-btn {
        width: 40px !important;
        height: 40px !important;
        right: 12px !important;
        bottom: 12px !important;
    }
    
    .hero-featured-title {
        font-size: 20px !important;
        line-height: 24px !important;
    }
    
    .hero-featured-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .hero-sidebar-article-list {
        gap: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .hero-sidebar-article-item {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 120px !important;
        padding: 12px 0 !important;
        margin-bottom: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
    }
    
    .hero-sidebar-image-wrapper {
        width: 100px !important;
        min-width: 100px !important;
        max-width: 100px !important;
        height: 100px !important;
        min-height: 100px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .hero-sidebar-content {
        flex: 1 !important;
        min-width: 0 !important;
        max-width: calc(100% - 112px) !important;
        width: calc(100% - 112px) !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .hero-sidebar-title {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        box-sizing: border-box !important;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
    }
    
    .hero-sidebar-excerpt {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        box-sizing: border-box !important;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
    }
    
    .hero-sidebar-meta {
        width: 100% !important;
        max-width: 100% !important;
        flex-wrap: wrap !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-sidebar-author,
    .hero-sidebar-date,
    .hero-sidebar-read {
        font-size: 10px !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }
    
    .hero-sidebar-divider {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 12px 0 !important;
        box-sizing: border-box !important;
    }
    
    /* HIGHLIGHT Section */
    .highlight-grid-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .highlight-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .highlight-grid-item {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .highlight-grid-image-wrapper {
        width: 100% !important;
        height: 200px !important;
    }
    
    .highlight-section-title {
        font-size: 18px !important;
        line-height: 22px !important;
        font-weight: 700 !important;
        flex: 0 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 110px) !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    /* Bisnis & Strategi Section */
    .bisnis-strategi-section {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .bisnis-strategi-layout {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .bisnis-strategi-featured {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .bisnis-featured-card {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        gap: 16px !important;
    }
    
    .bisnis-featured-content {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex: 1 !important;
        order: 2 !important;
    }
    
    .bisnis-featured-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: 250px !important;
        order: -1 !important;
        flex: 0 0 auto !important;
    }
    
    .bisnis-strategi-sidebar {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    
    .bisnis-sidebar-article-item {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 100px !important;
    }
    
    .bisnis-sidebar-image-wrapper {
        width: 80px !important;
        min-width: 80px !important;
        max-width: 80px !important;
        height: 80px !important;
        flex-shrink: 0 !important;
    }
    
    .bisnis-sidebar-content {
        width: auto !important;
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    /* Keamanan Slider Section */
    .keamanan-slider-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .keamanan-slider-layout {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .keamanan-slider-content {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    
    .keamanan-slider-sidebar {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    
    .keamanan-slider-ad {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 300px !important;
    }
    
    .keamanan-slider-item {
        width: 280px !important;
        min-width: 280px !important;
    }
    
    /* Partnership & Impact Section */
    .partnership-impact-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .partnership-impact-section .keamanan-slider-layout {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .partnership-impact-section .keamanan-slider-content {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    
    .partnership-impact-section .keamanan-slider-sidebar {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    
    /* Leadership & Growth Section */
    .leadership-growth-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .leadership-growth-section .bisnis-strategi-layout {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .leadership-growth-section .bisnis-featured-card {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .leadership-growth-section .bisnis-featured-image-wrapper {
        order: -1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Teknologi & Inovasi Section */
    .teknologi-inovasi-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .teknologi-inovasi-section .highlight-grid-layout {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Video Section */
    .section-video,
    .section-grid-layout {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 60px !important;
    }
    
    .section-video-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 16px !important;
    }
    
    .section-video-item {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .section-video-thumbnail-wrapper {
        width: 100% !important;
        height: auto !important;
        min-height: 180px !important;
        aspect-ratio: 16 / 9 !important;
    }
    
    .section-video-thumbnail {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .section-grid-item {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Footer */
    .nu-footer {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .nu-footer-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .nu-footer-content {
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .nu-footer-section {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .nu-footer-logo-img {
        max-width: 150px !important;
        width: auto !important;
    }
    
    .nu-footer-bottom {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .nu-footer-bottom-content {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    /* Ad Blocks */
    .ad-block-large,
    .ad-block,
    .ad-block-small {
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px 0 !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }
    
    .ad-block-large img,
    .ad-block img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Section Titles */
    .section-title,
    .bisnis-strategi-title,
    .keamanan-slider-title,
    .highlight-section-title {
        font-size: 22px !important;
        line-height: 28px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .section-header,
    .bisnis-strategi-header,
    .keamanan-slider-header,
    .highlight-section-header {
        width: 100% !important;
        max-width: 100% !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }
    
    .section-header-line,
    .bisnis-strategi-header-line,
    .keamanan-slider-header-line,
    .highlight-section-line {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    
    /* Ensure all text elements don't overflow */
    .highlight-grid-title,
    .bisnis-featured-title,
    .bisnis-sidebar-title,
    .keamanan-slider-item-title,
    .section-slider-title,
    .section-grid-item h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }
    
    /* Ensure all images are responsive */
    .highlight-grid-image,
    .bisnis-featured-image,
    .bisnis-sidebar-image,
    .keamanan-slider-image,
    .hero-featured-image,
    .section-slider-image,
    .section-grid-item img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    /* View All Links - Ensure they're visible and not cut off */
    .view-all,
    .bisnis-strategi-view-all,
    .keamanan-slider-view-all,
    .highlight-section-view-all {
        font-size: 13px !important;
        padding-right: 0 !important;
        padding-left: 6px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        width: auto !important;
        min-width: 90px !important;
        max-width: none !important;
        z-index: 10 !important;
        position: relative !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
    }
    
    /* Ensure header containers don't cut off view-all links */
    .highlight-section-header,
    .keamanan-slider-header,
    .bisnis-strategi-header,
    .section-header {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        gap: 6px !important;
    }
    
    .highlight-section-line,
    .keamanan-slider-header-line,
    .bisnis-strategi-header-line {
        flex: 1 1 auto !important;
        min-width: 12px !important;
        max-width: none !important;
    }
    
    .highlight-section-title,
    .keamanan-slider-title,
    .bisnis-strategi-title,
    .section-title {
        flex: 0 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 110px) !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        font-size: 18px !important;
        line-height: 22px !important;
        font-weight: 700 !important;
    }
    
    .highlight-section-line,
    .keamanan-slider-header-line,
    .bisnis-strategi-header-line {
        flex: 1 1 auto !important;
        min-width: 20px !important;
        max-width: none !important;
    }
    
    /* Slider wrapper adjustments */
    .keamanan-slider-wrapper,
    .section-slider-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .keamanan-slider-container-inner,
    .section-slider-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
    }
    
    .keamanan-slider-track,
    .section-slider-track {
        display: flex !important;
        gap: 16px !important;
        width: max-content !important;
    }
    
    /* Slider Controls */
    .keamanan-slider-controls,
    .section-slider-controls {
        padding: 12px 0;
    }
    
    .keamanan-slider-btn,
    .section-slider-btn {
        width: 36px;
        height: 36px;
    }
    
    /* Grid Items */
    .highlight-grid-title,
    .section-grid-item h3 {
        font-size: 18px;
        line-height: 22px;
    }
    
    .highlight-grid-excerpt,
    .section-grid-item p {
        font-size: 13px;
        line-height: 18px;
    }
    
    /* Meta Information */
    .highlight-grid-meta,
    .bisnis-featured-meta,
    .bisnis-sidebar-meta {
        font-size: 10px;
    }
    
    /* Footer */
    .nu-footer-bottom {
        padding: 20px 16px;
        text-align: center;
    }
    
    .nu-footer-bottom-content {
        font-size: 12px;
    }
    
    /* Scroll to Top Button */
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}

/* Tablet Styles (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .nu-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    /* Header */
    .header-top-bar {
        display: block;
    }
    
    .header-top-left {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .header-top-link {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 8px 10px;
    }
    
    /* Hero Section */
    .hero-featured-layout {
        flex-direction: column;
    }
    
    .hero-featured-main {
        width: 100%;
    }
    
    .hero-featured-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    /* HIGHLIGHT Section */
    .highlight-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Bisnis & Strategi */
    .bisnis-strategi-layout {
        flex-direction: column;
    }
    
    .bisnis-featured-card {
        flex-direction: row;
        width: 100%;
    }
    
    .bisnis-strategi-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    /* Keamanan Slider */
    .keamanan-slider-layout {
        flex-direction: column;
    }
    
    .keamanan-slider-content {
        width: 100%;
    }
    
    .keamanan-slider-sidebar {
        width: 100%;
    }
    
    /* Teknologi & Inovasi */
    .teknologi-inovasi-section .highlight-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Video Section */
    .section-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .nu-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Section Headers */
    .section-header,
    .bisnis-strategi-header,
    .keamanan-slider-header,
    .highlight-section-header {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .section-title,
    .bisnis-strategi-title,
    .keamanan-slider-title {
        font-size: 24px;
    }
    
    /* Featured Cards */
    .bisnis-featured-title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .bisnis-featured-excerpt {
        font-size: 13px;
    }
}

/* Desktop Styles (>= 1024px) - Already defined, but ensure consistency */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        overflow: visible;
    }
    
    .mobile-nav-backdrop {
        display: none !important;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 480px) {
    /* Extra Small Mobile */
    .nu-container,
    .bisnis-strategi-container,
    .keamanan-slider-container,
    .highlight-grid-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .logo-main-img {
        max-width: 100px;
    }
    
    .hero-featured-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .highlight-grid-title,
    .section-title,
    .bisnis-strategi-title {
        font-size: 20px;
    }
    
    .bisnis-featured-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .highlight-grid-excerpt,
    .bisnis-featured-excerpt {
        font-size: 12px;
        line-height: 16px;
    }
    
    .nu-footer-content {
        gap: 24px;
    }
    
    .nu-footer-section {
        margin-bottom: 20px;
    }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .main-nav {
        width: 320px;
    }
    
    .hero-featured-image {
        height: 200px;
    }
    
    .highlight-grid-image-wrapper {
        height: 180px;
    }
}

/* Print Styles */
@media print {
    .header-top-bar,
    .header-middle-bar,
    .header-bottom-bar,
    .mobile-menu-toggle,
    .scroll-top,
    .ad-block,
    .ad-block-large,
    .keamanan-slider-ad {
        display: none !important;
    }
    
    .main-content {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        overflow-x: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Ensure all sections inside main-content are responsive */
    .main-content > section,
    .main-content > div {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }
    
    .nu-footer {
        page-break-inside: avoid;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 480px) {
    /* Extra Small Mobile */
    .nu-container,
    .bisnis-strategi-container,
    .keamanan-slider-container,
    .highlight-grid-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .logo-main-img {
        max-width: 100px;
    }
    
    .hero-featured-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .highlight-grid-title,
    .section-title,
    .bisnis-strategi-title {
        font-size: 20px;
    }
    
    .bisnis-featured-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .highlight-grid-excerpt,
    .bisnis-featured-excerpt {
        font-size: 12px;
        line-height: 16px;
    }
    
    .nu-footer-content {
        gap: 24px;
    }
    
    .nu-footer-section {
        margin-bottom: 20px;
    }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .main-nav {
        width: 320px;
    }
    
    .hero-featured-image {
        height: 200px;
    }
    
    .highlight-grid-image-wrapper {
        height: 180px;
    }
}

/* Print Styles */
@media print {
    .header-top-bar,
    .header-middle-bar,
    .header-bottom-bar,
    .mobile-menu-toggle,
    .scroll-top,
    .ad-block,
    .ad-block-large,
    .keamanan-slider-ad {
        display: none !important;
    }
    
    .main-content {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        overflow-x: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Ensure all sections inside main-content are responsive */
    .main-content > section,
    .main-content > div {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }
    
    .nu-footer {
        page-break-inside: avoid;
    }
}

/* ============================================
   NEW CATEGORY PAGE LAYOUT (Based on Design)
   ============================================ */

/* Category Page Header */
.category-page-header {
    margin-bottom: 40px;
}

.category-main-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 20px 0;
}

/* Featured Article Hero - New Layout */
.featured-article-hero-new {
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px 0;
    position: relative;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.featured-article-hero-new:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.featured-article-link-new {
    display: flex;
    gap: 24px;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
    background: transparent;
}

.featured-article-image-left {
    flex: 0 0 316px;
    width: 316px;
    height: 211px;
    overflow: hidden;
    background: #D9D9D9;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid #E5E7EB;
}

.featured-article-image-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-article-content-right {
    flex: 1;
    min-width: 0;
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    padding-top: 0;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
}

.featured-badge-sponsored {
    box-sizing: border-box;
    width: 97px;
    height: 24px;
    background: #00B894;
    border: 1px solid #00B894;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.featured-category-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999;
}

.category-dot {
    width: 4px;
    height: 4px;
    background: rgba(153, 153, 153, 0.6);
    border-radius: 50%;
}

.featured-article-title-new {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #0F172A !important;
    margin: 0 0 12px 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.featured-article-excerpt-new {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: #4B5563 !important;
    margin: 0 0 12px 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.featured-article-meta-new {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #999999;
}

.featured-author {
    font-style: italic;
}

.meta-dot {
    width: 4px;
    height: 4px;
    background: rgba(153, 153, 153, 0.6);
    border-radius: 50%;
}


/* Articles Slider Section */
.articles-slider-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 0;
    box-sizing: border-box;
}

.articles-slider-container {
    width: 100%;
    overflow: hidden;
}

.articles-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.3s ease;
}

/* Articles List - New Layout */
.articles-list-section-new {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 0;
    box-sizing: border-box;
}

/* Override untuk category page */
.category-main-content {
    max-width: 1360px !important;
    margin: 0 auto !important;
    padding: 30px var(--nu-container-padding) !important;
    box-sizing: border-box !important;
}

.category-listing-page .content-layout {
    display: flex !important;
    gap: 40px !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    flex-wrap: nowrap !important;
}

.category-listing-page .content-area {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: 896px !important;
    width: 100% !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.category-listing-page .sidebar {
    flex: 0 0 432px !important;
    min-width: 432px !important;
    max-width: 432px !important;
    width: 432px !important;
    padding-left: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

/* Responsive adjustments for category page */
@media (max-width: 1200px) {
    .category-listing-page .content-layout {
        gap: 30px !important;
    }
    
    .category-listing-page .content-area {
        max-width: calc(100% - 462px) !important;
    }
}

@media (max-width: 992px) {
    .category-listing-page .content-layout {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .category-listing-page .content-area {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .category-listing-page .sidebar {
        flex: 1 !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .article-list-item-new {
        padding: 16px;
    }
    
    .featured-article-hero-new {
        padding: 16px;
    }
    
    .article-item-image-new,
    .featured-article-image-left {
        flex: 0 0 150px;
        width: 150px;
        height: 100px;
    }
    
    .article-item-link-new,
    .featured-article-link-new {
        gap: 16px;
    }
}

.article-list-item-new {
    display: block !important;
    margin-bottom: 20px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    background: #F9FAFB;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    visibility: visible !important;
    opacity: 1 !important;
}

.article-list-item-new:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.article-item-link-new {
    display: flex !important;
    gap: 24px;
    text-decoration: none;
    color: inherit;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    align-items: flex-start;
    background: transparent;
    visibility: visible !important;
    opacity: 1 !important;
}

.article-item-image-new {
    flex: 0 0 316px;
    width: 316px;
    height: 211px;
    overflow: hidden;
    background: #D9D9D9;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid #E5E7EB;
}

.article-item-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-item-content-new {
    flex: 1;
    min-width: 0;
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
}

.article-category-new {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999 !important;
    margin: 0 0 8px 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.article-item-title-new {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #0F172A !important;
    margin: 0 0 8px 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.article-item-excerpt-new {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #4B5563 !important;
    margin: 0 0 12px 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.article-item-meta-new {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #6B7280 !important;
    margin-top: auto;
    visibility: visible !important;
    opacity: 1 !important;
}

.article-author-new {
    font-style: italic;
}

.article-separator {
    display: none;
}

/* Sidebar Articles - New Layout */
.sidebar-widget-title-new {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #0F172A;
    margin: 0 0 20px 0;
    padding: 0 5.56%;
}

.sidebar-article-list-new {
    background: #F1F5F9;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-widget-no-padding {
    background: #F1F5F9;
    padding: 0;
    border-radius: 0;
}

.sidebar-article-item-new {
    display: flex;
    gap: 16px;
    padding: 20px 5.56%;
    text-decoration: none;
    color: inherit;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    align-items: flex-start;
}

.sidebar-article-thumb-new {
    flex: 0 0 130px;
    width: 130px;
    height: 104px;
    overflow: hidden;
    background: #D9D9D9;
    border-radius: 8px;
    flex-shrink: 0;
}

.sidebar-article-thumb-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-article-info-new {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
}

.sidebar-article-title-new {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #0F172A;
    margin: 0;
}

.sidebar-article-excerpt-new {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #999999;
    margin: 0;
}

.sidebar-article-meta-new {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #999999;
}

.sidebar-author-new {
    font-style: italic;
}

.sidebar-article-separator {
    width: calc(100% - 11.12%);
    height: 0;
    border: none;
    border-top: 1px solid #CEDCE9;
    margin: 0 5.56%;
    padding: 0;
}

/* Articles Slider Navigation */
.articles-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 30px 0;
    padding: 20px 0;
}

.slider-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #E5E5E5;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #0F172A;
}

.slider-nav-btn:hover:not(.disabled) {
    background: #F1F5F9;
    border-color: #1A73E8;
    color: #1A73E8;
}

.slider-nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-nav-btn svg {
    width: 20px;
    height: 20px;
}

.slider-pagination {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 18px;
    border: 1px solid #E5E5E5;
    background: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    color: #0F172A;
    cursor: pointer;
    transition: all 0.2s;
}

.slider-page-btn:hover {
    background: #F1F5F9;
    border-color: #1A73E8;
}

.slider-page-btn.active {
    background: #1A73E8;
    border-color: #1A73E8;
    color: #FFFFFF;
}

/* Pagination - New Layout */
.pagination-wrapper-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 50px 0;
}

.pagination-btn-new {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.pagination-btn-new:hover {
    background: #f0f0f0;
}

.pagination-btn-new svg {
    width: 20px;
    height: 20px;
}

.pagination-number-new {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #0F172A;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination-number-new:hover {
    background: #f0f0f0;
}

.pagination-number-new.active {
    background: #1A73E8;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 1200px) {
    .featured-article-link-new {
        flex-direction: column;
    }
    
    .featured-article-left {
        flex: 1;
    }
    
    .featured-article-image-right {
        width: 100%;
    }
    
    .featured-article-image-new {
        height: 300px;
    }
    
    .article-item-link-new {
        flex-direction: column;
    }
    
    .article-item-image-new {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .category-main-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .featured-article-title-new {
        font-size: 20px;
        line-height: 24px;
    }
    
    .article-item-title-new {
        font-size: 18px;
        line-height: 22px;
    }
    
    .sidebar-article-item-new {
        flex-direction: column;
    }
    
    .sidebar-article-thumb-new {
        width: 100%;
        height: 200px;
    }
}
