/*
   NASIONAL PRATAMA - CUSTOM CSS
   Struktur identik 1:1 dengan Prototype HTML
   SOP: Maputra Digital Nusantara
*/

/* --- 1. GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* --- 2. DESIGN TOKENS --- */
:root {
    --primary: #064e3b;
    --accent: #10b981;
    --dark: #020617;
    --bg-soft: #f8fafc;
    --text-main: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --radius-lg: 32px;
    --radius-md: 16px;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(6, 78, 59, 0.12);
    --nav-bg: rgba(255, 255, 255, 0.98);
    --border: #e2e8f0;
    --shadow-nav: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* --- 3. RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-main);
    line-height: 1.7;
    background: var(--bg-soft);
    overflow-x: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* SOP: Container Default */
.container {
    max-width: 1200px !important;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

/* --- 4. HEADER (100% Prototype) --- */
#global-nav,
#global-nav * {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#global-nav {
    position: sticky;
    top: 0;
    z-index: 99999 !important;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

#global-nav .nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#global-nav .logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    z-index: 10001;
}

#global-nav .logo img {
    display: block;
    height: 50px;
    width: auto;
    max-width: 100%;
    transition: height 0.3s ease;
}

#global-nav .text-accent {
    color: var(--accent);
}

#global-nav .hamburger,
#global-nav .close-btn,
#global-nav .dropdown-toggle {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

#global-nav .hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6px;
    color: var(--text-main);
    z-index: 10002;
}

#global-nav .dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

#global-nav .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99990 !important;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

#global-nav .nav-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

#global-nav .nav-menu-container {
    display: flex;
    align-items: center;
}

#global-nav .close-btn {
    display: none;
}

#global-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#global-nav .nav-menu > li {
    position: relative;
}

#global-nav .nav-menu a,
#global-nav .dropdown-toggle {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    transition: 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
    width: 100%;
}

#global-nav .nav-menu a:hover,
#global-nav .dropdown-toggle:hover,
#global-nav .nav-menu a.is-active,
#global-nav .dropdown-toggle.is-active {
    color: var(--accent);
    background: #f0fdf4;
}

#global-nav .dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-nav);
    padding: 8px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.22s ease;
    z-index: 100000;
}

#global-nav .dropdown:hover .dropdown-content,
#global-nav .dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#global-nav .btn-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 11px 20px !important;
    border-radius: 999px !important;
    margin-left: 4px;
}

@media (max-width: 992px) {
    #global-nav .hamburger {
        display: inline-flex;
    }

    #global-nav .logo img {
        height: 40px;
    }

    #global-nav .nav-menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 290px;
        max-width: 86vw;
        height: 100vh;
        background: #fff;
        z-index: 100000 !important;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.12);
        transform: translateX(-105%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow-y: auto;
        padding: 64px 16px 18px;
        visibility: hidden;
        pointer-events: none;
    }

    #global-nav .nav-menu-container.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    #global-nav .close-btn {
        display: inline-flex;
        position: absolute;
        top: 14px;
        right: 14px;
        padding: 6px;
    }

    #global-nav .nav-menu {
        flex-direction: column;
        align-items: stretch;
    }

    #global-nav .nav-menu a,
    #global-nav .dropdown-toggle {
        justify-content: space-between;
        font-size: 16px;
        padding: 12px 14px;
    }

    #global-nav .dropdown.mobile-open .dropdown-arrow {
        transform: rotate(180deg);
    }

    #global-nav .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: 0;
        padding-left: 14px;
    }

    #global-nav .dropdown.mobile-open > .dropdown-content {
        display: block;
    }

    #global-nav .btn-cta {
        margin: 10px 0 0 0;
        justify-content: center;
    }
}

/* --- 5. FOOTER (100% Prototype) --- */
#custom-footer-v3 {
    background: #064e3b;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding: 80px 0 0 0;
    border-radius: 40px 40px 0 0;
    width: 100%;
    margin-top: 60px;
}

#custom-footer-v3 .f-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

#custom-footer-v3 .f-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

#custom-footer-v3 h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    letter-spacing: 1px;
}

#custom-footer-v3 h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 4px;
    background: #10b981;
    border-radius: 2px;
}

#custom-footer-v3 .f-brand img {
    max-height: 60px;
    margin-bottom: 20px;
    display: block;
}

#custom-footer-v3 .f-brand p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
    margin: 0;
}

#custom-footer-v3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#custom-footer-v3 ul li {
    margin-bottom: 12px;
}

#custom-footer-v3 ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

#custom-footer-v3 ul li a:hover {
    color: #10b981;
    padding-left: 5px;
}

#custom-footer-v3 .f-social-flex {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#custom-footer-v3 .f-social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    transition: 0.3s;
    text-decoration: none;
}

#custom-footer-v3 .f-social-btn svg,
#custom-footer-v3 .f-social-btn i {
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor !important;
    fill: none;
}

#custom-footer-v3 .f-social-btn:hover {
    background: #10b981;
    color: #064e3b !important;
    transform: translateY(-3px);
}

#custom-footer-v3 .f-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

#custom-footer-v3 .f-contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#custom-footer-v3 .f-contact-icon svg,
#custom-footer-v3 .f-contact-icon i {
    width: 16px !important;
    height: 16px !important;
    stroke: currentColor !important;
}

#custom-footer-v3 .f-contact-text {
    font-size: 14px;
    opacity: 0.8;
}

#custom-footer-v3 .f-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.5;
}

@media (max-width: 991px) {
    #custom-footer-v3 .f-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    #custom-footer-v3 .f-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 6. BLOG & ARCHIVE --- */
.page-header {
    background: var(--primary);
    color: var(--white);
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    text-align: center;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: 0px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Kunci mutlak: flex + center */
.post-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 30px;
    margin: 0 auto 60px;
}

/* Card */
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 30% !important;
    flex: 0 0 30% !important;
    max-width: 30% !important;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.news-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.news-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

/* Override warna pink Elementor -> paksa primary */
.news-card h4,
.news-card h2.post-title,
.news-card h2.post-title a {
    font-size: 20px;
    color: var(--primary) !important;
    line-height: 1.4;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 12px;
}

.news-card h2.post-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.4em * 2);
    word-break: break-word;
}

.news-card p,
.post-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.6em * 3);
}

.btn-read-more {
    font-weight: 800;
    font-size: 14px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 0;
    border-top: none;
    transition: var(--transition);
}

.btn-read-more:hover {
    color: var(--accent);
}

.btn-read-more svg,
.btn-read-more i {
    display: inline-block !important;
    transition: transform 0.3s ease;
}

.btn-read-more:hover svg,
.btn-read-more:hover i {
    transform: translateX(5px);
}

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

.pagination .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-main);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.pagination .page-numbers:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.pagination .current {
    background: var(--primary);
    color: var(--white);
}

.pagination .next,
.pagination .prev {
    width: auto;
    padding: 0 20px;
    border-radius: 50px;
    gap: 8px;
}

/* --- 7. SINGLE POST & SIDEBAR --- */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}

.article-header {
    margin-bottom: 35px;
}

.category-tag {
    display: inline-block;
    background: #ecfdf5;
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.article-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-image {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-body {
    font-size: 17px;
    color: var(--text-main);
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 25px;
    text-align: justify;
}

.article-body h2 {
    font-size: 28px;
    color: var(--primary);
    margin: 40px 0 20px;
    font-weight: 800;
}

.article-body blockquote {
    background: #f1f5f9;
    border-left: 5px solid var(--accent);
    padding: 30px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    font-weight: 500;
    margin: 40px 0;
    color: var(--primary);
}

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

.widget {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.recent-posts-list {
    list-style: none;
}

.recent-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.recent-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-item > a {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: block;
    border-radius: 12px;
}

.recent-thumb {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-sm);
}

.recent-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recent-info a {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}

.recent-info a:hover {
    color: var(--accent);
}

.recent-date {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.cta-widget {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-widget h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--white);
}

.cta-widget p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-sidebar {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
}

.btn-sidebar:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ==========================================================================
   8. SOP RESPONSIVE MAPUTRA DIGITAL NUSANTARA (CENTER FIX FLEX + HEADER SOP)
   ========================================================================== */

/* 1. RESET HELLO ELEMENTOR */
.site-main,
.archive,
.blog,
.home,
.page-content,
.elementor,
.elementor-section,
.elementor-container {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* 2. CONTAINER SOP (Boxed 1200px) */
.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

/* 3. PAGE HEADER SOP (Emerald + Bottom Radius) */
.page-header {
    background-color: #064e3b !important; /* Emerald Green */
    color: #ffffff !important;
    text-align: center !important;
    /* Sudut radius 32px bawah kiri & kanan */
    border-radius: 0 0 32px 32px !important;
    width: 100% !important;
}

.page-header h1 {
    font-weight: 800 !important;
    letter-spacing: -1px !important;
    margin-bottom: 15px !important;
}

/* 4. GRID FLEX (CENTER GROUP, LEFT ORPHANS) */
.post-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    /* Agar sisa satu (orphan) tetap di kiri, gunakan flex-start */
    justify-content: flex-start !important; 
    gap: 30px !important;

    /* Trik center agar blok grid tetap di tengah container */
    max-width: calc(1200px - 60px) !important; 
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 5. CARD BASE */
.news-card {
    box-sizing: border-box !important;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    flex-shrink: 0 !important;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(6, 78, 59, 0.12);
}

/* 6. TITLE & EXCERPT (FORCE COLOR OVERRIDE) */
.news-card .post-title,
.news-card h4,
.news-card .post-title a,
.news-card h4 a {
    color: #064e3b !important; /* Paksa ke warna Emerald Dark */
    text-decoration: none !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    margin-bottom: 15px !important;
    
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-height: calc(1.4em * 2) !important;
}

/* Pastikan saat di-hover tidak kembali jadi pink */
.news-card .post-title a:hover,
.news-card h4 a:hover {
    color: #10b981 !important; /* Berubah ke Emerald Light saat hover */
}

.news-card .post-excerpt,
.news-card p {
    color: #64748b !important; /* Slate 500 sesuai SOP */
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-height: calc(1.6em * 3) !important;
}

/* ==========================================================================
   7. MEDIA QUERIES (DESKTOP, TABLET, MOBILE)
   ========================================================================== */

/* --- DESKTOP (Min 1025px) --- */
@media (min-width: 1025px) {
    .news-card {
        flex: 0 0 calc(33.333% - (30px * 2 / 3)) !important;
        min-width: calc(33.333% - (30px * 2 / 3)) !important;
        max-width: calc(33.333% - (30px * 2 / 3)) !important;
    }

    .page-header h1 { font-size: 48px !important; }

    .blog-section,
    .main-content,
    .page-header {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
}

/* --- TABLET (768px - 1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .news-card {
        flex: 0 0 calc(50% - (30px / 2)) !important;
        min-width: calc(50% - (30px / 2)) !important;
        max-width: calc(50% - (30px / 2)) !important;
    }

    .page-header h1 { font-size: 36px !important; }

    .blog-section,
    .main-content,
    .page-header {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

/* --- MOBILE (Max 767px) --- */
@media (max-width: 767px) {
    .news-card {
        flex: 0 0 100% !important; /* Full width inside container */
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .page-header h1 { font-size: 32px !important; }

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .blog-section,
    .main-content,
    .page-header {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    /* Pada mobile, grid dipusatkan */
    .post-grid { justify-content: center !important; }
}