/* Small, single-purpose helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.text-small {
  font-size: var(--text-sm);
}

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

.font-semibold {
  font-weight: 650;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.full-width {
  width: 100%;
}

.no-margin {
  margin: 0;
}

.push-right {
  margin-left: auto;
}

[hidden] {
  display: none !important;
}
