// Article.jsx — Verigo Global: article detail page (reads ?id=X from URL)
const { V: AV, MAXW: AMW, FONT: AFT } = window;
const CAT_COLORS = { Strategy:'#4B4FD9', 'CMMC 2.0':'#E8622A', 'SOC 2':'#4B4FD9', HITRUST:'#E8622A', 'ISO 27001':'#4B4FD9', 'Risk Management':'#6B7280', 'NIST CSF':'#6B7280', 'Cross-framework':'#3F1E68' };
const STD_TK = { soc2:'soc2', iso27001:'iso27001', cmmc:'cmmc', hitrust:'hitrust', nist:'nist' };
const ArticlePage = ({ onNav }) => {
const params = new URLSearchParams(window.location.search);
const id = params.get('id') || 'a1';
const article = (window.ARTICLES_FULL || []).find(a => a.id === id);
if (!article) return (
Article not found
{article.excerpt}
{t}
{para}
))}