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

.flex {
  display: flex;
}

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

.justify-between {
  justify-content: space-between;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: var(--space-xl) 0;
}

.hidden {
  display: none !important;
}

.stretch {
  width: 100%;
}

.align-end {
  align-items: flex-end;
}
