        /* Responsive and adapting grid columns */
        .news-grid {
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        }
        /* Limit standard news card stretching on wide screens when few items */
        .news-card {
            max-width: 420px;
            width: 100%;
        }
        
        /* Premium Pagination Styles */
        .news-pagination-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
            width: 100%;
            grid-column: 1 / -1;
        }
        .news-pag-btn {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border, #e5e7eb);
            background: #fff;
            border-radius: 50%;
            color: var(--text-dark, #111827);
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .news-pag-btn:hover:not(:disabled) {
            background: #f3f4f6;
            border-color: #d1d5db;
        }
        .news-pag-btn.active {
            background: var(--primary, #1a1a1a);
            color: #fff;
            border-color: var(--primary, #1a1a1a);
            font-weight: 600;
        }
        .news-pag-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
