/* 06-components/coord-readout — the live coordinate + zoom telemetry strip, ticking
   in a mono corner of the dock footer like an instrument readout. Tabular numerals,
   its own opaque scrim so it holds over bright tiles. On the narrowest phones it
   hides — the canvas and dock take priority. */
.c-coord-readout {
  font-family: var(--font-chrome);
  font-size: var(--text-xs);
  color: var(--brand);
  letter-spacing: var(--tracking-chrome);
  font-variant-numeric: tabular-nums;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: var(--space-2xs) var(--space-xs);
  white-space: nowrap;
  align-self: flex-start;
}
@media (max-width: 24rem) {
  .c-coord-readout { display: none; }
}
