/**
 * Utility layer — small, token-driven helpers. Namespaced .rt-u-*.
 */
.rt-u-center {
  text-align: center;
}
.rt-u-measure {
  max-width: 65ch;
}
.rt-u-measure-center {
  max-width: 65ch;
  margin-inline: auto;
}
.rt-u-mt-0 {
  margin-top: 0;
}
.rt-u-mt-4 {
  margin-top: var(--rt-space-4);
}
.rt-u-mt-6 {
  margin-top: var(--rt-space-6);
}
.rt-u-mt-7 {
  margin-top: var(--rt-space-7);
}
.rt-u-mb-0 {
  margin-bottom: 0;
}
.rt-u-mb-4 {
  margin-bottom: var(--rt-space-4);
}
.rt-u-mb-6 {
  margin-bottom: var(--rt-space-6);
}
.rt-u-gap-2 {
  gap: var(--rt-space-2);
}
.rt-u-flex {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rt-space-4);
  align-items: center;
}
.rt-u-flex-center {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rt-space-4);
  align-items: center;
  justify-content: center;
}
.rt-u-muted {
  color: var(--rt-ink-soft);
}
.rt-u-small {
  font-size: var(--rt-text-sm);
}
.rt-u-xs {
  font-size: var(--rt-text-xs);
}
.rt-u-bold {
  font-weight: var(--rt-weight-bold);
}
.rt-u-heavy {
  font-weight: var(--rt-weight-heavy);
}
.rt-u-navy {
  color: var(--rt-navy);
}
.rt-u-coral {
  color: var(--rt-cta);
}
.rt-u-nowrap {
  white-space: nowrap;
}
.rt-u-hide-mobile {
  display: none;
}
@media (min-width: 860px) {
  .rt-u-hide-mobile {
    display: revert;
  }
  .rt-u-hide-desktop {
    display: none;
  }
}
