   .containerblog {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
           
        }
        .blog-section, .blog-section * {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    background-color: #fff !important;
    color: #333 !important;
    line-height: 1.6 !important;
}

        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #333;
        }

        /* Top Section - 2 Columns */
        .top-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }

        /* Featured Post (Left) */
        .featured-box {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .featured-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.12);
        }

        .featured-box img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .featured-content {
            padding: 25px;
        }

        .featured-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.4;
            color: #333;
        }

        .featured-excerpt {
            font-size: 1.3rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .post-date {
            
            color: #999;
        }

        .divider {
            height: 1px;
            background: #fb0202 !important;
            margin: 15px 0;
        }

        /* Popular Posts (Right) */
        .popular-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .popular-item {
            display: flex;
            gap: 15px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .popular-item:hover {
            transform: translateX(5px);
            box-shadow: 0 3px 12px rgba(0,0,0,0.12);
        }

        .popular-item img {
            width: 180px;
            height: 102px;
            object-fit: cover;
            border-radius: 5px;
            flex-shrink: 0;
        }

        .popular-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .popular-title {
            
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.4;
            color: #333;
        }

        /* New Posts Grid - 3 Columns */
        .new-posts-section {
            margin-top: 50px;
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .post-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.12);
        }

        .post-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .post-content {
            padding: 20px;
        }

        .post-title {
           
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.5;
            color: #333;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .post-excerpt {
            font-size: 1.3rem;
            color: #666 !important;
            line-height: 1.5 !important;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }

        .pagination button,
        .pagination span {
            min-width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            background: white;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            color: #333;
        }

        .pagination button:hover:not(.active) {
            border-color: #666;
            background: #f5f5f5;
        }

        .pagination .active {
            background: #333;
            color: white;
            border-color: #333;
        }

        .pagination .dots {
            border: none;
            cursor: default;
        }

        .pagination .next {
            font-size: 1.2rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .top-section {
                grid-template-columns: 1fr;
            }

            .posts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .posts-grid {
                grid-template-columns: 1fr;
            }

            .popular-item {
                flex-direction: column;
            }

            .popular-item img {
                width: 100%;
                height: 180px;
            }

            h2 {
                font-size: 1.3rem;
            }
        }