/* ============================================
   Text Utilities - Specifys.ai
   ============================================
   Utility classes for text properties
   Used to replace inline styles like style="text-align: center;"
*/
/* Text alignment */
.text-center {
  text-align: center;
}

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

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

/* Text decoration */
.no-underline {
  text-decoration: none;
}

.underline {
  text-decoration: underline;
}

/* Text transform */
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

/* Font weight */
.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

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

/* Text color utilities */
.text-muted {
  color: #666;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--text-secondary);
}

/* CTA container utilities */
.cta-centered {
  text-align: center;
  margin-top: 40px;
}

/*# sourceMappingURL=text.css.map */
