/**
 * ja_nexora — Categories INDEX view (com_content view=categories) isolated overlay.
 * Loaded via addCustomTag in html/com_content/categories/default.php (never absorbed
 * by T4 optimize bundle — same pattern as team.css / integrations.css).
 * All rules scoped body:has(.nx-cats-masthead) — id-independent (was body.item-418, a
 * stale build-time id trashed on the 2026-07-01 DB rebuild). .nx-cats-masthead is emitted
 * ONLY by this view, so no shared page is affected.
 *
 * Defects fixed:
 *   ALLCAT1 [DARK-HEX-IN-LIGHT]  .nx-cat-tile-count uses hardcoded color:#6B7196
 *           (dark $text-dim) in _nexora.scss → leaks into LIGHT (should be
 *           #888EA6 = $text-dim light). Fix: replace with var(--color-text-dim).
 */

/* ── ALLCAT1: tile article-count color ───────────────────────────────────────── */
body:has(.nx-cats-masthead) .nx-cat-tile-count {
  color: var(--color-text-dim) !important; /* was #6B7196 hardcoded dark hex */
}
