.wysiwyg {
  position: relative;
  font-size: clamp(
    1.25rem,
    calc(1.25rem + 36 * ((100vw - 320px) / 1340)),
    3.5rem
  );
  font-family: var(--font-secondary);
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .wysiwyg [class^=col] {
    padding: 0 1.875rem;
  }
}
.wysiwyg--on-top {
  position: relative;
  z-index: 10;
}
.wysiwyg--color-secondary {
  background-color: var(--color-secondary);
  box-shadow: -50vw 0 var(--color-secondary), 50vw 0 var(--color-secondary);
}
.wysiwyg .animation-fade-up {
  transition-duration: 1s;
}
.wysiwyg__following-content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: auto;
  pointer-events: none;
}
.wysiwyg__following-content:hover {
  cursor: move;
}
.wysiwyg__following-content__image {
  position: relative;
  display: inline-block;
  overflow: hidden;
  transform: translate3d(-50%, -50%, 0);
}
.wysiwyg__following-content__image img {
  position: relative;
  display: block;
  width: auto;
  max-width: 18.75rem;
  opacity: 0;
  transition: opacity 0.5s;
}
.wysiwyg__following-content.show .wysiwyg__following-content__image img {
  opacity: 1;
}
.wysiwyg .text-small {
  font-size: clamp(
    1rem,
    calc(1rem + 16 * ((100vw - 320px) / 1340)),
    2rem
  );
  font-family: var(--font-primary);
}
.wysiwyg .text-small .text-bold {
  font-weight: normal;
  font-family: var(--font-secondary);
}
.wysiwyg .text-small a {
  position: relative;
  display: inline-block;
  vertical-align: -0.4em;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.wysiwyg .text-small a::after {
  content: "";
  position: absolute;
  bottom: 0.1875rem;
  left: 0;
  z-index: -1;
  width: 0;
  height: 0.2em;
  background-image: url("../../assets/img/wave--blue.svg");
  background-size: contain;
  background-repeat: repeat-x;
  transition: width 1s cubic-bezier(0.29, 0.68, 0.74, 1.02);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.wysiwyg .text-small a:hover::after {
  width: 100%;
}

.image-overlay {
  transition: color 800ms ease;
  cursor: default;
}
.image-overlay:hover {
  color: var(--color-white) !important;
}

@keyframes color-change {
  0% {
    color: inherit;
  }
  100% {
    color: var(--color-white);
  }
}

/*# sourceMappingURL=wysiwyg.css.map */
