/* ============================================================================
   utilities.css — small single-purpose helpers.
   ========================================================================== */
.hide{display:none !important}
.muted{color:var(--text-3)}
.fadein{animation:fade .2s ease}
@keyframes fade{from{opacity:0}to{opacity:1}}

.row{display:flex;gap:10px;align-items:center}
.row.wrap{flex-wrap:wrap}
.between{justify-content:space-between}
.right{margin-left:auto}
.stack{display:flex;flex-direction:column;gap:10px}

.mt-0{margin-top:0}.mt-1{margin-top:var(--s2)}.mt-2{margin-top:var(--s4)}.mt-3{margin-top:var(--s6)}
.mb-0{margin-bottom:0}.mb-1{margin-bottom:var(--s2)}.mb-2{margin-bottom:var(--s4)}

.text-sm{font-size:12.5px}
.text-serif{font-family:var(--font-serif)}
.w-full{width:100%}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
