/* h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.4rem;
  padding-bottom: 0.3rem;
  margin-bottom: 1.5rem;
}

.section-title-bar {
  font-size: 1.1rem;
  font-weight: 400;
  color: #111;
  background-color: #e9f1f7;
  padding-left: 2rem;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  text-align: left;
} */


/* components/typography.css */
h1, h2, h3, h4{
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1{ font-size: 1.6rem; }
h2{ font-size: 1.25rem; }
h3{ font-size: 1.1rem; }
h4{ font-size: 1rem; }

.section-title{
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--s-2);
}

.section-title-bar{
  height: 3px;
  width: 100%;
  background: color-mix(in srgb, var(--primary) 70%, transparent);
  border-radius: 999px;
  margin: var(--s-2) 0 var(--s-3);
}

