.Headline {
  margin: 0;
  font-family: var(--font-primary);
  -webkit-hyphens: auto;
          hyphens: auto;
  line-height: normal;
  word-break: break-word;
  color: currentColor;
  color: var(--headline-color, currentColor);
}

@media screen and (min-width: 769px) {

.Headline {
    word-break: inherit;
}
  }

h1,
.h1 {
  margin: 0 0 20px;
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 2.8125rem;
  color: var(--clr-grayDarkest);
}

h2,
.h2 {
  margin: 0 0 20px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: var(--clr-grayDark);
}

h3,
.h3 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2rem;
}

h4,
.h4 {
  margin-bottom: 20px;
  font-size: 1.625rem;
}

h5,
.h5 {
  font-size: 1.5rem;
  line-height: 120%;
}

.Text h2,
  .Text h3,
  .Text h4,
  .Text h5,
  .Text h6 {
    font-family: var(--font-primary);
    -webkit-hyphens: auto;
            hyphens: auto;
    word-break: break-word;
  }

.Headline + .Headline {
  margin-bottom: 20px;
}

@media screen and (min-width: 601px) {

.Headline + .Headline {
    margin-bottom: 40px;
}
  }

.Headline--center {
  text-align: center;
}

.Headline--left {
  text-align: left;
}
