        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .detail-hero .hero-inner {
            max-width: 1240x;
        }



        .site-footer>div {
            max-width: 1240px !important;
        }

        /* ══════════════════════════════════════════════
           Sidebar Category Links Styling
           ══════════════════════════════════════════════ */
        .sidebar a.category-link {
            display: block;
            padding: 8px 12px;
            color: #64748b;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            margin-bottom: 4px;
            font-size: 14px;
            border-radius: 0 8px 8px 0;
        }

        .sidebar a.category-link:hover {
            color: #ea580c;
            background: rgba(234, 88, 12, 0.05);
            border-left-color: rgba(234, 88, 12, 0.5);
            padding-left: 16px;
        }

        .sidebar a.category-link.active {
            color: #ea580c;
            font-weight: 700;
            border-left-color: #ea580c;
            background: rgba(234, 88, 12, 0.08);
            padding-left: 16px;
        }

        /* Main Content */
        main {
            padding: 3rem 0;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        /* Blog Card */
        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .blog-card-image {
            height: 200px;
            width: 100%;
            background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .blog-card-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
        }

        .blog-card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .blog-card-content h2 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .blog-date {
            font-size: 0.9rem;
            color: #999;
            margin-bottom: 0.5rem;
        }

        .blog-excerpt {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.6;
            text-align: justify;
        }

        .read-more {
            display: inline-block;
            color: #f4a261;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .blog-card .read-more {
            margin-top: auto;
            align-self: flex-start;
        }

        .read-more:hover {
            color: #e76f51;
        }

        /* Featured Post */
        .featured-post {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .featured-image {
            background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
            position: relative;
            min-height: 300px;
            height: 100%;
            overflow: hidden;
        }

        .featured-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
        }

        .featured-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-content h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .featured-content p {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .badge {
            display: inline-block;
            background-color: #f4a261;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        /* Sidebar */
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .sidebar h3 {
            margin-bottom: 1rem;
            color: #333;
            border-bottom: 2px solid #f4a261;
            padding-bottom: 0.5rem;
        }

        .sidebar ul {
            list-style: none;
        }

        .sidebar li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .sidebar li:last-child {
            border-bottom: none;
        }

        .sidebar a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .sidebar a:hover {
            color: #f4a261;
            font-weight: 600;
        }



        /* Responsive */
        @media (max-width: 768px) {
            .featured-post {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .featured-image {
                min-height: 250px;
            }

            .blog-card-image {
                height: 200px !important;
            }
        }

        .layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin-top: 2rem;
        }

        @media (max-width: 1024px) {
            .layout {
                grid-template-columns: 1fr;
            }
        }

        /* ══════════════════════════════════════════════
           PAGINATION BAR
           ══════════════════════════════════════════════ */
        .pagination-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            flex-wrap: wrap;
            gap: 16px;
        }

        .pag-info {
            font-size: 14px;
            color: #64748b;
        }

        .pag-info strong {
            color: #0f172a;
            font-weight: 600;
        }

        .pag-buttons {
            display: flex;
            gap: 8px;
        }

        .pag-btn {
            min-width: 36px;
            height: 36px;
            padding: 0 10px;
            border-radius: 8px;
            background: #fff;
            border: 1px solid #e2e8f0;
            font-size: 14px;
            font-weight: 600;
            color: #64748b;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pag-btn:hover:not(:disabled) {
            border-color: #ea580c;
            color: #ea580c;
            background: rgba(234, 88, 12, 0.05);
        }

        .pag-btn.active {
            background: #ea580c;
            border-color: #ea580c;
            color: #fff;
        }

        .pag-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: #f1f5f9;
        }