/* Utilities: typography (token-backed) */

.text-muted { color: var(--pfse-text-muted); }
.text-sm { font-size: 12px; }
.text-xs { font-size: 10px; }
.label-xs, .label-sm { font-size: 11px; color: var(--pfse-text-muted); }
.monospace { font-family: var(--pfse-font-mono); }
.fw-600 { font-weight: 600; }

/* Task 48: nowrap & truncate helpers */
.nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
