/* ITCSS: utilities */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

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

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

.u-text-muted {
  color: var(--color-muted);
}

.u-text-small {
  font-size: 0.88rem;
}

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

.u-navy {
  color: var(--color-navy);
}

.u-hide-mobile {
  display: none;
}

@media (min-width: 720px) {
  .u-hide-mobile {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .c-btn:active {
    transform: none;
  }
}
