    /* Main Styling */
    body {
        
        color: #333;
    }
    
    .blog-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .page-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 5px;
        color: #333;
    }
    
    .page-subtitle {
        text-align: center;
        color: #666;
        margin-bottom: 30px;
    }

    /* Grid Layout */
    .post-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin: 0 auto 40px auto;
        max-width: 1100px;
    }

    .post-card {
        border: 1px solid #eaeaea;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
        background: #fff;
    }
    
    .post-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .post-image {
        height: 180px;
        overflow: hidden;
    }

    .post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    
    .post-card:hover .post-image img {
        transform: scale(1.05);
    }

    .post-content {
        font-family: 'Noto Sans', sans-serif;
        padding: 15px;
        margin-bottom: 25px;;
        height: 120px;
        overflow: hidden;
    }

    .post-content h2 {
        font-family: 'Noto Sans', sans-serif;
        margin-top: 0;
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .post-content h2 a {
        font-family: 'Noto Sans', sans-serif;
        font-size: 15px;
        color: #333;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .post-content h2 a:hover {
        color: #3498db;
    }

    .post-meta {
        font-family: 'Noto Sans', sans-serif;
        color: #777;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .post-meta .author {
        font-family: 'Noto Sans', sans-serif;
        margin-left: 10px;
    }

    /* Removed excerpt and read-more button styles */
    
    /* All News Button */
    .all-news-container {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .all-news-btn {
        display: inline-block;
        background: #333;
        color: white;
        padding: 12px 30px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 1rem;
        transition: background 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .all-news-btn:hover {
        background: #555;
    }

    /* Pagination */
    .pagination {
        margin: 40px 0 20px;
        text-align: center;
    }

    .pagination a, .pagination .current, .pagination .ellipsis {
        display: inline-block;
        padding: 8px 14px;
        margin: 0 3px;
        border: 1px solid #ddd;
        border-radius: 4px;
        text-decoration: none;
        color: #333;
        transition: all 0.3s;
    }
    
    .pagination a:hover {
        background: #f5f5f5;
    }

    .pagination .current {
        background: #3498db;
        color: white;
        border-color: #3498db;
    }
    
    .pagination .ellipsis {
        border: none;
        padding: 8px 5px;
    }
    
    .pagination .page-nav {
        background: #f9f9f9;
    }

    /* No Posts */
    .no-posts {
        text-align: center;
        padding: 40px 0;
        color: #666;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .post-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .page-title {
            font-size: 1.8rem;
        }
        
        .post-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto 30px auto;
        }
        
        .post-image {
            height: 220px;
        }
    }