/* ja_nexora — About page pixel-parity overlay (.pen Page/About i0ulYG)
 * Isolated, addStyleSheet'd from html/com_content/article/default.php when the
 * About ACM stack (`.nx-page-about` / {loadposition about-page}) is detected.
 * Does NOT touch shared scss. Each rule corrects a theme-token leak / wrong-token
 * found vs the .pen during 4-axis design review (2026-06-20). Tokens are
 * theme-aware (--color-text-dim, --color-card-2) so one rule flips both modes.
 */

/* 1) Values icon tile — .pen IconWrap fill $bg-card-2 (#181A33 dark / #EEF1F8 light).
 *    Shared `.acm-features-intro .feature-ico` uses --color-surface-2 (#1A1C36 dark,
 *    wrong) with `!important`. In light surface-2==card-2 so only dark was off. */
.nx-page-about .acm-features-intro .feature-ico {
  background: var(--color-card-2) !important;
}

/* 2) Team role — .pen $text-dim (#888EA6 light / #6B7196 dark). _nexora.scss hardcodes
 *    the dark hex #6B7196 → leaks into light. `body` prefix lifts specificity (0,2,1)
 *    so this wins over the equal-specificity (0,2,0) hardcoded rule regardless of the
 *    T4 optimize bundle's merge order. */
body .nx-page-about .team-role { color: var(--color-text-dim); }

/* 3) Press caption "AS FEATURED IN" — .pen $text-dim; hardcoded #6B7196 → light leak. */
body .nx-page-about .logos-caption { color: var(--color-text-dim); }

/* 4) Press wordmarks — .pen $text-dim op.7; hardcoded #6B7196 → light leak. */
body .nx-page-about .press-word { color: var(--color-text-dim); }
