/* ================================================
MAJALAH EKSIS — Premium Digital Magazine
================================================ */

:root {
    --blue-900: #1F56DC;
    --blue-700: #122a55;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-100: #dfe7f2;
    --blue-50: #f8fafc;

    --gold-400: #ffcc00;
    --gold-500: #eab308;

    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-100: #f1f5f9;
    --white: #ffffff;

    --f: 'Plus Jakarta Sans', sans-serif;
    --f-heading: 'Plus Jakarta Sans', sans-serif;

    /* STANDARDIZED RADIUS SYSTEM */
    --r-sm: 10px;
    --r-md: 20px;
    --r-lg: 28px;
    --r-xl: 40px;

    /* STANDARDIZED SHADOW SYSTEM */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.06);
    --shadow-card: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 40px 80px -20px rgba(15, 23, 42, 0.12);

    
/* 10/10 UX: Shimmer Skeleton Animation */
@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

.px-skeleton {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 104px; 
    display: inline-block;
    position: relative;
    animation: shimmer 1.5s linear infinite forwards;
    border-radius: 8px;
}

/* STANDARDIZED TRANSITIONS */
    --trans-ease: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --trans-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --section-spacing: 6rem;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Prevent horizontal scroll globally */
}

body {
    font-family: var(--f);
    background: #f1f5f9;
    /* Richer Slate Grey for better card separation */
    color: var(--slate-900);
    line-height: 1.6;
    padding-bottom: 100px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll globally */
    width: 100%;
    max-width: 100vw;
    /* Absolute hard cap */
}

body.lock-scroll {
    overflow: hidden !important;
    touch-action: none;
}

.detail-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
    z-index: 10;
}

a {
    text-decoration: none;
    color: inherit;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none !important;
    box-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--f-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

/* ================================================
TOP INFO BAR (seperti SMP Enterprise jam & kontak)
================================================ */
.info-bar {
    background: linear-gradient(90deg, #0a0f1e 0%, #1e3c9a 50%, #0a0f1e 100%);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 5%;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    overflow: hidden;
    border-bottom: 2px solid #FBBF24;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.info-bar::before,
.info-bar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    pointer-events: none;
    z-index: 0;
}

.info-bar::before {
    background: radial-gradient(ellipse at 30% 50%, rgba(30, 60, 154, 0.4) 0%, transparent 60%);
    animation: wave-float 8s ease-in-out infinite alternate;
}

.info-bar::after {
    background: radial-gradient(ellipse at 70% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
    animation: wave-float 10s ease-in-out infinite alternate-reverse;
}

.info-bar > * {
    position: relative;
    z-index: 1;
}

@keyframes wave-float {
    0% {
        transform: translateX(-5%) translateY(-2%) rotate(-1deg);
    }
    50% {
        transform: translateX(3%) translateY(2%) rotate(0.5deg);
    }
    100% {
        transform: translateX(-3%) translateY(-1%) rotate(-0.5deg);
    }
}

/* UNIVERSAL CONTAINERS */
.container-premium {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section-title-premium {
    font-family: var(--f-heading);
    font-size: 1.85rem;
    /* Reduced from 2.25rem */
    font-weight: 800;
    color: var(--blue-950);
    margin: 0;
    letter-spacing: -0.5px;
}

.section-header-info p {
    color: var(--slate-500);
    font-size: 1rem;
    margin: 4px 0 0;
}

.info-bar .ticker {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-scroll 75s linear infinite;
}

.ticker-track span {
    padding-right: 3.5rem;
    font-weight: 500;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.info-bar .badge {
    background: #ffcc00;
    color: #122a55 !important;
    padding: 4px 12px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
    font-weight: 800;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-bar .badge::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40px;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    animation: luxury-shimmer 4s infinite;
}

@keyframes luxury-shimmer {
    0% {
        left: -60%;
    }

    20% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

/* ================================================
NAVBAR (Floating Glass Navigation — 2025 Modern)
================================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px; /* Fixed height for consistency */
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.nav-brand-new {
    display: flex;
    align-items: center;
    height: 72px; /* Exact same as navbar */
    padding: 0 4rem 0 2rem;
    background: #1e3c9a;
    border-radius: 0 0 50px 0;
    margin-left: -2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 10px 0 30px rgba(30, 60, 154, 0.15);
    position: relative;
    z-index: 10;
}

.nav-brand-new img {
    height: 48px; 
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-brand-new:hover {
    transform: scale(1.03);
}


.nav-links {
    display: flex;
    gap: 0.2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-600);
    background: rgba(0, 0, 0, 0.05);
}

/* Dropdown Menu Styling — Glass Effect */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 240px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 0.5rem;
    z-index: 300;
}

/* Invisible bridge so mouse doesn't lose hover */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    color: var(--slate-700) !important;
    padding: 0.7rem 1rem !important;
    font-size: 0.83rem !important;
    font-weight: 600 !important;
    border-radius: 10px;
}

.dropdown-content a:hover {
    background: var(--blue-50) !important;
    color: var(--blue-600) !important;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-search { display:none; }

.btn-search:hover {
    border-color: rgba(15, 23, 42, 0.3);
    background: rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

.btn-nav-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6; /* Premium Blue */
    border: 1px solid #2563eb;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--f);
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.btn-nav-primary:hover {
    background: #2563eb;
    border-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}


/* SMART HIDE ON SEARCH FOCUS - COMPATIBLE VERSION (10/10 UX) */
.search-nav-container:focus-within ~ .btn-nav-primary .nav-btn-text,
.search-nav-container:focus-within ~ .nav-user-badge .nav-user-info,
.search-nav-container:focus-within ~ .nav-user-badge .nav-btn-text {
    display: none !important;
}

.search-nav-container:focus-within ~ .btn-nav-primary,
.search-nav-container:focus-within ~ .nav-user-badge {
    padding: 0.5rem !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    justify-content: center !important;
    border-radius: 50% !important;
    overflow: hidden !important;
}

.btn-premium-solid {
    background: var(--blue-600);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 99px;
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--trans-spring);
    box-shadow: 0 10px 20px rgba(31, 86, 220, 0.2);
}

.btn-premium-solid:hover {
    background: var(--blue-700);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(31, 86, 220, 0.3);
    color: var(--white);
}

/* ================================================
HERO: SLIDER BESAR + KARTU ARTIKEL KANAN
(Replika layout SMP Enterprise hero)
================================================ */
.px-grid-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.px-hero-main {
    flex: 0 0 60% !important;
    /* Force 60% width */
    min-width: 0 !important;
    height: 100% !important;
    overflow: hidden !important;
}

.px-hero-side-grid {
    flex: 1 !important;
    /* Take remaining 40% */
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 1rem !important;
    height: 100% !important;
}

.px-hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    /* Fill the grid cell */
    min-width: 0 !important;
    /* Force allow shrinking */
}

@media (max-width: 1024px) {
    .px-hero-main {
        flex: 1 1 auto !important;
        height: 400px !important;
    }

    .px-hero-side-grid {
        flex: 1 1 auto !important;
        height: auto !important;
        gap: 1rem !important;
    }
}



@media (max-width: 576px) {
    .px-hero-side-grid {
        grid-template-columns: 1fr;
    }

    .px-hero-card-large {
        height: 300px;
    }
}

.px-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(18, 42, 85, 0.4);
}

.px-hc-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.px-hc-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.px-hc-meta {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.px-hc-date-box {
/* Hide date box on small hero cards */
.px-hero-card-small .px-hc-date-box { display: none !important; }
.px-hero-card-small .px-hc-cat { font-size: 0.65rem !important; padding: 4px 10px !important; }

    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 14px;
    color: white;
    min-width: 55px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.px-hc-day {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

.px-hc-month {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold-400);
}

.px-hc-year {
    font-size: 0.55rem;
    opacity: 0.8;
    font-weight: 700;
}



/* ==========================================================================
2. TRENDING RIBBON — Horizontal Scroll + Ranking
========================================================================== */
.section-trending-ribbon {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, var(--slate-100) 0%, #ffffff 100%);
    overflow: hidden;
}

.trending-ribbon-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0 2rem;
}

.trending-ribbon-track::-webkit-scrollbar {
    display: none;
}

.trending-ribbon-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--slate-100);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.trending-ribbon-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 20px 0 0 20px;
    z-index: 5;
}

.trending-ribbon-card:nth-child(1)::before {
    background: var(--accent-coral);
}

.trending-ribbon-card:nth-child(2)::before {
    background: var(--accent-violet);
}

.trending-ribbon-card:nth-child(3)::before {
    background: var(--accent-mint);
}

.trending-ribbon-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue-200);
}

.trending-rank {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    font-family: var(--f-heading);
    font-weight: 900;
    font-size: 0.9rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.trending-ribbon-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.trending-ribbon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}


/* ================================================
PHLOX MAIN CONTENT (Grid + Sidebar)
================================================ */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    padding: 0 5% 4rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .post-list {
        grid-template-columns: 1fr;
    }
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .sidebar {
        grid-template-columns: 1fr;
    }
}

.widget {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-100);
    margin-bottom: 2.5rem;
    transition: var(--trans-ease);
}

.widget-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--blue-100);
}

.widget-head .dot {
    width: 10px;
    height: 10px;
    background: var(--blue-600);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Kepala Sekolah Widget */
.kepsek-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.kepsek-widget img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #ffcc00;
    /* Luxury Gold Frame */
    padding: 4px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.2);
}

.kepsek-widget h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 0.25rem;
}

.kepsek-widget .jabatan {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.kepsek-widget blockquote {
    font-family: var(--f);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--slate-700);
    line-height: 1.6;
    margin: 0;
    position: relative;
    padding: 0 1rem;
}

.kepsek-widget blockquote::before {
    content: '"';
    font-size: 2rem;
    color: #ffcc00;
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    opacity: 0.5;
}

/* Rubrik Widget */
.rubrik-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--slate-100);
    cursor: pointer;
    transition: all 0.2s;
}

.rubrik-item:last-child {
    border-bottom: none;
}

.rubrik-item:hover {
    padding-left: 0.5rem;
}

.rubrik-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rubrik-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--slate-900);
}

.rubrik-item:hover strong {
    color: var(--blue-700);
}

.rubrik-item span {
    font-size: 0.78rem;
    color: var(--slate-500);
}

/* Agenda Widget */
.agenda-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--slate-100);
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-date {
    background: var(--blue-50);
    color: var(--blue-900);
    font-family: var(--f);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: var(--r-sm);
    text-align: center;
    flex-shrink: 0;
    min-width: 48px;
    line-height: 1.3;
}

.agenda-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--slate-800);
    line-height: 1.35;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    color: var(--white);
    border-color: transparent;
}

.cta-widget .widget-head {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.cta-widget .widget-head .dot {
    background: var(--gold-400);
}

.cta-widget p {
    font-size: 0.88rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cta-widget a {
    display: block;
    background: var(--gold-400);
    color: var(--slate-900);
    border-radius: var(--r-md);
    padding: 0.75rem;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.cta-widget a:hover {
    transform: scale(1.03);
}

/* ================================================
FULL POST LIST (di bawah news-grid)
================================================ */
/* Duplicate Post List Styles Removed (Merged to 868 area) */


.post-row {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1rem;
    border-radius: var(--r-md);
    border: 1px solid var(--slate-100);
    text-decoration: none;
    transition: var(--trans-ease);
    margin-bottom: 1.25rem;
}

.post-row:hover {
    transform: translateY(-5px);
    border-color: var(--blue-200);
    box-shadow: var(--shadow-card);
}

.post-row-img {
    width: 240px;
    height: 150px;
    flex-shrink: 0;
    border-radius: var(--r-sm);
    overflow: hidden;
}

.post-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-row-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-row-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}

.post-row-meta .sep {
    color: var(--slate-300);
}

.post-row-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.post-row:hover .post-row-title {
    color: var(--blue-700);
}

.post-row-excerpt {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.post-row-footer, .px-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-100);
}

.px-author-meta-premium {
    display: flex;
    align-items: center;
    gap: 10px;
}

.px-avatar-xs {
    width: 28px;
    height: 28px;
    background: var(--blue-700);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
}

.author-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate-700);
}

.px-date-meta-premium {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--slate-400);
    font-size: 0.8rem;
    font-weight: 600;
}

.px-icon-xs {
    width: 14px;
    height: 14px;
}

.post-row-footer .read-link {
    color: var(--blue-600);
    font-weight: 700;
}

.post-row:hover .read-link {
    color: var(--blue-900);
}

/* ================================================================
PHLOX HOT STRIP (Horizontal Scrolling News)
================================================================ */
.px-hot-strip-wrapper {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--slate-100);
    margin-bottom: 2.5rem;
}

.px-hot-strip-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.px-hot-item {
    width: 300px;
    min-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.px-hot-item:hover {
    transform: translateY(-3px);
}

.px-hot-img {
    width: 90px;
    height: 90px;
    border-radius: var(--r-md);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.px-hot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.px-hot-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.px-hot-cat {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.px-hot-text h4 {
    font-family: var(--f);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--slate-800);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.px-hot-item:hover .px-hot-text h4 {
    color: var(--gold-600);
}


/* ================================================================
PHLOX MAIN CONTENT & OVERLAPPING CARDS
================================================================ */
.px-main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 5%;
}

.px-post-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.px-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.px-card-img-wrap {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    /* Big smooth corners */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    position: relative;
    display: block;
}

.px-card-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.px-card:hover .px-card-img-wrap::after {
    opacity: 1;
}

.px-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.px-card:hover .px-card-img-wrap img {
    transform: scale(1.05);
}

/* The Phlox Overlap Effect */
.px-card-content {
    background: rgba(255, 255, 255, 0.45);
    /* Clearer Glassmorphism */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    width: 90%;
    max-width: 700px;
    margin: -80px auto 0;
    position: relative;
    z-index: 10;
    padding: 2.5rem;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-card);
    transition: var(--trans-ease);
}

.px-card:hover .px-card-content {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.px-card-cat {
    position: absolute;
    top: -12px;
    /* Overlaps the top edge of the white box */
    left: 2rem;
    background: var(--gold-500);
    color: var(--slate-900);
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.px-card-title {
    font-family: var(--f-heading);
    font-size: 1.65rem;
    font-weight: 800;
    /* Extra bold for contrast */
    line-height: 1.4;
    margin-bottom: 1.25rem;
}

.px-card-title a {
    color: var(--slate-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.px-card-title a:hover {
    color: var(--blue-600);
}

.px-card-excerpt {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.px-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--slate-100);
    padding-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
}

.px-card-readmore {
    color: var(--slate-900);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.px-card-readmore:hover {
    color: var(--gold-600);
}


/* ================================================================
PHLOX MINIMALIST SIDEBAR
================================================================ */
.px-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.px-widget-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--slate-900);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.px-widget-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--slate-200);
    margin-left: 1rem;
}

.px-flash-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.px-flash-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--slate-100);
}

.px-flash-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.px-flash-bullet {
    width: 6px;
    height: 6px;
    background: var(--blue-500);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.px-flash-list a {
    color: var(--slate-700);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.px-flash-list a:hover {
    color: var(--blue-600);
}

/* ================================================================
PHLOX SECTION TITLES
================================================================ */
.px-section-container {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    padding: 0 5%;
}

.px-section-title {
    font-family: var(--f-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--slate-900);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.px-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--blue-600);
    border-radius: 2px;
}

/* ================================================================
PHLOX TOP CATEGORIES (Duotone Grid)
================================================================ */
.px-cat-grid-phlox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
    position: relative;
}

.px-cat-grid-phlox::before {
    content: 'PILIH RUBRIK UNTUK MENJELAJAH';
    position: absolute;
    top: -35px;
    right: 0;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--slate-400);
    letter-spacing: 2px;
}

.px-cat-card {
    position: relative;
    height: 190px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #000;
    cursor: pointer;
}

.px-cat-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.px-cat-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cat-overlay);
    opacity: 0.6;
    mix-blend-mode: multiply;
    /* Creates the duotone effect */
    transition: opacity 0.4s ease;
}

.px-cat-card-name {
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.px-cat-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    z-index: 5;
}

.px-cat-card i {
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: transform 0.4s ease;
}


.px-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.px-cat-card:hover img {
    transform: scale(1.1);
}

.px-cat-card:hover .px-cat-card-overlay {
    opacity: 0.8;
}

@media (max-width: 1100px) {
    .px-cat-grid-phlox {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .px-cat-grid-phlox {
        grid-template-columns: 1fr;
    }
}

/* Agenda Item */
/* Deprecated px-agenda-item Removed */


.px-ag-day {
    display: block;
    font-size: 1.4rem;
    font-family: var(--f-heading);
    font-weight: 800;
    color: var(--blue-600);
}

.px-ag-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--slate-500);
}

.px-agenda-info h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 4px;
    line-height: 1.3;
}

.px-agenda-info span {
    font-size: 0.8rem;
    color: var(--slate-500);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .px-main-layout {
        grid-template-columns: 1fr;
    }

    .px-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .px-card-img-wrap {
        height: 400px;
    }

    .px-hero-card-large {
        height: 450px;
    }

    .px-hero-side-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .px-hero-card-small {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .px-sidebar {
        grid-template-columns: 1fr;
    }

    .px-card-img-wrap {
        height: 300px;
    }

    .px-card-content {
        margin-top: -50px;
        padding: 2rem;
        width: 95%;
    }

    .px-hero-side-grid {
        grid-template-columns: 1fr;
    }

    .px-hero-card-large {
        height: 400px;
    }

    .px-hero-card-large .px-hc-title {
        font-size: 1.5rem;
    }
}

.px-hc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 5;
    transition: all 0.4s ease;
}

.px-hero-card:hover .px-hc-content {
    padding-bottom: 2.5rem;
}

.px-hc-cat {
    color: var(--gold-400) !important;
    background: rgba(0, 0, 0, 0.55) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 14px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-size: 0.65rem !important;
    display: inline-flex !important;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.px-hero-card-small .px-hc-cat {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.px-hero-card-small:hover .px-hc-cat {
    opacity: 1;
    transform: translateY(0);
}

.px-hc-title {
    font-family: var(--f-heading);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.25;
    color: white;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.px-hero-card:hover .px-hc-title {
    color: var(--gold-400) !important;
}

.px-hero-card-small .px-hc-title {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
}

/* Restored Core Hero Styles */
/* Redundant Core Hero Styles Removed (Merged to 5014 area) */


/* Global Glass Category Badge */
.px-badge-glass {
    color: var(--gold-400) !important;
    background: rgba(0, 0, 0, 0.65) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 14px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-size: 0.65rem !important;
    display: inline-flex !important;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

/* Adjustments for specific locations */
.post-row-meta .px-badge-glass,
.popular-info .px-badge-glass {
    padding: 3px 10px !important;
    font-size: 0.6rem !important;
    border-radius: 6px !important;
    margin-bottom: 6px !important;
    letter-spacing: 1px !important;
}

.px-gal-overlay .px-badge-glass {
    margin-bottom: 10px !important;
    background: rgba(0, 0, 0, 0.5) !important;
}





/* ==========================================================================
3. STATS COUNTER — Immersive Dark Glassmorphism
========================================================================== */
.section-stats-counter {
    position: relative;
    padding: 3.5rem 5%;
    background: linear-gradient(135deg, #0a192f 0%, #1E3C9A 50%, #0F172A 100%);
    overflow: hidden;
}

.stats-mesh-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: meshFloat 20s ease-in-out infinite alternate;
}

@keyframes meshFloat {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.05) translate(-10px, 5px);
    }

    100% {
        transform: scale(1) translate(5px, -5px);
    }
}

.stats-inner {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-family: var(--f-heading);
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@media (max-width: 768px) {
    .stats-inner {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    }
}


/* ==========================================================================
5. QUOTE 2025 — Enhanced Immersive with Mesh Orbs
========================================================================== */
.section-quote-2025 {
    position: relative;
    padding: 5rem 5%;
    background: linear-gradient(135deg, #0a192f 0%, #1E3C9A 60%, #0F172A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quote-mesh-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.quote-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    animation: orbFloat1 15s ease-in-out infinite alternate;
}

.quote-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    bottom: -80px;
    left: 10%;
    animation: orbFloat2 18s ease-in-out infinite alternate;
}

.quote-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    top: 20%;
    left: -50px;
    animation: orbFloat3 12s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, 20px) scale(1.1);
    }
}

@keyframes orbFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, -15px) scale(0.9);
    }
}

@keyframes orbFloat3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(15px, 25px) scale(1.15);
    }
}

.quote-icon-deco {
    font-size: 3rem;
    color: var(--gold-400);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Reuse existing quote slider styles but update section class references */
.section-quote-2025 .quote-slider-viewport {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.section-quote-2025 .quote-glass-container {
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 2rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.section-quote-2025 .quote-slides {
    position: relative;
    width: 100%;
    min-height: 100px;
}

.section-quote-2025 .quote-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-quote-2025 .quote-slide.active {
    opacity: 1;
    visibility: visible;
}

.section-quote-2025 .quote-text {
    font-family: var(--f-heading);
    font-size: 1.25rem;
    color: white;
    line-height: 1.6;
    font-weight: 600;
    margin: 0;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-quote-2025 .quote-author {
    color: var(--gold-400);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 1.25rem;
    display: block;
}

.section-quote-2025 .quote-nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}


/* ==========================================================================
6. RUBRIK TABS — Interactive Tab-Based Showcase
========================================================================== */
.section-rubrik-tabs {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid var(--slate-100);
}

.rubrik-tab-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.rubrik-tab-bar::-webkit-scrollbar {
    display: none;
}

.rubrik-tab {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-family: var(--f-heading);
    font-size: 0.88rem;
    font-weight: 700;
    border: 2px solid var(--slate-200);
    background: transparent;
    color: var(--slate-600);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
}

.rubrik-tab:hover {
    border-color: var(--blue-300);
    color: var(--blue-700);
    background: var(--blue-50);
}

.rubrik-tab.active {
    background: var(--blue-600);
    color: white;
    border-color: var(--blue-600);
    box-shadow: 0 8px 20px -5px rgba(37, 99, 235, 0.3);
}

.rubrik-panel {
    display: none;
    animation: fadePanel 0.4s ease;
}

.rubrik-panel.active {
    display: block;
}

@keyframes fadePanel {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rubrik-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    min-height: 380px;
}

.rubrik-featured-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: 380px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-card);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rubrik-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.rubrik-featured-card:hover img {
    transform: scale(1.08);
}

.rubrik-featured-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 75%);
}

.rubrik-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 5;
}

.rubrik-featured-content h3 {
    color: white;
    font-family: var(--f-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0.75rem 0 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rubrik-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.rubrik-featured-card.empty-card {
    background: linear-gradient(135deg, var(--slate-50), var(--slate-100));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    font-weight: 600;
}

.rubrik-side-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rubrik-side-item {
    display: flex;
    gap: 1rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 16px;
    padding: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-items: center;
}

.rubrik-side-item:hover {
    background: var(--blue-50);
    border-color: var(--blue-200);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.rubrik-side-img {
    width: 100px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.rubrik-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rubrik-side-info {
    flex: 1;
    min-width: 0;
}

.rubrik-side-info h4 {
    font-family: var(--f-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.4;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rubrik-side-item:hover h4 {
    color: var(--blue-700);
}

@media (max-width: 768px) {
    .rubrik-showcase {
        grid-template-columns: 1fr;
    }

    .rubrik-featured-card {
        min-height: 250px;
    }
}


/* ==========================================================================
7. MULTIMEDIA DARK — Immersive Section
========================================================================== */
.section-multimedia-dark {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.section-multimedia-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(241, 245, 249, 0.1), transparent);
    pointer-events: none;
}

.multimedia-dark-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.multimedia-grid-dark {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.multimedia-grid-dark .gallery-card {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .multimedia-grid-dark {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
9. REDAKSI 2025 — Gradient Background
========================================================================== */
.section-redaksi-2025 {
    background: linear-gradient(135deg, #0F172A 0%, #1E3C9A 50%, #172554 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.section-redaksi-2025::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    filter: blur(40px);
}

.member-card-2025 {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    min-width: 280px;
    transition: all 0.3s ease;
}

.member-card-2025:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.section-redaksi-2025 .member-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: var(--slate-800);
}

.section-redaksi-2025 .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-redaksi-2025 .redaksi-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

.section-redaksi-2025 .redaksi-pagination .swiper-pagination-bullet-active {
    background: var(--gold-400);
}

.section-redaksi-2025 .redaksi-swiper {
    padding: 1rem 0 3rem !important;
}

.section-redaksi-2025 .member-slide {
    display: flex;
    justify-content: center;
    width: auto;
}


/* ==========================================================================
PREMIUM TIERED FOOTER
========================================================================== */
/* Hybrid Legacy Footer Skin - Full Width */
.footer-hybrid {
    background: #0a1128;
    /* Deep Midnight */
    color: white;
    padding: 6rem 5% 2rem;
    border-top: 5px solid var(--gold-400);
    width: 100%;
}

.footer-grid-hybrid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    max-width: none;
    /* Full Width requested */
    margin: 0;
}

.footer-brand-side h2 {
    font-family: var(--f-heading);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.footer-brand-side p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 380px;
}

.footer-nav-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-400);
}

.footer-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-nav-links a:hover {
    color: var(--gold-400);
    transform: translateX(8px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact-icon {
    color: var(--gold-400);
    flex-shrink: 0;
}

.footer-tier-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-social-cluster {
    display: flex;
    gap: 1rem;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn:hover {
    background: var(--blue-600);
    transform: translateY(-5px);
    border-color: var(--blue-400);
}

@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer-tiered {
        padding-bottom: 120px;
    }

    /* Clearance for mobile fixed navigation */
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-tier-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ================================================
MOBILE BOTTOM NAV (App style)
================================================ */
.nav-bottom {
    position: fixed;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 450px;
    height: 72px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 0.5rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Safe Area Support */
    margin-bottom: env(safe-area-inset-bottom);
}

/* Floating effect for better mobile UX */
@supports (padding: max(0px)) {
    .nav-bottom {
        bottom: max(1.2rem, calc(0.2rem + env(safe-area-inset-bottom)));
        margin-bottom: 0;
    }
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--slate-500);
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    height: 100%;
    position: relative;
}

.nav-item span {
    font-size: 0.65rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-item .icon {
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.nav-item.active {
    color: var(--blue-900);
}

.nav-item.active .icon {
    transform: translateY(-2px);
    color: var(--blue-900);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    width: 4px;
    height: 4px;
    background: var(--blue-900);
    border-radius: 50%;
}

.nav-item:hover .icon {
    color: var(--blue-600);
    transform: translateY(-2px);
}

.center-icon {
    background: var(--blue-900);
    color: white !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
    box-shadow: 0 8px 15px rgba(31, 86, 220, 0.3);
    border: 4px solid var(--white);
    transition: all 0.4s var(--trans-spring);
}

/* ================================================
PREMIUM MOBILE MENU OVERLAY
================================================ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(25px);

    z-index: 2000;
    display: none;
    flex-direction: column;
    padding: 2rem 1.5rem 8rem;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    display: flex;
    opacity: 1;
}

.menu-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.menu-overlay-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.btn-close-overlay {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.menu-group {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
}

.menu-group-full {
    grid-column: span 2;
}

.menu-group-title {
    color: var(--gold-400);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-items-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.menu-items-list a {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.menu-items-list a:hover {
    color: var(--gold-400);
    transform: translateX(5px);
}

.menu-items-list a i {
    opacity: 0.6;
}

/* Center Menu Button Special Style */
.center-menu-icon {
    background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
    box-shadow: 0 8px 25px rgba(31, 86, 220, 0.4);
    border: 4px solid var(--white);
    transition: all 0.4s var(--trans-spring);
}

.nav-item.active .center-menu-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(31, 86, 220, 0.5);
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-group-full {
        grid-column: span 1;
    }
}

.banner-cta {
    background: linear-gradient(135deg, #1e40af 0%, #1e1b4b 100%);
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(30, 58, 138, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.banner-cta h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    line-height: 1.6;
}

.banner-cta::after {
    content: '✍️';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 14rem;
    opacity: 0.12;
    pointer-events: none;
}

.banner-cta .btn {
    background: #fbbf24;
    color: #000;
    border-radius: 16px;
    padding: 1.5rem 3rem;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px -5px rgba(251, 191, 36, 0.4);
    z-index: 2;
}

.banner-cta .btn:hover {
    background: #fff;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 30px -10px rgba(251, 191, 36, 0.6);
}

.banner-cta .btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 0px #B45309;
}

/* ================================================
INTERACTION BAR (Reactions & Likes)
================================================ */
.interaction-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    margin: 2.5rem 0;
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.reaction-group {
    display: flex;
    align-items: center;
    background: var(--slate-50);
    padding: 6px;
    border-radius: 50px;
    gap: 4px;
    border: 1px solid var(--slate-100);
}

.btn-react {
    background: transparent;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--slate-600);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-react:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-react.active[data-type="like"] {
    color: #ef4444;
    background: #fee2e2;
}

.btn-react.active[data-type="fire"] {
    color: #f59e0b;
    background: #fef3c7;
}

.btn-react.active[data-type="funny"] {
    color: #8b5cf6;
    background: #ede9fe;
}

.btn-react i {
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-react:active i {
    transform: scale(1.5);
}

.react-count {
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 20px;
}

.btn-bookmark-round {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--trans-ease);
    color: var(--slate-400);
}

.btn-bookmark-round.active {
    background: var(--blue-900);
    color: var(--gold-400);
    border-color: var(--blue-900);
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.2);
}

.btn-bookmark-round:hover {
    transform: rotate(15deg) scale(1.1);
}

.cat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5% 5rem;
    position: relative;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Featured Hero Card for Category */
.featured-cat-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 31, 63, 0.12);
    border: 1px solid var(--slate-100);
    transition: var(--trans-ease);
}

.featured-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 60px -15px rgba(0, 31, 63, 0.2);
}

.featured-cat-img {
    height: 420px;
    overflow: hidden;
}

.featured-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-cat-card:hover .featured-cat-img img {
    transform: scale(1.08);
}

.featured-cat-body {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.featured-cat-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue-600);
    margin-bottom: 1.5rem;
}

.featured-cat-title {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 900;
    color: var(--blue-950);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.featured-cat-excerpt {
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* Regular Grid Card */
.premium-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--slate-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 31, 63, 0.15);
    border-color: var(--blue-200);
}

.premium-card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.premium-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.premium-card:hover .premium-card-img img {
    transform: scale(1.1);
}

.premium-card-glass-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.premium-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.premium-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue-900);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.premium-card-excerpt {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.premium-card-footer {
    padding-top: 1.25rem;
    border-top: 1px solid var(--slate-50);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate-400);
}

@media(max-width: 1024px) {
    .featured-cat-card {
        grid-template-columns: 1fr;
    }

    .featured-cat-img {
        height: 280px;
    }

    .featured-cat-body {
        padding: 2.5rem;
    }
}

.detail-hero {
    background:
        radial-gradient(circle at 80% 50%, rgba(30, 60, 154, 0.6) 0%, transparent 60%),
        radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0F1B4C 0%, #1E3C9A 100%);
    padding: 8rem 5% 6rem;
    color: var(--white);
    text-align: center;
    border-bottom: 5px solid var(--gold-400);
    position: relative;
    overflow: hidden;
}

.detail-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.detail-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    max-width: 1000px;
    margin: 0 auto 2rem;
    letter-spacing: -1.5px;
    color: var(--white);
    opacity: 0.95;
}

.detail-hero .breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    /* Replaced opacity with higher clarity */
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 5;
}

.detail-hero .breadcrumbs a {
    color: var(--white);
    transition: var(--trans-ease);
}

.detail-hero .breadcrumbs a:hover {
    color: var(--gold-400);
    opacity: 1;
}

.detail-hero .breadcrumbs i {
    font-size: 0.7rem;
    margin-top: 2px;
}

.detail-main-wrap {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 3.5rem;
    margin-top: -3rem;
    /* Overlap with hero */
    position: relative;
    z-index: 10;
}

.detail-body {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.detail-featured-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-card);
}

.detail-meta-bar {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 0;
    margin-bottom: 2.5rem;
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-500);
}

.detail-meta-bar i {
    color: var(--blue-600);
    width: 18px;
}

.detail-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--slate-800);
}

.detail-content p {
    margin-bottom: 2rem;
}

.detail-content .dateline {
    font-weight: 900;
    color: var(--blue-900);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

/* Sidebar Refinement for Detail */
.detail-sidebar .widget {
    margin-bottom: 2.5rem;
}

/* Media queries moved to consolidated section at end of file */

/* ================================================
RESPONSIVE
================================================ */
/* Media queries moved to consolidated section at end of file */

/* ================================================
ENTRANCE ANIMATIONS
================================================ */
/* ================================================
ICON FIX & GLOBAL REFINEMENTS
================================================ */
[data-lucide] {
    vertical-align: middle;
    stroke-width: 2.5px;
    /* Thicker for better definition */
}

.nav-item [data-lucide] {
    stroke-width: 1.5px;
    width: 24px;
    height: 24px;
}

.widget-head [data-lucide] {
    stroke-width: 2px;
}

/* REFINED CARDS */
.card-sm,
.post-row,
.widget {
    border-color: rgba(0, 0, 0, 0.03);
}

/* ANTI-AI TOUCH: Custom text underline */
.read-link {
    position: relative;
    padding-bottom: 2px;
}

.read-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 2px;
    background: var(--blue-500);
    transition: var(--trans-ease);
}

.post-row:hover .read-link::after {
    width: 100%;
}

/* Legacy Footer Removed (Consolidated to Hybrid Footer at 5352) */


/* ==========================================================================
ANTI-SPAM UTILITIES
========================================================================== */
.v-trap-container {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    z-index: -1000 !important;
}


/* ==========================================================================
KATA MUTIARA / QUOTE SECTION (Premium Glassmorphism Slider)
========================================================================== */
.section-quote-premium {
    position: relative;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--blue-900) 0%, #0a192f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-quote-premium::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.section-quote-premium::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.quote-slider-viewport {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.quote-glass-container {
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 1.5rem 3rem;
    /* Compact padding */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
    height: 220px !important;
    /* Increased for better spacing */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.quote-slides {
    position: relative;
    width: 100%;
    height: 100px !important;
    /* Increased height */
}

.quote-slide {
    position: absolute;
    /* FIXED POSITION: STOPS SHIFTING */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-slide.active {
    opacity: 1;
    visibility: visible;
}

.quote-text {
    font-family: var(--f-heading);
    font-size: 1.15rem;
    /* Slimmer text */
    color: white;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.quote-author {
    color: var(--gold-400);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 1.25rem;
    /* Increased margin */
    display: block;
}

.quote-nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    /* Increased margin */
}



.q-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--trans-ease);
    border: none;
}

.q-dot.active {
    background: var(--gold-400);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

@media(max-width: 768px) {
    .quote-glass-container {
        padding: 3rem 2rem;
    }

    .quote-text {
        font-size: 1.35rem;
    }
}


/* ==========================================================================
AGENDA WIDGET
========================================================================== */
.agenda-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Duplicate Agenda Styles Removed (Merged to 1030 area) */


.agenda-date .day {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue-600);
    line-height: 1;
}

.agenda-date .month {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-500);
    text-transform: uppercase;
}

.agenda-info {
    flex-grow: 1;
}

.agenda-info h6 {
    margin: 0 0 4px;
    font-size: 0.9rem;
    color: var(--slate-900);
    line-height: 1.3;
}

.agenda-info p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--slate-500);
}


/* ==========================================================================
TOPIC TAGS
========================================================================== */
.topic-tag {
    display: inline-block;
    background: var(--slate-100);
    color: var(--slate-700);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--trans-spring);
    border: 1px solid var(--slate-100);
}

.topic-tag:hover {
    background: var(--blue-600);
    color: white;
    border-color: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* ==========================================================================
POLISH & UTILITIES (Fase 4 Optimization)
========================================================================== */
.u-flex-center {
    display: flex;
    align-items: center;
    gap: 8px;
}

.u-text-gold {
    color: var(--gold-400);
}

.u-text-muted {
    color: var(--slate-400);
    font-size: 0.8rem;
}

.u-text-muted-premium {
    color: var(--slate-500) !important;
    line-height: 1.6;
}

.u-contrast-check {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-brand-sub {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.card-meta-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    align-items: center;
}

.empty-placeholder {
    padding: 3rem 0;
    text-align: center;
    color: var(--slate-400);
    font-style: italic;
    background: #f8faff;
    border-radius: 16px;
    border: 1px dashed var(--slate-200);
}

.share-bar {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.share-links span {
    font-weight: 800;
    color: var(--blue-900);
}

.share-links a {
    font-size: 1.2rem;
    transition: var(--trans-ease);
}

.share-links a:hover {
    transform: translateY(-2px);
}

.comments-section-wrap {
    margin-top: 3rem;
}

.comments-widget {
    padding: 2.5rem;
}

.widget-head-line {
    border-bottom: 2px solid var(--gold-400);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
CONTACT PAGE COMPONENTS
========================================================================== */
.contact-main-wrap {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-100);
}

.contact-card h3 {
    color: var(--blue-950);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-card p {
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-operation-hour {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: var(--blue-950);
    border-radius: 16px;
    color: var(--white);
}

.contact-operation-hour .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.contact-operation-hour .time {
    font-weight: 700;
    font-size: 1rem;
}

.map-card {
    background: var(--blue-900);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.map-overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: grayscale(1);
}

.map-content {
    position: relative;
    z-index: 2;
}

.map-content h3 {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.map-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* ==========================================================================
ENHANCED SEARCH COMPONENTS
========================================================================== */
.search-hero {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-950) 100%);
    padding: 8rem 5% 6rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.search-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.626 10.5H5.374C2.406 10.5 0 12.906 0 15.874v28.252C0 47.094 2.406 49.5 5.374 49.5h49.252c2.968 0 5.374-2.406 5.374-5.374V15.874c0-2.968-2.406-5.374-5.374-5.374zM5.374 12.374h49.252c1.934 0 3.5 1.566 3.5 3.5v1.606L30 31.78l-28.126-14.3v-1.606c0-1.934 1.566-3.5 3.5-3.5zm49.252 35.252H5.374c-1.934 0-3.5-1.566-3.5-3.5V19.16l27.18 13.82c.294.15.61.226.946.226s.652-.076.946-.226l27.18-13.82v24.966c0 1.934-1.566 3.5-3.5 3.5z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.search-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.search-hero p {
    font-size: 1.25rem;
    color: var(--blue-100);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.search-input-wrap {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.premium-search-form {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: var(--trans-spring);
}

.premium-search-form:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-400);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.premium-search-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    padding: 0 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    outline: none;
}

.premium-search-form input::placeholder {
    color: rgba(15, 23, 42, 0.4);
}

.btn-pill-gold {
    background: var(--gold-400);
    color: var(--blue-950);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--trans-spring);
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.2);
}

.btn-pill-gold:hover {
    background: var(--white);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
MOBILE & RESPONSIVE REFINEMENTS (Consolidated)
========================================================================== */

/* A. Desktop & Tablets (Min 769px) */
@media (min-width: 769px) {

    /* Desktop-only overrides if needed */
    .nav-bottom {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    .nav-links {
        display: flex;
    }
}

/* B. Medium Screens & Large Tablets (Max 1200px) */
@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .rubric-4col-grid {
        gap: 1.5rem;
    }
}

/* C. Tablets (Max 1024px) */
@media (max-width: 1024px) {
    .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px; /* Fixed height for consistency */
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-panel {
        height: auto;
        flex-direction: row;
    }

    .hero-side-card {
        height: 220px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .card-lg {
        height: 380px;
    }

    .detail-hero h1 {
        font-size: 2.8rem;
    }

    .detail-main-wrap {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .detail-body {
        padding: 2.5rem;
    }

    .rubric-4col-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* D. Mobile Smartphones (Max 768px) */
@media (max-width: 768px) {
    .info-bar {
        gap: 1rem;
        padding: 0.5rem 4%;
    }

    .info-bar .links {
        display: none;
    }

    .info-bar .ticker-track span {
        padding-right: 1.5rem;
    }

    .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px; /* Fixed height for consistency */
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

    .nav-brand-new {
    display: flex;
    align-items: center;
    height: 72px; /* Exact same as navbar */
    padding: 0 4rem 0 2rem;
    background: #1e3c9a;
    border-radius: 0 0 50px 0;
    margin-left: -2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 10px 0 30px rgba(30, 60, 154, 0.15);
    position: relative;
    z-index: 10;
}

    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 8px;
        width: 100%;
        justify-content: space-between;
        margin-top: 0.4rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 0.5rem;
    }

    .btn-search { display:none; }

    .btn-search span {
        display: none;
    }

    .btn-nav-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6; /* Premium Blue */
    border: 1px solid #2563eb;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--f);
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

    .hero-panel {
        flex-direction: column;
    }

    .hero-side-card {
        height: 180px;
    }

    .hero-main-card {
        height: 420px;
    }

    .hero-main-card .content {
        padding: 1.25rem;
    }

    .hero-title-lg {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .section-wrap {
        padding: 3rem 4%;
    }

    .section-title-premium {
        font-size: 1.4rem !important;
    }

    .post-row {
        flex-direction: column;
    }

    .post-row-img {
        width: 100%;
        height: 200px;
    }

    .search-hero {
        padding: 6rem 4% 4rem;
    }

    .search-hero h1 {
        font-size: 2.2rem;
    }

    .search-hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .premium-search-form {
        padding: 6px;
        border-radius: 20px;
    }

    .premium-search-form input {
        padding: 0 1rem;
        font-size: 1rem;
    }

    .btn-pill-gold {
        padding: 0.8rem 1.5rem;
    }

    .btn-pill-gold span {
        display: none;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-hero {
        padding: 4rem 4% 3rem;
    }

    .detail-hero h1 {
        font-size: 2rem;
    }

    .detail-body {
        padding: 1.5rem;
    }

    .detail-meta-bar {
        flex-direction: column;
        gap: 0.8rem;
    }

    .banner-cta {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        text-align: center;
        gap: 1.5rem;
    }

    .banner-cta h3 {
        font-size: 1.8rem;
    }

    .banner-cta p {
        font-size: 1rem;
    }

    .rubric-4col-grid {
        grid-template-columns: 1fr;
    }

    .contact-main-wrap {
        margin-top: 0;
        margin-bottom: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .map-card {
        min-height: 350px;
        padding: 2rem 1.5rem;
    }
}

/* E. Small Smartphones (Max 480px) */
@media (max-width: 480px) {
    .nav-brand-new {
    display: flex;
    align-items: center;
    height: 72px; /* Exact same as navbar */
    padding: 0 4rem 0 2rem;
    background: #1e3c9a;
    border-radius: 0 0 50px 0;
    margin-left: -2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 10px 0 30px rgba(30, 60, 154, 0.15);
    position: relative;
    z-index: 10;
}

    .search-hero h1 {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    .premium-card-title {
        font-size: 1.1rem !important;
    }
}

/* ==========================================================================
INTERACTIVE EXPANDING SEARCH (Phase 5 Engagement)
========================================================================== */
.search-nav-container {
    display: flex;
    align-items: center;
    background: #eff6ff; /* Very Light Blue */
    border: 1px solid #dbeafe;
    padding: 4px 14px;
    border-radius: 50px;
    transition: all 0.4s ease;
    width: 200px;
}

.search-nav-container:focus-within,
.search-nav-container.active {
    width: 280px; /* Reduced to prevent overlap */
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    /* Subtle white/blue instead of gold */
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.4) !important;
}

.search-nav-input {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #0f172a !important;
    padding: 8px 0 !important;
    width: 100%;
    font-size: 0.85rem;
    font-weight: 600;
}

.search-nav-input::placeholder {
    color: rgba(15, 23, 42, 0.4);
}

.btn-search-nav-submit {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    display: none;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-nav-container:focus-within .btn-search-nav-submit,
.search-nav-container.active .btn-search-nav-submit {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
FOKUS THEME SEARCH RESULTS
========================================================================== */
.search-fokus-header {
    margin-bottom: 3rem;
}

.search-fokus-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--blue-950);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.search-fokus-underline {
    height: 4px;
    width: 50px;
    background: var(--gold-400);
    border-radius: 2px;
}

.search-fokus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.fokus-result-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: var(--trans-spring);
    padding-bottom: 1.5rem;
    border-bottom: 1.5px solid var(--slate-100);
}

.fokus-result-card:hover {
    transform: translateY(-5px);
}

.fokus-img-wrap {
    aspect-ratio: 16/10;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
}

.fokus-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.fokus-result-card:hover .fokus-img-wrap img {
    transform: scale(1.1);
}

.fokus-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.fokus-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--blue-950);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.fokus-result-card:hover .fokus-content h4 {
    color: var(--blue-600);
}

.fokus-excerpt {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fokus-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-400);
}

/* ==========================================================================
PREMIUM RELATED ARTICLES (read.php)
========================================================================== */
.premium-related-section {
    padding: 6rem 5%;
    background: #ffffff;
    border-top: 1px solid var(--slate-100);
}

.premium-related-header {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.premium-related-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blue-950);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
}

.premium-related-header .accent-line {
    height: 4px;
    width: 60px;
    background: var(--gold-400);
    border-radius: 2px;
}

.premium-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.premium-related-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--trans-spring);
    cursor: pointer;
}

.premium-related-card:hover {
    transform: translateY(-8px);
}

.rel-img-box {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.rel-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.premium-related-card:hover .rel-img-box img {
    transform: scale(1.1);
}

.rel-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--blue-700);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.rel-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rel-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--slate-900);
    transition: var(--trans-ease);
}

.premium-related-card:hover .rel-content h4 {
    color: var(--blue-600);
}

.rel-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-400);
}

@media (max-width: 1024px) {
    .premium-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .premium-related-section {
        padding: 4rem 4%;
    }
}

@media (max-width: 768px) {
    .premium-related-grid {
        grid-template-columns: 1fr;
    }

    .rel-img-box {
        aspect-ratio: 16/9;
    }
}

/* ==========================================================================
PREMIUM COMMENTS SECTION (read.php)
========================================================================== */
.premium-comments-wrap {
    margin-top: 5rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(1, 42, 94, 0.05);
    border: 1px solid var(--slate-100);
}

.premium-comment-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: 20px;
    transition: var(--trans-ease);
}

.premium-comment-card:hover {
    background: var(--white);
    border-color: var(--blue-300);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment-info {
    flex: 1;
}

.comment-author {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue-950);
    margin-bottom: 0.25rem;
}

.comment-meta {
    font-size: 0.75rem;
    color: var(--slate-400);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment-text {
    line-height: 1.6;
    color: var(--slate-700);
    font-size: 1rem;
}

.glass-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(234, 204, 0, 0.05), rgba(30, 60, 154, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 2px dashed var(--blue-100);
    color: var(--blue-900);
}

.premium-form-box {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 2px solid var(--slate-50);
}

.premium-input-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.premium-input-style {
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    padding: 1.25rem;
    border-radius: 16px;
    font-family: inherit;
    font-weight: 600;
    color: var(--blue-950);
    transition: var(--trans-ease);
}

.premium-input-style:focus {
    background: var(--white);
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.premium-input-style::placeholder {
    color: var(--slate-400);
    font-weight: 500;
}

.comment-badge-info {
    font-size: 0.75rem;
    color: var(--slate-600);
    font-weight: 700;
    background: var(--slate-100);
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .premium-comments-wrap {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .premium-comment-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .comment-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ================================================
VIDEO MODAL (Premium Player)
================================================ */
.v-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.v-modal.active {
    display: flex;
    opacity: 1;
}

.v-modal-container {
    width: 100%;
    max-width: 1000px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.v-modal.active .v-modal-container {
    transform: scale(1);
}

.v-modal-content {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.v-modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.v-modal-close {
    position: absolute;
    top: -3.5rem;
    right: 0;
    background: var(--gold-400);
    color: var(--slate-900);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 1.5rem;
    transition: var(--trans-spring);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.v-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--white);
}

@media (max-width: 768px) {
    .v-modal {
        padding: 1rem;
    }

    .v-modal-close {
        top: -3rem;
        width: 36px;
        height: 36px;
    }
}

.video-trigger:hover .play-btn {
    transform: scale(1.1);
    background: var(--gold-400);
    color: var(--slate-900);
}

/* ================================================
AUTHOR COMPONENT (Student Pride & Personal Touch)
================================================ */
.author-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-600);
}

.avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c9a 0%, #0f172a 100%);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.avatar-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-lg .author-meta {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-lg .author-name {
    color: rgba(255, 255, 255, 0.9);
}

/* Reading Time Badge */
.read-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate-400);
}

.card-lg .read-time-badge {
    color: rgba(15, 23, 42, 0.4);
}

/* ==========================================================================
2025 REDESIGN — REUSABLE COMPONENTS
========================================================================== */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-desc {
    color: var(--slate-500);
    font-size: 1rem;
    margin: 4px 0 0;
    font-weight: 500;
}


/* ==========================================================================


.trending-ribbon-card:hover .trending-ribbon-img img {
    transform: scale(1.08);
}

.trending-react-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(239, 68, 68, 0.9);
    backdrop-filter: blur(8px);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.trending-ribbon-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.trending-ribbon-cat {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.trending-ribbon-title {
    font-family: var(--f-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.4;
    margin-bottom: auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-ribbon-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-100);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate-500);
}

@media (max-width: 768px) {
    .trending-ribbon-card {
        flex: 0 0 300px;
    }
}


/* ==========================================================================
GLOBAL: btn-theater-read (used in warta section)
========================================================================== */
.btn-theater-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-400);
    color: #0c1a4e;
    /* Darker blue for high contrast on gold */
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px -5px rgba(251, 191, 36, 0.3);
}

.btn-theater-read:hover {
    background: white;
    color: var(--blue-900);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(255, 255, 255, 0.2);
}


/* Specialized Meta Pills (Image Reference) */
.pill-meta-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.meta-pill-cat {
    background: #FBBF24;
    /* Yellow from image */
    color: #1E3A8A;
    /* Dark blue from image */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.2);
}

.meta-pill-time {
    background: rgba(30, 41, 59, 0.6);
    /* Translucent dark slate */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================================
PHLOX LARGE CARDS (Single Column Layout)
================================================ */



.phlox-lc-readmore:hover {
    color: var(--blue-600);
}


/* Modern Meta Chips */
.post-row-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.meta-chip-cat {
    background: #FFFAEB;
    color: #B45309;
    padding: 0.35rem 1.1rem;
    font-weight: 800;
    font-size: 0.72rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #FEF3C7;
}

.meta-chip-time {
    background: var(--slate-50);
    color: var(--slate-600);
    padding: 0.35rem 1.1rem;
    font-weight: 700;
    font-size: 0.72rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--slate-100);
}

.post-row-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-950);
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.post-row:hover .post-row-title {
    color: var(--blue-600);
}

.post-row-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Truncated to 2 lines for neatness */
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .post-row {
        flex-direction: column;
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .post-row-img {
        width: 100%;
        height: 200px;
    }
}

/* Redaksi Slider Polish */
/* Premium Redaksi Cards */
.section-redaksi-modern {
    background: #ffffff;
    padding: 6rem 0;
    border-top: 1px solid var(--slate-100);
    position: relative;
    overflow: hidden;
}

.member-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1rem;
    border-radius: var(--r-md);
    min-width: 320px;
    transition: all 0.5s var(--trans-spring);
    border: 1px solid var(--slate-50);
    box-shadow: var(--shadow-sm);
}

.member-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--blue-100);
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: var(--slate-50);
    flex-shrink: 0;
}

.member-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.member-badge {
    background: var(--gold-400);
    color: var(--blue-950);
    padding: 0.35rem 1rem;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 4px 14px 4px 4px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.member-photo-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--gold-400), #F59E0B);
    flex-shrink: 0;
}

.member-photo {
    width: 100%;
    height: 100%;
    border-radius: 17px;
    overflow: hidden;
    border: 2px solid #0f172a;
}

/* ================================================================
SCROLL ANIMATIONS (Intersection Observer)
================================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* ================================================================
MASTER PLAN: ADDITIONAL SECTIONS
================================================================ */

.px-hot-link {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0.75rem;
    border-radius: 20px;
}

.px-hot-link:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}


.px-hot-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.px-hot-label {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--slate-900);
    letter-spacing: 3px;
    flex-shrink: 0;
}

.px-hot-line {
    height: 2px;
    flex: 1;
    background: var(--slate-100);
    position: relative;
}

.px-hot-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: var(--gold-500);
}

.px-hot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
}

.px-hot-rank {
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--gold-400);
    color: var(--blue-950);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    z-index: 10;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

/* 3. THEATER NEWS */
.px-theater-layout {
    display: flex;
    width: 100%;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    height: 600px;
}

.px-theater-main {
    width: 70%;
    /* Explicit Width */
    position: relative;
    height: 100%;
    background: #f1f5f9;
}

.px-theater-swiper {
    height: 100%;
    width: 100%;
}

.px-theater-slide {
    height: 100%;
    width: 100%;
    position: relative;
}

.px-theater-img-wrap {
    width: 100%;
    height: 500px;
    /* Precise height */
    position: relative;
    overflow: hidden;
    background: #e2e8f0;
}

.px-theater-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.px-theater-rank {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--gold-500);
    color: var(--slate-900);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    z-index: 50;
    border: 3px solid white;
}

.px-theater-content {
    position: absolute;
    bottom: 15px;
    left: 40px;
    right: 40px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.45);
    /* Adjusted for sharp glass */
    backdrop-filter: blur(8px) saturate(160%);
    -webkit-backdrop-filter: blur(8px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 1rem 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.px-theater-cat {
    color: var(--blue-600);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.px-theater-title {
    font-family: var(--f-heading);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    color: #1e293b;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* PREMIUM OUTLINE BUTTON (Unified Style) */
.btn-premium-outline {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white !important;
    border: 2px solid var(--blue-600) !important;
    color: var(--blue-700) !important;
    padding: 10px 28px !important;
    border-radius: 99px !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(31, 86, 220, 0.1);
}

.btn-premium-outline:hover {
    background: var(--blue-600) !important;
    color: white !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(31, 86, 220, 0.25);
}

.btn-premium-outline i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-premium-outline:hover i {
    transform: translateX(4px);
}

.px-theater-btn {
    margin-top: 1.5rem;
}

.px-rubric-more {
    width: 100%;
    margin-top: 1.5rem;
    padding: 14px !important;
}


.px-theater-nav {
    width: 30%;
    background: #f8fafc;
    padding: 1.5rem 1rem;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--slate-100);
}

.px-theater-nav-head {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--slate-400);
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--slate-200);
    padding: 0 0.5rem 0.75rem;
}

.px-theater-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    padding: 0.5rem;
    flex: 1;
}

/* Custom Premium Scrollbar */
.px-theater-nav-list::-webkit-scrollbar {
    width: 4px;
}

.px-theater-nav-list::-webkit-scrollbar-track {
    background: transparent;
}

.px-theater-nav-list::-webkit-scrollbar-thumb {
    background: var(--slate-200);
    border-radius: 10px;
}

.px-theater-nav-list::-webkit-scrollbar-thumb:hover {
    background: var(--slate-300);
}

.px-theater-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.px-theater-nav-item:hover {
    transform: translateX(5px);
    background: #f1f5f9;
}

.px-theater-nav-item.active {
    border-color: var(--blue-600);
    background: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.08);
}

.px-tni-img {
    width: 65px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.px-tni-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.px-tni-text {
    flex: 1;
    min-width: 0;
}

/* min-width: 0 prevents text from pushing width */
.px-tni-cat {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--blue-600);
    text-transform: uppercase;
    margin-bottom: 3px;
    display: block;
    opacity: 0.8;
}

.px-tni-text h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--slate-700);
    line-height: 1.3;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.px-theater-nav-item.active .px-tni-text h4 {
    color: var(--slate-900);
}

/* Showcase Panels */
.px-rubric-showcase-wrapper {
    position: relative;
    min-height: 400px;
}

.px-rubric-panel {
    display: none;
    animation: pxFadeUp 0.6s ease forwards;
}

.px-rubric-panel.active {
    display: block;
}

@keyframes pxFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.px-rubric-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

/* Featured Left */
.px-rf-card {
    display: block;
    position: relative;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.px-rf-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.px-rf-card:hover img {
    transform: scale(1.05);
}

.px-rf-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.px-rf-tag {
    display: inline-block;
    background: var(--gold-500);
    color: var(--slate-900);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.7rem;
    margin-bottom: 1rem;
}

.px-rf-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.px-rf-content p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* List Right */
.px-rubric-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.px-rl-item {
    display: flex;
    gap: 1.25rem;
    background: white;
    padding: 1.25rem;
    border-radius: 20px;
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
}

.px-rl-item:hover {
    transform: translateX(10px);
    border-color: var(--blue-500);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.px-rl-img {
    width: 100px;
    height: 75px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.px-rl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.px-rl-text {
    flex: 1;
    min-width: 0;
}

.px-rl-date {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-600);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.px-rl-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--slate-800);
    line-height: 1.4;
    margin: 0;
}

/* Old px-rubric-more removed */


/* 5. STATS SECTION */
.px-stats-section {
    background: var(--slate-900);
    padding: 3.5rem 0;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.px-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.px-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
}

.px-stat-item {
    text-align: center;
    color: white;
    flex: 1;
}

.px-stat-num {
    display: block;
    font-family: var(--f-heading);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: white;
}

.px-stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--slate-400);
}

.px-stat-sep {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* INFO HUB (Agenda & About) */
.px-info-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.px-info-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--slate-100);
}

.px-info-head i {
    color: var(--blue-600);
    width: 24px;
    height: 24px;
}

.px-info-head h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--slate-800);
    margin: 0;
    letter-spacing: 1px;
}

/* Agenda List */
.px-agenda-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.px-agenda-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: var(--r-md);
    transition: var(--trans-ease);
    border: 1px solid transparent;
}

.px-agenda-item:hover {
    transform: translateX(10px);
    background: var(--blue-50);
    border-color: var(--blue-100);
}

.px-ag-date {}

/* Deprecated Agenda Styles Removed */

.px-about-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
    display: flex;
    gap: 2.5rem;
    align-items: center;
    transition: var(--trans-ease);
}

.px-ac-edition {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.px-ac-edition img {
    width: 100px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.px-ace-text span {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--blue-600);
    letter-spacing: 1px;
}

.px-ace-text h4 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--slate-900);
    margin: 6px 0 12px;
}

.px-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--slate-900);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.px-btn-download:hover {
    background: var(--blue-600);
    transform: translateY(-3px);
}

.px-ac-desc {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin: 0;
}

/* 6. MULTIMEDIA SECTION (Gallery + Video) */
.px-multi-unified-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.px-gal-card,
.px-vid-card {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    height: 220px;
    box-shadow: var(--shadow-md);
    transition: var(--trans-ease);
}

.px-gal-card:hover,
.px-vid-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.px-gal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.px-gal-card:hover img {
    transform: scale(1.1);
}

.px-gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.px-gal-overlay span {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-400);
    margin-bottom: 4px;
}

.px-gal-overlay h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.px-multi-video {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.px-vid-card {
    position: relative;
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.px-vid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.px-vid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.px-vid-card:hover .px-vid-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.px-play-btn {
    width: 60px;
    height: 60px;
    background: var(--blue-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.px-vid-card:hover .px-play-btn {
    transform: scale(1.15);
    box-shadow: 0 0 0 15px rgba(37, 99, 235, 0.3);
}

.px-vid-overlay h5 {
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
    padding: 0 1.5rem;
    line-height: 1.4;
}

/* VIDEO MODAL STYLES */
.px-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.px-video-modal.active {
    display: flex;
}

.px-vm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(15px);
}

.px-vm-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    background: black;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: pxModalIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pxModalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.px-vm-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.px-vm-close:hover {
    background: #ef4444;
    transform: rotate(90deg);
}

.px-vm-frame {
    width: 100%;
    height: 100%;
}

.px-vm-frame iframe {
    width: 100%;
    height: 100%;
}

/* 7. QUOTES SECTION (Dark Immersive) */
.px-quote-section {
    background: #0f172a;
    /* Deep Dark Slate */
    padding: 3rem 0;
    margin: 0;
    /* Tight with previous section */
    position: relative;
    overflow: hidden;
    text-align: center;
}

.px-quote-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.03);
    /* Subtle watermark */
    line-height: 1;
    z-index: 1;
}

.px-quote-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    padding: 0 5%;
}

.px-quote-icon {
    font-size: 2.2rem;
    color: var(--gold-500);
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Fix Overlap: Force slides to stack only when active */
.px-quote-slide {
    opacity: 0 !important;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.px-quote-slide.swiper-slide-active {
    opacity: 1 !important;
    pointer-events: auto;
}

.px-quote-text {
    font-family: var(--f-heading);
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    color: white;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.px-quote-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.px-quote-author::before,
.px-quote-author::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold-500);
    opacity: 0.5;
}

/* RESPONSIVE MASTER PLAN */
@media (max-width: 1024px) {
    .px-multi-grid {
        grid-template-columns: 1fr;
    }

    .px-quote-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .px-multi-gallery {
        grid-template-columns: 1fr;
    }

    .px-quote-text {
        font-size: 1.5rem;
    }
}

/* ================================================================
RESTORED CLASSIC LAYOUT & SIDEBAR STYLES
================================================================ */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    padding: 0 5% 4rem;
    max-width: 1400px;
    margin: 4rem auto 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Redundant Widget Styles Removed (Merged to 898 area) */

border-bottom: 2px solid var(--blue-100);


.kepsek-widget {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: white;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--slate-100);
}

.kepsek-widget img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid var(--blue-100);
    padding: 2px;
    flex-shrink: 0;
}

.kepsek-widget h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.1rem;
    color: var(--blue-950);
}

.kepsek-widget .jabatan {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.kepsek-widget blockquote {
    font-style: italic;
    font-size: 0.75rem;
    color: var(--slate-600);
    line-height: 1.4;
    margin: 0;
}

.rubrik-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--slate-100);
    text-decoration: none;
    transition: all 0.2s;
}

.rubrik-item:last-child {
    border-bottom: none;
}

.rubrik-item:hover {
    padding-left: 0.5rem;
}

.rubrik-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--slate-900);
}

.agenda-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--slate-100);
}

/* Redundant Agenda Date Removed */


/* Duplicate Post List Styles Removed */


.post-row:hover {
    border-color: var(--blue-500);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Duplicate Post Row Img Styles Removed */


.post-row-body {
    padding: 1.25rem 1.25rem 1.25rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Redundant post-row styles removed (Merged to 1170) */


@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .sidebar {
        grid-template-columns: 1fr;
    }

    .post-row {
        flex-direction: column;
    }

    .post-row-img {
        width: 100%;
        height: 200px;
    }

    .post-row-body {
        padding: 1.25rem;
    }
}

/* ================================================
NEW SEMANTIC CLASSES FROM REFACTORING
================================================ */
.px-latest-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.px-latest-icon {
    width: 40px;
    height: 40px;
    background: #ecfdf5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.px-icon-md {
    width: 24px;
    height: 24px;
}

.px-latest-desc {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

.px-meta-bold {
    color: var(--slate-600);
    font-weight: 700;
}

.px-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--slate-600);
}

.px-icon-sm {
    width: 12px;
    height: 12px;
}

.px-footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.px-author-clean {
    margin: 0;
    border: none;
    padding: 0;
}

.px-meta-date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--slate-400);
    font-weight: 700;
}

.px-empty-state {
    text-align: center;
    padding: 3rem;
    color: #64748B;
    border: 2px dashed #E2E8F0;
    border-radius: 16px;
}

.px-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.px-archive-action {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.px-icon-base {
    width: 18px;
    height: 18px;
}

/* Removed Deprecated Button Style */


.px-widget-head-flex {
    display: flex;
    align-items: center;
    gap: 8px;
}

.px-icon-blue {
    width: 18px;
    height: 18px;
    color: var(--blue-600);
}

.px-icon-xs {
    width: 12px;
}

.px-empty-agenda {
    text-align: center;
    padding: 1.5rem;
    color: var(--slate-500);
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--slate-50);
    border-radius: 12px;
    border: 1px dashed var(--slate-200);
}

.px-empty-agenda-icon {
    width: 20px;
    display: block;
    margin: 0 auto 5px;
    opacity: 0.4;
}

.px-icon-lg {
    width: 20px;
    height: 20px;
}

.px-rubric-name {
    color: var(--blue-900);
}

.px-rubric-desc {
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
}

.px-text-gold {
    color: #FBBF24;
}

.sidebar-karya-cta {
    background: linear-gradient(135deg, #1E3C9A 0%, #0F172A 100%);
    padding: 2rem !important;
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    border: none !important;
}

.sidebar-karya-cta::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(251, 191, 36, 0.1);
    filter: blur(40px);
    border-radius: 50%;
}

.sidebar-karya-cta h3 {
    color: white;
    font-family: var(--f-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.sidebar-karya-cta p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.btn-kirim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold-400);
    color: var(--blue-950);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(251, 191, 36, 0.3);
}

.btn-kirim:hover {
    background: white;
    color: var(--blue-900);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(255, 255, 255, 0.2);
}

.px-redaksi-section {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid var(--slate-100);
}

.px-redaksi-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.px-redaksi-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.px-redaksi-line {
    width: 50px;
    height: 3px;
    background: var(--gold-400);
    margin: 0 auto 1.25rem;
    border-radius: 2px;
}

.px-redaksi-desc {
    color: var(--slate-500);
    margin-top: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.px-member-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.4rem;
}

.px-member-badge {
    background: var(--gold-400);
    color: var(--blue-950);
    padding: 0.35rem 1rem;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 4px 14px 4px 4px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.px-points-badge {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gold-200);
    color: var(--gold-700);
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 4px;
}

.px-member-role {
    font-size: 0.85rem;
    color: var(--blue-600);
    font-weight: 700;
    padding-left: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.redaksi-swiper {
    padding: 1rem 0 3rem !important;
}

.member-slide {
    display: flex;
    justify-content: center;
    width: auto;
}

/* Duplicate Member Styles Removed */


.redaksi-pagination .swiper-pagination-bullet-active {
    background: var(--blue-600);
}

/* Spacing Fix */
/* Spacing Fix Consolidated to 6088 */


/* Accessibility & Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--blue-600);
    outline-offset: 2px;
    border-radius: 4px;
}

/* CIRCULAR READING PROGRESS (Bottom Right) */
.scroll-progress-wrapper {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100px) scale(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.scroll-progress-wrapper.is-active {
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.progress-circle {
    transform: rotate(-90deg);
}

.progress-circle-bg {
    stroke: rgba(0, 0, 0, 0.1);
}

.progress-circle-bar {
    stroke: var(--gold-400);
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.scroll-percent {
    position: absolute;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--blue-950);
    background: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1;
}

.back-to-top {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-600);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 2;
}

.scroll-progress-wrapper:hover .scroll-percent {
    opacity: 0;
    transform: scale(0.5);
}

.scroll-progress-wrapper:hover .back-to-top {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .scroll-progress-wrapper {
        bottom: 120px;
        right: 20px;
    }
}


/* GLOBAL SECTION SPACING */
section {
    margin-bottom: var(--section-spacing);
}

/* INTERACTIVE IMAGE HOVER */
.px-hc-bg,
.post-row-img img,
.px-hot-img img,
.px-vid-card img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    filter: brightness(1) contrast(1);
    /* Ensure sharpness */
}

.px-hero-card:hover .px-hc-bg,
.post-row:hover .post-row-img img,
.px-hot-item:hover .px-hot-img img,
.px-vid-card:hover img {
    transform: scale(1.08);
}

/* ================================================
10/10 PREMIUM REFINEMENTS
================================================ */

/* 1. SCROLL REVEAL ANIMATIONS */
/* Redundant Scroll Animations Removed (Merged to 6227 area) */


/* 2. PREMIUM GRADIENT TITLES */
.section-title-premium {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e3c9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* 3. MAGNETIC & SHIMMER BUTTONS */
.btn-archive-explore,
.btn-kirim,
.px-theater-btn {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    overflow: hidden;
}

.btn-archive-explore:hover,
.btn-kirim:hover,
.px-theater-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 30px rgba(31, 86, 220, 0.2);
}

.btn-archive-explore::before,
.btn-kirim::before,
.px-theater-btn::before,
.btn-nav-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-archive-explore:hover::before,
.btn-kirim:hover::before,
.px-theater-btn:hover::before,
.btn-nav-primary:hover::before {
    left: 100%;
}

/* ================================================
FINAL MOBILE RESPONSIVENESS (10/10 FIXES)
================================================ */

@media (max-width: 768px) {

    /* 1. Stats Section Mobile Fix */
    .px-stats-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 10%;
    }

    .px-stat-sep {
        display: none;
        /* Hide vertical lines on mobile */
    }

    .px-stat-num {
        font-size: 2.8rem !important;
    }

    /* 2. Section Titles Mobile */
    .section-title-premium,
    .px-section-title {
        font-size: 1.8rem !important;
        text-align: center;
    }

    .px-latest-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* 3. Theater News Mobile */
    .px-theater-layout {
        flex-direction: column;
    }

    .px-theater-nav {
        display: none;
        /* Hide side nav, let swiper autoplay or use dots */
    }

    .px-theater-content {
        padding: 1.5rem !important;
    }

    .px-theater-title {
        font-size: 1.4rem !important;
    }

    /* 4. Multi Grid (Multimedia) Mobile */
    .px-multi-unified-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* 5. General Layout Fixes */
    .main-layout {
        gap: 3rem;
    }

    .post-row {
        flex-direction: column;
    }

    .post-row-img {
        width: 100% !important;
        height: 200px !important;
    }

    .post-row-body {
        padding: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .px-hc-title {
        font-size: 1.25rem !important;
    }

    .px-multi-gallery {
        grid-template-columns: 1fr !important;
    }
}

/* POPULAR WIDGET (SIDEBAR) */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.popular-item {
    display: flex;
    gap: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.popular-rank {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--slate-200);
    line-height: 1;
    transition: all 0.3s ease;
    font-family: var(--f-heading);
}

.popular-info h6 {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--blue-950);
    margin: 0;
    transition: all 0.3s ease;
}

.popular-cat {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gold-400);
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.popular-item:hover .popular-rank {
    color: var(--blue-600);
    transform: scale(1.1);
}

.popular-item:hover h6 {
    color: var(--blue-600);
}


/* LOAD MORE SPIN ANIMATION */
.px-spin {
    animation: px-spin-anim 1s linear infinite;
}

@keyframes px-spin-anim {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* CTA BANNER PREMIUM (FULL WIDTH) */
.px-cta-banner {
    margin-top: 4rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1e3c9a 0%, #0f172a 100%);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(30, 60, 154, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.px-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.px-cta-banner-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.px-cta-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.px-icon-gold-lg {
    width: 40px;
    height: 40px;
    color: var(--gold-400);
}

.px-cta-text-box {
    flex: 1;
}

.px-cta-text-box h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.px-cta-text-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

.px-cta-btn {
    background: var(--gold-400);
    color: var(--blue-950);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.3);
}

.px-cta-btn:hover {
    transform: translateY(-5px) scale(1.02);
    background: white;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive CTA */
@media (max-width: 992px) {
    .px-cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .px-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .px-cta-banner {
        padding: 2rem 1.5rem;
    }

    .px-cta-text-box h3 {
        font-size: 1.5rem;
    }
}

/* CTA KARYA (MAIN COLUMN) */
.px-karya-cta-main {
    margin-top: 1rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--blue-700) 0%, #0a1831 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 20px 40px rgba(18, 42, 85, 0.2);
}

.px-karya-cta-main::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.px-karya-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.px-karya-text h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: white !important;
}

/* CTA SIDEBAR VERSION */
.px-karya-cta-sidebar {
    background: linear-gradient(135deg, var(--blue-700) 0%, #0a1831 100%);
    padding: 1.75rem;
    border-radius: var(--r-md);
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: var(--trans-ease);
}

.px-karya-cta-sidebar h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
}

.px-karya-cta-sidebar p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.btn-kirim-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold-400);
    color: var(--blue-950) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-kirim-sidebar:hover {
    transform: translateY(-3px);
    background: white;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

.px-karya-cta-sidebar::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}
/* ==========================================================================
   SINGLE HERO BANNER
   ========================================================================== */
.px-single-hero-section {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.px-single-hero-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.px-single-hero-card {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: block;
    overflow: hidden;
}

.px-shc-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.px-shc-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.px-shc-link:hover .px-shc-bg {
    transform: scale(1.05);
}

.px-shc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.1) 100%
    );
    pointer-events: none;
}

.px-shc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 2;
}

.px-shc-cat {
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
}

.px-shc-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    max-width: 900px;
}

.px-shc-meta-bottom {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.px-shc-dot {
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .px-single-hero-card {
        height: 60vh;
        min-height: 400px;
    }
    .px-shc-content {
        padding: 2rem 1.5rem;
        gap: 1rem;
    }
    .px-shc-meta-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .px-shc-dot {
        display: none;
    }
}


.nav-brand-new:hover { 
    transform: scale(1.02); 
    box-shadow: 10px 5px 40px rgba(15, 23, 42, 0.25);
}


/* ============================================================
   HERO STYLE — TIGHT & DOMINANT
   ============================================================ */
.px-grid-hero-section {
    position: relative !important;
    background: linear-gradient(145deg, #020617 0%, #0f172a 35%, #1e3a8a 100%) !important;
    padding: 2.5rem 3% 3rem !important;
    overflow: hidden !important;
}

.px-grid-hero-wrapper {
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    gap: 1.5rem !important;
    height: 520px !important;
    width: 100% !important;
}


/* ============================================================
   DEFINITIVE COLOR FIXES
   ============================================================ */

/* Search Button: Blue */
.btn-search-nav-submit {
    background: #3b82f6 !important;
    color: #ffffff !important;
}

/* Footer Links: Visible on dark background */
.footer-nav-links li a {
    color: rgba(255,255,255,0.65) !important;
}
.footer-nav-links li a:hover {
    color: #fbbf24 !important;
}

/* 10/10 UX: Glassmorphism for Large Hero Title (Warta & Berita Terkini Style) */
.px-hero-main .px-hc-content {
    bottom: 1.8rem !important; /* Raised to user preference */
    left: 2rem !important;
    right: 2rem !important;
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(8px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(8px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 22px !important;
    padding: 1.25rem 2rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.px-hero-main .px-hc-title {
    color: #1e293b !important;
    text-shadow: none !important;
    margin: 0 !important;
    font-family: var(--f-heading) !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.px-hero-main .px-hc-link:hover .px-hc-content {
    background: rgba(255, 255, 255, 0.65) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2) !important;
}

.px-hero-main .px-hc-link:hover .px-hc-title {
    color: #1e293b !important;
}

