/**
 * @file
 * Reusable utility classes for controlling text weights, sizes and more.
 */

.text-small {
  font-size: var(--smSize);
  line-height: 1.375;
}

.text-large {
  font-size: var(--lgSize);
  font-weight: 300;
  line-height: 1.5;
}

.text-header {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--accentColor);
  letter-spacing: 1.5px;
}

.text-subhead {
  max-width: 500px;
}

.text-normal {
  font-weight: normal;
}

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