/**
 * Utilities
 * Small single-purpose helper classes built on design tokens.
 * Kept intentionally minimal — this is not a full utility framework,
 * only the handful of helpers the theme's own templates rely on.
 */

.u-hidden {
  display: none !important;
}

@media (max-width: 921px) {
  .u-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 922px) {
  .u-hide-desktop {
    display: none !important;
  }
}

.u-flex {
  display: flex;
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-gap-2 {
  gap: var(--space-2);
}

.u-gap-4 {
  gap: var(--space-4);
}

.u-mt-0 {
  margin-top: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-text-center {
  text-align: center;
}

.u-bg-dark {
  background-color: var(--color-surface-dark);
}

.u-bg-light {
  background-color: var(--color-surface-light);
}

.u-rounded-lg {
  border-radius: var(--radius-lg);
}

.u-shadow-md {
  box-shadow: var(--shadow-md);
}

.u-section {
  padding-block: var(--space-16);
}

@media (min-width: 922px) {
  .u-section {
    padding-block: var(--space-24);
  }
}
