Plain HTML equivalent
Explicit class wiring
This is the CSS-first version of the same screen shape. It works, but the structure is louder because every wrapper is spelled out by hand.
<section class="inc-card">
<div class="inc-card__header">
<h2 class="inc-card__title">Queue summary</h2>
</div>
<div class="inc-card__body">
<table class="inc-table inc-table--sm inc-table--data-table">
<thead>...</thead>
<tbody>...</tbody>
</table>
</div>
</section>