/* Utilities — masaimarasafari.co.ke */

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

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

.text-accent {
  color: var(--color-accent-strong);
}

.font-display {
  font-family: var(--font-display);
}

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

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

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

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

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

.gap-sm {
  gap: var(--space-sm);
}

.hide-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hide-mobile {
    display: revert;
  }
}

.hide-desktop {
  display: revert;
}

@media (min-width: 640px) {
  .hide-desktop {
    display: none;
  }
}

.no-js .js-only {
  display: none !important;
}

.pad-bottom-sticky {
  padding-bottom: 4.5rem;
}

@media (min-width: 980px) {
  .pad-bottom-sticky {
    padding-bottom: 0;
  }
}
