/* ==============================
   V2 UTILITIES
   ============================== */

/* Text */
.v2-text-primary { color: var(--text-primary); }
.v2-text-secondary { color: var(--text-secondary); }
.v2-text-tertiary { color: var(--text-tertiary); }
.v2-text-green { color: var(--green-500); }
.v2-text-gold { color: var(--gold-400); }

/* Spacing */
.v2-mb-0 { margin-bottom: 0; }
.v2-mb-1 { margin-bottom: 8px; }
.v2-mb-2 { margin-bottom: 16px; }
.v2-mb-3 { margin-bottom: 24px; }
.v2-mb-4 { margin-bottom: 32px; }
.v2-mt-1 { margin-top: 8px; }
.v2-mt-2 { margin-top: 16px; }

/* Display */
.v2-flex { display: flex; }
.v2-flex-col { flex-direction: column; }
.v2-items-center { align-items: center; }
.v2-justify-between { justify-content: space-between; }
.v2-gap-1 { gap: 8px; }
.v2-gap-2 { gap: 16px; }
.v2-gap-3 { gap: 24px; }

/* Text utilities */
.v2-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v2-text-sm { font-size: 0.875rem; }
.v2-text-xs { font-size: 0.75rem; }
.v2-font-bold { font-weight: 700; }
.v2-font-medium { font-weight: 500; }
