.sectionHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sectionHeader__heading {
  text-align: center;
  font-weight: var(--font-weight-medium);
  color: var(--color-purple);
  text-wrap: balance;
}

.sectionHeader__title {
  text-align: center;
  font-weight: var(--font-weight-medium);
  text-wrap: balance;
  line-height: 1.25;
}

.sectionHeader__title__underline {
  position: relative;
  display: inline-block;
  font-weight: var(--font-weight-bold);
}

.sectionHeader__title__underline span {
  position: relative;
  z-index: 2;
}

.sectionHeader__title__underline img {
  position: absolute;
  left: 0;
  bottom: 0%;
  width: 100%;
  height: 10px;
  z-index: 1;
}

.sectionHeader.secondary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sectionHeader__heading.secondary {
  text-align: left;
  font-weight: var(--font-weight-medium);
  color: var(--color-secondary);
}

.sectionHeader__title.secondary {
  text-align: left;
  font-weight: var(--font-weight-medium);
  color: #00000080;
}

.sectionHeader__title.secondary span {
  color: var(--color-secondary);
}

.sectionHeader.secondary.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sectionHeader__heading.secondary.centered {
  text-align: center;
  font-weight: var(--font-weight-medium);
  color: var(--color-secondary);
}

.sectionHeader__title.secondary.centered {
  text-align: center;
  font-weight: var(--font-weight-medium);
  color: #00000080;
}

.sectionHeader__title.secondary.centered span {
  color: var(--color-secondary);
}