/*
 * Small reusable layout / typography utilities (Phase 2).
 * Prefer these for new UI; legacy sheets keep existing class names.
 */
.wm-stack {
  display: flex;
  flex-direction: column;
  gap: var(--wm-space-3, 12px);
}

.wm-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--wm-space-2, 8px);
}

.wm-muted {
  color: var(--wm-color-text-muted);
  font-size: 0.92em;
}

.wm-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wm-color-text-muted);
}

.wm-card-surface {
  border-radius: var(--wm-radius-md, 10px);
  border: 1px solid var(--wm-color-border);
  background: var(--wm-color-surface-elevated);
}
