/* Utilities: text, spacing, margins, small notes */
.text-muted{ color: var(--muted); }

/* Muted link styling */
.link-muted{
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}
.link-muted:hover{
  color: var(--text);
}
.link-muted:focus-visible{
  outline: 2px solid rgba(99,102,241,0.35);
  outline-offset: 2px;
}

/* Text alignment */
.t-right{ text-align: right; }

/* Whitespace */
.nowrap{ white-space: nowrap; }

/* Stack spacing utilities */
.stack{ display:grid; gap:14px; }
.gap-sm{ gap:8px; }
.gap-md{ gap:14px; }
.gap-lg{ gap:18px; }
.gap-xl{ gap:24px; }

/* Margin utilities */
.mb-sm{ margin-bottom:8px; }
.mb-md{ margin-bottom:14px; }
.mt-sm{ margin-top:8px; }
.mt-md{ margin-top:14px; }
.mt-lg{ margin-top:18px; }

/* Small muted helper text */
.muted-note{ font-size: 13px; }
