
        .category-questions {
            display: grid;
            gap: clamp(1.8rem, 4vw, 2.5rem);
            max-width: 1100px;
            margin-inline: auto;
            padding-bottom: clamp(2.5rem, 6vw, 4rem);
            color: #e2e8f0;
        }

        .category-questions__hero {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.25rem;
            padding: clamp(1.75rem, 4vw, 2.5rem);
            border-radius: 32px;
            border: 1px solid rgba(148, 163, 184, 0.2);
            background: rgba(15, 23, 42, 0.8);
            box-shadow: 0 24px 48px rgba(15, 23, 42, 0.35);
        }

        .category-questions__hero h1 {
            margin: 0;
            font-size: clamp(2rem, 5vw, 2.75rem);
            color: #f8fafc;
        }

        .category-questions__hero p {
            margin: 0.65rem 0 0;
            color: rgba(226, 232, 240, 0.8);
        }

        .category-questions__eyebrow {
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.85rem;
            color: rgba(226, 232, 240, 0.6);
        }

        .category-questions__stats {
            display: flex;
            gap: 1rem;
            align-items: stretch;
        }

        .category-questions__stats article {
            min-width: 120px;
            padding: 1rem 1.25rem;
            border-radius: 24px;
            border: 1px solid rgba(148, 163, 184, 0.25);
            background: rgba(15, 23, 42, 0.65);
            text-align: center;
        }

        .category-questions__stats span {
            display: block;
            font-size: 1.8rem;
            font-weight: 700;
            color: #f8fafc;
        }

        .category-questions__stats small {
            color: rgba(226, 232, 240, 0.7);
        }

        .category-questions__grid {
            display: grid;
            gap: 1.5rem;
        }

        .category-question-card {
            padding: clamp(1.5rem, 4vw, 2.2rem);
            border-radius: 26px;
            border: 1px solid rgba(148, 163, 184, 0.2);
            background: rgba(15, 23, 42, 0.72);
            box-shadow: 0 24px 48px rgba(15, 23, 42, 0.35);
            transform: translateY(30px);
            opacity: 0;
            animation: card-fade-in 0.8s ease forwards;
            animation-delay: calc(var(--card-index) * 0.08s);
        }

        .category-question-card__meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: rgba(226, 232, 240, 0.6);
            margin-bottom: 0.75rem;
        }

        .category-question-card h2 {
            margin: 0 0 0.65rem;
            font-size: 1.4rem;
            color: #f8fafc;
        }

        .category-question-card p {
            margin: 0 0 1.25rem;
            color: rgba(226, 232, 240, 0.8);
        }

        .category-question-card__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .category-questions__pagination {
            display: flex;
            justify-content: center;
            padding-top: 0.5rem;
            gap: 0.75rem;
        }

        .category-questions__load-more {
            min-width: 220px;
            justify-content: center;
            gap: 0.4rem;
            position: relative;
        }

        .category-questions__load-more-icon {
            display: inline-flex;
            align-items: center;
        }

        .category-questions__load-more.is-loading {
            pointer-events: none;
            opacity: 0.75;
        }

        .category-questions__load-more.is-loading .category-questions__load-more-icon::after {
            content: '';
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid currentColor;
            border-top-color: transparent;
            display: inline-block;
            animation: spin 0.8s linear infinite;
            margin-left: 0.35rem;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .category-questions__end {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.65rem 1.2rem;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.35);
            color: rgba(226, 232, 240, 0.7);
        }

        .category-questions__end.is-hidden,
        .category-questions__load-more.is-hidden {
            display: none;
        }

        .category-questions__empty {
            display: grid;
            justify-items: center;
            text-align: center;
            gap: 0.75rem;
            padding: 2rem;
            border-radius: 24px;
            border: 1px dashed rgba(148, 163, 184, 0.35);
            color: rgba(226, 232, 240, 0.7);
        }

        .category-questions__empty .bx {
            font-size: 2.5rem;
        }

        @keyframes card-fade-in {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        body.theme-light .category-questions {
            color: #0f172a;
        }

        body.theme-light .category-questions__hero,
        body.theme-light .category-question-card {
            background: rgba(255, 255, 255, 0.96);
            border-color: rgba(203, 213, 225, 0.7);
            color: #0f172a;
            box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
        }

        /* Ensure hero text color adapts by theme */
        body.theme-light .category-questions__hero h1 { color: #0f172a; }
        body.theme-dark .category-questions__hero h1 { color: #f8fafc; }

        body.theme-light .category-questions__hero p,
        body.theme-light .category-question-card p {
            color: #475569;
        }

        body.theme-light .category-questions__eyebrow {
            color: #94a3b8;
        }

        body.theme-light .category-questions__stats article {
            background: rgba(248, 250, 252, 0.95);
            border-color: rgba(203, 213, 225, 0.7);
            color: #0f172a;
            box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
        }

        body.theme-light .category-question-card__meta {
            color: #64748b;
        }

        body.theme-light .category-questions__stats span {
            color: #0f172a;
        }

        body.theme-light .category-questions__stats small {
            color: #475569;
        }

        body.theme-light .category-questions__load-more {
            border-color: rgba(99, 102, 241, 0.3);
        }

        body.theme-light .category-questions__end {
            border-color: rgba(148, 163, 184, 0.5);
            color: #475569;
        }

        @media (max-width: 768px) {
            .category-questions__hero {
                flex-direction: column;
                align-items: stretch;
            }

            .category-questions__stats {
                flex-wrap: wrap;
            }

            .category-question-card__actions {
                flex-direction: column;
                align-items: stretch;
            }
        }
    

        /* Host chip */
        .question-host-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.35);
            background: rgba(15, 23, 42, 0.55);
            color: #e2e8f0;
            text-decoration: none;
            margin: 0.35rem 0 0.5rem;
            font-weight: 600;
            width: fit-content;
        }

        .question-host-chip .bx { font-size: 1.05rem; color: #cbd5f5; }

        .question-host-chip--link:hover {
            border-color: rgba(99, 102, 241, 0.45);
            box-shadow: 0 8px 20px rgba(2, 6, 23, 0.35);
        }

        body.theme-light .question-host-chip {
            background: rgba(248, 250, 252, 0.95);
            color: #0f172a;
            border-color: rgba(203, 213, 225, 0.7);
        }

        body.theme-light .question-host-chip .bx { color: #475569; }

        body.theme-light .question-host-chip--link:hover {
            border-color: rgba(99, 102, 241, 0.35);
            color: #1d4ed8;
        }
