/* Flexbox and grid */
.flex {
  display: flex;
}

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

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

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

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

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

.half-gap {
  gap: calc(var(--gap) / 2);
}

.p {
  padding: var(--padding);
}

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

.relative { position: relative; }

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

/* Text */
.title {
  font-size: 2.4rem;
  font-weight: 800;
  text-wrap: balance;
}

.txt-small {
  font-size: 0.8rem;
}

.txt-medium {
  font-size: 1rem;
}

.txt-large {
  font-size: 1.4rem;
}

.txt-x-large {
  font-size: 1.8rem;
}

.txt-xx-large {
  font-size: 2.4rem;
}

.font-bold {
  font-weight: 800;
}

.text-balance {
  text-wrap: balance;
}

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

.separator {
  margin-block: 1rem;
  border-color: var(--color-border-dark);
}

/* Colorize */
.colorize--white {
  filter: invert(100%);
}