/* ============================================================
   COMPONENT · STANDBY  (c-standby)
   A calm "re-syncing / not here anymore" panel (07.C #7). Replaces the
   c-led--alert + c-badge--alert "Offline"/"Unavailable" chrome that dressed
   transient tool errors as alarms. Steady, neutral, never amber/red — a transient
   tool hiccup is the machine's concern, not the user's shortfall.
   ============================================================ */

.c-standby {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5);
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--seam-embossed);
}

.c-standby__led { flex: none; }

/* Warm human content (C1): the machine takes responsibility, in plain words. */
.c-standby__line {
  margin: 0;
  font-size: var(--fs-md);
  color: var(--color-text);
}
