/* ═══════════════════════════════════════════════════════════════ */
/*  SAMIZDAT DESIGN SYSTEM — UTILITY CLASSES                       */
/*  Atomic flex / spacing / text / visibility helpers.             */
/*  Extracted from design-system.css; loaded via its own <link>.   */
/* ═══════════════════════════════════════════════════════════════ */

/* Flex */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { display: flex; flex-wrap: wrap; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-end { display: flex; justify-content: flex-end; align-items: center; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

/* Gap */
.gap-xs { gap: var(--ds-space-xs); }
.gap-sm { gap: var(--ds-space-sm); }
.gap-md { gap: var(--ds-space-md); }
.gap-lg { gap: var(--ds-space-lg); }

/* Margin */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--ds-space-md); }
.mt-2 { margin-top: var(--ds-space-lg); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--ds-space-md); }
.mb-2 { margin-bottom: var(--ds-space-lg); }

/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: var(--ds-space-md); }
.p-2 { padding: var(--ds-space-lg); }
.px-1 { padding-left: var(--ds-space-md); padding-right: var(--ds-space-md); }
.py-1 { padding-top: var(--ds-space-md); padding-bottom: var(--ds-space-md); }

/* Text */
.text-quiet { color: var(--text-color-quiet); }
.text-sm { font-size: var(--ds-meta-font-size); line-height: var(--ds-meta-line-height); }
.text-xs { font-size: var(--ds-micro-font-size); line-height: var(--ds-micro-line-height); }
.text-mono { font-family: var(--ds-mono-font-family); }
.text-truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-uppercase { text-transform: var(--ds-eyebrow-text-transform); letter-spacing: var(--ds-eyebrow-letter-spacing); }
.font-bold { font-weight: 600; }
.font-normal { font-weight: 400; }

/* Sizing */
.w-full { width: 100%; }
.min-h-0 { min-height: 0; }

/* Overflow */
.overflow-auto { overflow-y: auto; }
.overflow-hidden { overflow: hidden; }

/* Visibility */
.hidden { display: none; }
.invisible { visibility: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
