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

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

.Headline {
    word-break: inherit;
}
  }

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

h3,
.h3 {
  font-size: 1.75rem;
}

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

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

.Text h2,
  .Text h3,
  .Text h4,
  .Text h5,
  .Text h6 {
    font-family: var(--font-primary);
  }

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

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

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