/* Border */
.rounded-full {
  border-radius: 50%;
}

/* Flex */
.flex-row {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

/* Flex/Grid alignments */
.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

/* Gap */
.gap-s {
  gap: var(--size-3);
}

.gap-m {
  gap: var(--size-5);
}

/* Height */
.height-8 {
  height: var(--size-29);
}

/* Margin */
.mx-auto {
  margin-inline: auto;
}

/* Padding */
.p-m {
  padding: var(--size-5);
}

/* Width */
.width-8 {
  width: var(--size-29);
}

/* Prose */
.prose {
  inline-size: 100%;
  max-inline-size: var(--size-34);
}

/* Flow */
.flow > * + * {
  margin-block-start: var(--flow-space, 1em);
}

/* Visually Hidden */
.visually-hidden {
  border-width: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
