/* base/typography.css */
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-primary);
}
h1 {
  font-size: 1.85rem;
}
h2 {
  font-size: 1.45rem;
}
h3 {
  font-size: 1.2rem;
}
h4 {
  font-size: 1.05rem;
}
.text-muted {
  color: var(--text-muted);
}
.text-secondary {
  color: var(--text-secondary);
}
.text-sm {
  font-size: 0.875rem;
}
.text-xs {
  font-size: 0.78rem;
}
.fw-medium {
  font-weight: 500;
}
.fw-semibold {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}
