/* Atom: Text */
.atom-text {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-light-gray);
  margin: 0;
}

/* Text Variants */
.atom-text--small {
  font-size: var(--font-size-sm);
}

.atom-text--large {
  font-size: var(--font-size-lg);
}

.atom-text--xl {
  font-size: var(--font-size-xl);
}

.atom-text--big {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-relaxed);
}

/* Text Colors */
.atom-text--white {
  color: var(--color-text-white);
}

.atom-text--gray {
  color: var(--color-text-gray);
}

.atom-text--light-gray {
  color: var(--color-text-light-gray);
}

/* Text Styles */
.atom-text--bold {
  font-weight: var(--font-weight-bold);
}

.atom-text--semibold {
  font-weight: var(--font-weight-semibold);
}

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

/* Pre-title (small uppercase label) */
.atom-pretitle {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-text-gray);
  margin: 0;
}

.atom-pretitle--white {
  color: var(--color-text-white);
}
