.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 16px;
}

.headliner {
  font-size: 2.2rem;
  font-weight: 700;
}

.highlighter {
  font-weight: 500;
}

.highlighter-red {
  color: var(--fontColorAccent);
}

.highlighter-green {
  color: var(--fontColorAccentSucces);
}

.highlighter-disable {
  color: var(--fontColorDeactive);
}

.image-rounded {
  border-radius: 8px;
}

.text-small {
  font-size: 0.78rem;
}

.caption {
  line-height: normal;
  font-family: var(--fontFamilyLight);
  font-size: 0.67rem;
  font-weight: 500;
}

.link-in-text {
  display: inline;
  /* color: var(--fontColorAccent); */
  color: rgba(0, 102, 178, 1);
  font-weight: 600;
  -webkit-transition: color 100ms;
  transition: color 100ms;
}
.link-in-text:hover {
  text-decoration: underline;
  color: color-mix(in srgb, var(--fontColorAccent) 90%, #000000 10%);
}

.title--square {
  display: inline-block;
  padding-right: 16px;
  position: relative;
  font-weight: 700;
}
.title--square::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  translate: 0px -50%;
  width: 8px;
  height: 8px;
  background-color: var(--fontColorAccent);
}

.block-title--square {
  display: inline-block;
  padding-right: 16px;
  position: relative;
  font-weight: 700;
}
.block-title--square::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  translate: 0px -50%;
  width: 8px;
  height: 8px;
  background-color: var(--fontColorAccent);
}

@media screen and (max-width: 700px) {
  .headliner {
    line-height: 1.2;
  }
}