/* =====================
   TYPOGRAPHY
===================== */
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* Thẻ h theo cấp độ */
h1 { font-size: 1.5rem; }
h2 { font-size: 1.25rem; }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }

/* Các element nhỏ */
small {
  font-size: 0.8125rem;
  color: var(--text-body);
}

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