.text-break-spaces {
  white-space: break-spaces !important;
}

.text-break-all {
  word-break: break-all !important;
}

.text-break-word {
  word-break: break-word !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-stroke {
  -webkit-text-stroke: 1px var(--bs-body-color);
}

.text-stroke-white {
  -webkit-text-stroke: 1px var(--bs-white);
}

.text-stroke-black {
  -webkit-text-stroke: 1px var(--bs-black);
}

.text-box {
  min-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;

  overflow-wrap: break-word;
  word-break: break-word;

  &.text-clamp-1 {
    -webkit-line-clamp: 1;
  }

  &.text-clamp-2 {
    -webkit-line-clamp: 2;
  }

  &.text-clamp-2 {
    -webkit-line-clamp: 2;
  }
}