/*
  Spacing utilities can be added to any element to give spacing around it.
  Add to this list as needed.
  Values should align with the spacing variables as defined in global/variables.css

  Default to using bottom margin to separate items.
  Padding should only be set when necessary and should typically be set with block styles
*/

/* WIDTH */

@media (min-width: 600px) {
  .tablet-w-sm {
    width: var(--container-sm);
  }

  .tablet-w-md {
    width: var(--container-md);
  }

  .tablet-w-lg {
    width: var(--container-lg);
  }

  .tablet-w-2xl {
    width: var(--container-2xl);
  }

  .tablet-w-3xl {
    width: var(--container-3xl);
  }
}

@media (min-width: 1000px) {
  .desktop-w-2xl {
    width: var(--container-2xl);
  }
}


/* MARGIN */

.m-auto {
  margin: auto;
}

@media (min-width: 600px) {
  .tablet-m-auto {
    margin: auto;
  }
}

/* Bottom */

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

.mb-xs {
  margin-bottom: var(--space-xs);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mb-2xl {
  margin-bottom: var(--space-2xl);
}

.mb-3xl {
  margin-bottom: var(--space-3xl);
}

.mb-4xl {
  margin-bottom: var(--space-4xl);
}

/* Top */

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mt-2xl {
  margin-top: var(--space-2xl);
}

.mt-3xl {
  margin-top: var(--space-3xl);
}

/* Right */

.mr-0 {
  margin-right: 0;
}

.mr-xs {
  margin-right: var(--space-xs);
}

.mr-sm {
  margin-right: var(--space-sm);
}
