partial-component.html

 1<!-- This is a partial/component — no DOCTYPE, no <html>, no <head> -->
 2<!-- Page-level checks (flat hierarchy, single font) should NOT run -->
 3<!-- But element-level border checks SHOULD still run -->
 4
 5<div class="card" style="font-family: 'Inter', sans-serif;">
 6  <div style="font-size: 14px; border-left: 4px solid #3b82f6; border-radius: 8px; padding: 1rem; background: white;">
 7    <h3 style="font-size: 16px; font-weight: 600;">Card Title</h3>
 8    <p style="font-size: 15px; color: #6b7280;">Card description with close font sizes.</p>
 9  </div>
10</div>
11<script src="/js/detect-antipatterns-browser.js"></script>