/* 06-components/_summary-strip.css — .c-summary-strip: a bordered row of cells, one figure each. */
.c-summary-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(9rem, 100%), 1fr)); background: var(--surface); border: var(--stroke) solid var(--rule); border-radius: var(--radius-md); overflow: hidden; }
.c-summary-strip__cell { padding: var(--space-sm) var(--space-md); border-inline-end: var(--stroke) solid var(--rule); }
.c-summary-strip__cell:last-child { border-inline-end: 0; }
.c-summary-strip__num { font-family: var(--font-mono); font-size: var(--text-xl); font-weight: var(--weight-medium); color: var(--band-ink, var(--ink)); line-height: 1.1; }
.c-summary-strip__lbl { margin-top: 2px; font-size: var(--text-xs); color: var(--ink-faint); }
@media (max-width: 40rem) { .c-summary-strip__cell:nth-child(even) { border-inline-end: 0; } .c-summary-strip__cell { border-bottom: var(--stroke) solid var(--rule); } }
