h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 40px 0 20px 0;
  font-family: var(--heading);
  font-weight: var(--bold);
  text-align: left;
  letter-spacing: 1px;
}

h1 {
  margin: 40px 0;
  font-size: var(--xxl);
  font-weight: var(--bold);
  color: var(--primary);
  text-transform: uppercase;
  text-align: left;
}

h2 {
  font-size: var(--xl);
  padding-bottom: 1px;
  border-bottom: solid 1px var(--light-gray);
  font-weight: var(--semi-bold);
  color: var(--primary); /* Using theme secondary color */
}

[data-dark=true] h2 {
  color: var(--secondary); /* Using theme secondary color for dark mode too */
}

h3 {
  font-size: var(--large);
  font-weight: var(--regular);
  color: var(--tirtiary);
  padding-bottom: 1px;
}

[data-dark=true] h3 {
  color: var(--tirtiary); /* Using theme secondary color for dark mode too */
}

h4 {
  font-size: 1.75rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.25rem;
}

:where(h1, h2, h3, h4, h5, h6) > .icon {
  margin-right: 1em;
  color: var(--light-gray);
}

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