/* ============================================================
   COMPONENT · COUNT  (c-count)
   A neutral "holding count" (07.C #9): a calm number + label. NEVER a capacity
   meter — no `/cap` denominator, no caution color, no fill-toward-limit bar, no
   "N left" debt language. Replaces the inventory gauges on Inbox/Next/Waiting/
   Projects. A full inbox lights as a plain, held fact (B1).
   ============================================================ */

.c-count-group {
  flex-wrap: wrap;
  gap: var(--space-5);
}

.c-count {
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-1);
}

/* The number — data face, emphasis text token (theme-stable; no phosphor leak). */
.c-count__value {
  font-family: var(--font-data);
  font-size: var(--fs-xl);
  line-height: 1;
  color: var(--color-text-emphasis);
}

/* The label — engraved chrome (C1): a plaque caption that names the thing. */
.c-count__label {
  font-family: var(--font-plaque);
  font-size: var(--fs-3xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
