/* Typography */

html, body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
}
p {
    text-align: center;
}

/* ===================== TEXT UTILITIES ===================== */

/* Muted / small text */
.text-muted,
.small, small,
.form-text,
.muted {
  color: var(--muted-text-color) !important;
}

/* Light (inverse) text */
.text-light {
  color: var(--text-color) !important;
}

.align-left p {
  text-align: left;
}

.paragraph-header {
  font-weight: bold;
  color: var(--color-text);
  font-size: 1.2em;
  text-decoration: underline;
}

.title-wrapper {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
  max-width: 75%;
}

.title-header {
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: 100%;
}