:root {
            --primary: #1a1a1a;
            --accent: #2c6e49;
            --bg-page: #FAF8F5;
            --bg-card: #ffffff;
            --border: #e5e7eb;
            --text-muted: #6b7280;
            --text-dark: #111827;
            --badge-gmd: #f3f4f6;
        }

        body {
            background-color: var(--bg-page);
            font-family: 'Outfit', sans-serif;
            color: var(--text-dark);
            margin: 0;
            padding: 0;
        }



        /* ── MAIN CONTENT ── */
        .news-container {
            width: 90%;
            max-width: 1600px;
            margin: 40px auto 80px;
        }
        
        /* ── FILTER & SEARCH HEADER ── */
        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            background: #fff;
            padding: 16px 24px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .filter-tabs {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 4px;
        }
        
        .filter-tabs::-webkit-scrollbar {
            height: 0px;
        }
        
        .filter-tab {
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text-dark);
            transition: all 0.2s;
            white-space: nowrap;
        }
        
        .filter-tab:hover {
            border-color: #d1d5db;
        }
        
        .filter-tab.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        
        .search-box {
            position: relative;
            width: 320px;
        }
        
        .search-box input {
            width: 100%;
            padding: 12px 16px 12px 40px;
            border-radius: 20px;
            border: 1px solid var(--border);
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            background: #f9fafb;
            transition: all 0.2s;
            outline: none;
        }
        
        .search-box input:focus {
            background: #fff;
            border-color: var(--text-dark);
        }
        
        .search-box i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }

        /* ── GRID LAYOUT ── */
        .news-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 30px;
        }
        
        @media (max-width: 1024px) {
            .news-layout {
                grid-template-columns: 1fr;
            }
        }
        
        /* ── MAIN NEWS AREA ── */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        @media (max-width: 1280px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Highlight Feature News (Takes 2 cols/rows) */
        .news-card.featured {
            grid-column: 1 / span 3;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            padding: 0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        @media (max-width: 1280px) {
            .news-card.featured {
                grid-column: 1 / span 2;
            }
        }
        
        @media (max-width: 900px) {
            .news-card.featured {
                grid-column: 1 / span 1;
                grid-template-columns: 1fr;
            }
        }
        
        .news-card.featured .news-img-wrap {
            height: 100%;
            min-height: 340px;
        }
        
        .news-card.featured .news-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .news-card.featured .news-title {
            font-size: 26px;
            line-height: 1.3;
            margin-bottom: 16px;
        }
        
        .news-card.featured .news-excerpt {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 24px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .featured-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #fef08a;
            color: #854d0e;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        /* Regular News Card */
        .news-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
        }
        
        .news-img-wrap {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .news-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .news-card:hover .news-img-wrap img {
            transform: scale(1.05);
        }
        
        .news-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .news-meta-top {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        
        .category-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        
        .category-name {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .news-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .news-meta-bottom {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: auto;
            padding-top: 16px;
            color: #9ca3af;
            font-size: 13px;
        }
        
        .news-meta-bottom span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .btn-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--text-dark);
            color: #fff;
            padding: 12px 24px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            width: fit-content;
            transition: background 0.2s;
        }
        
        .btn-read-more:hover {
            background: #000;
        }
        
        /* ── SIDEBAR ── */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .sidebar-widget {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            border: 1px solid var(--border);
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }
        
        .widget-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .widget-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .widget-title i {
            color: var(--text-muted);
        }
        
        .btn-view-all {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-decoration: none;
            background: #f3f4f6;
            padding: 4px 10px;
            border-radius: 12px;
        }
        
        /* Latest News List */
        .latest-news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .latest-news-item {
            display: flex;
            gap: 12px;
            text-decoration: none;
            color: inherit;
            group: hover;
        }
        
        .latest-news-img {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .latest-news-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .latest-news-title {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.2s;
        }
        
        .latest-news-item:hover .latest-news-title {
            color: var(--accent);
        }
        
        .latest-news-date {
            font-size: 12px;
            color: var(--text-muted);
        }
        
        /* Tags */
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tag-btn {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .tag-btn:hover {
            background: #f9fafb;
            color: var(--text-dark);
            border-color: #d1d5db;
        }

        /* ── RESPONSIVE MEDIA QUERIES (MOBILE OVERRIDES) ── */
        @media (max-width: 768px) {
            .news-container {
                width: 100% !important;
                padding: 0 16px !important;
                margin: 20px auto 40px !important;
                box-sizing: border-box !important;
            }
            
            .filter-header {
                flex-direction: column !important;
                align-items: stretch !important;
                padding: 16px !important;
                gap: 14px !important;
                margin-bottom: 24px !important;
                border-radius: 16px !important;
            }
            
            .filter-tabs {
                width: 100% !important;
                padding-bottom: 6px !important;
                -webkit-overflow-scrolling: touch;
            }
            
            .filter-tab {
                padding: 8px 16px !important;
                font-size: 13px !important;
                border-radius: 30px !important;
            }
            
            .search-box {
                width: 100% !important;
                max-width: 100% !important;
            }
            
            .search-box input {
                padding: 10px 16px 10px 38px !important;
                font-size: 13px !important;
                border-radius: 30px !important;
            }
            
            .search-box i {
                left: 14px !important;
            }
            
            .news-layout {
                gap: 20px !important;
            }
            
            .news-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
                gap: 16px !important;
            }
            
            .sidebar-widget {
                padding: 16px !important;
                border-radius: 16px !important;
            }
            
            .latest-news-img {
                width: 60px !important;
                height: 60px !important;
                border-radius: 8px !important;
            }
            
            .latest-news-title {
                font-size: 13px !important;
                margin-bottom: 4px !important;
            }
        }

        @media (max-width: 576px) {
            /* Transform news cards into horizontal list rows */
            .news-card {
                flex-direction: row !important;
                align-items: center !important;
                padding: 12px !important;
                gap: 14px !important;
                border-radius: 16px !important;
                max-width: 100% !important;
                background: #fff !important;
                box-shadow: 0 2px 10px rgba(0,0,0,0.01) !important;
            }
            
            .news-img-wrap {
                width: 90px !important;
                height: 90px !important;
                flex-shrink: 0 !important;
                border-radius: 10px !important;
                overflow: hidden !important;
            }
            
            .news-img-wrap img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
            }
            
            .news-content {
                padding: 0 !important;
                display: flex !important;
                flex-direction: column !important;
                justify-content: center !important;
                flex-grow: 1 !important;
                min-width: 0 !important; /* Prevents text overflow */
            }
            
            .news-meta-top {
                gap: 6px !important;
                margin-bottom: 6px !important;
            }
            
            .category-dot {
                width: 6px !important;
                height: 6px !important;
            }
            
            .category-name {
                font-size: 10px !important;
                letter-spacing: 0.2px !important;
            }
            
            .news-title {
                font-size: 13.5px !important;
                line-height: 1.35 !important;
                margin-bottom: 6px !important;
                font-weight: 600 !important;
                display: -webkit-box !important;
                -webkit-line-clamp: 2 !important;
                -webkit-box-orient: vertical !important;
                overflow: hidden !important;
            }
            
            .news-meta-bottom {
                margin-top: 0 !important;
                padding-top: 0 !important;
                border-top: none !important;
                gap: 10px !important;
                font-size: 11px !important;
            }
            
            .news-meta-bottom span i {
                font-size: 10px !important;
            }
        }