   /* --- Article list (full width, no sidebar) --- */
        .insights-list {
            display: flex;
            flex-direction: column;
            gap: 35px;
            margin: 40px 0 50px;
        }

        .article-item {
            display: flex;
            gap: 30px;
            background: var(--card-bg);
            backdrop-filter: blur(4px);
            border-radius: 30px;
            padding: 28px;
            border: 1px solid var(--border-soft);
            transition: transform 0.2s, border-color 0.2s;
            align-items: flex-start;
        }
        .article-item:hover {
            transform: translateY(-3px);
            border-color: var(--primary-warm);
            background: rgba(255, 240, 225, 0.9);
        }

        .article-thumb {
            flex-shrink: 0;
            width: 220px;
            height: 150px;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid var(--border-soft);
        }
        .article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .article-item:hover .article-thumb img {
            transform: scale(1.05);
        }

        .article-content {
            flex: 1;
        }

        /* H3 with link – no underline, orange on hover */
        .article-content h3 {
            font-size: 1.7rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-dark);
        }
        .article-content h3 a {
            color: inherit;
            border-bottom: none;
            transition: color 0.2s;
        }
        .article-content h3 a:hover {
            color: var(--primary-warm);
        }

        .article-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 14px;
            font-size: 0.9rem;
            color: var(--text-soft);
        }
        .article-meta i {
            color: var(--primary-warm);
            margin-right: 5px;
        }

        .article-excerpt {
            color: var(--text-soft);
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 0.98rem;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-warm);
            font-weight: 500;
            font-size: 0.95rem;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .read-more:hover {
            border-bottom-color: var(--primary-warm);
        }

        /* --- Pagination (exact as requested) --- */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin: 60px 0 20px;
            flex-wrap: wrap;
        }
        .page-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 10px;
            background: var(--card-bg);
            border: 1px solid var(--border-soft);
            border-radius: 40px;
            color: var(--text-soft);
            font-weight: 500;
            transition: all 0.2s;
            cursor: pointer;
        }
        .page-num i {
            font-size: 0.8rem;
        }
        .page-num:hover {
            background: var(--primary-warm);
            color: white;
            border-color: var(--primary-warm);
        }
        .page-num-current {
            background: var(--primary-warm);
            color: white;
            border-color: var(--primary-warm);
            font-weight: 600;
        }
        .page-num-current:hover {
            background: var(--accent-deep);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .article-item {
                flex-direction: column;
            }
            .article-thumb {
                width: 100%;
                height: 200px;
            }
        }