.wysiwyg {
  transition: color var(--transition);
}
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6,
.wysiwyg ul,
.wysiwyg ol,
.wysiwyg p {
  margin: 24px 0;
}
@media screen and (max-width: 900px) {
  .wysiwyg h1,
  .wysiwyg h2,
  .wysiwyg h3,
  .wysiwyg h4,
  .wysiwyg h5,
  .wysiwyg h6,
  .wysiwyg ul,
  .wysiwyg ol,
  .wysiwyg p {
    margin: 16px 0;
  }
}
.wysiwyg h1:first-child,
.wysiwyg h2:first-child,
.wysiwyg h3:first-child,
.wysiwyg h4:first-child,
.wysiwyg h5:first-child,
.wysiwyg h6:first-child,
.wysiwyg ul:first-child,
.wysiwyg ol:first-child,
.wysiwyg p:first-child {
  margin-top: 0;
}
.wysiwyg h1:last-child,
.wysiwyg h2:last-child,
.wysiwyg h3:last-child,
.wysiwyg h4:last-child,
.wysiwyg h5:last-child,
.wysiwyg h6:last-child,
.wysiwyg ul:last-child,
.wysiwyg ol:last-child,
.wysiwyg p:last-child {
  margin-bottom: 0;
}
.wysiwyg a {
  transition: color var(--transition), text-decoration-color var(--transition);
}
.wysiwyg strong {
  display: contents;
}
.wysiwyg ul li,
.wysiwyg ol li {
  margin: 12px 0;
  padding-left: 32px;
  position: relative;
  z-index: 1;
}
.wysiwyg ul li:first-child,
.wysiwyg ol li:first-child {
  margin-top: 0;
}
.wysiwyg ul li:last-child,
.wysiwyg ol li:last-child {
  margin-bottom: 0;
}
.wysiwyg ul li::before,
.wysiwyg ol li::before {
  position: absolute;
  z-index: 1;
  left: 0;
  flex-shrink: 0;
  margin-top: 5px;
  margin-right: 16px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  transition: border-color var(--transition);
}
.wysiwyg ul li::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
}
.wysiwyg ol {
  counter-reset: num;
}
.wysiwyg ol li::before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: counter(num);
  counter-increment: num;
  text-align: center;
  font-size: var(--font-size-xxs);
  line-height: var(--line-height-xs);
  letter-spacing: var(--letter-spacing-s);
  font-weight: var(--font-weight-medium);
}
.wysiwyg._color-black a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
@media (hover: hover) {
  .wysiwyg._color-black a:hover {
    text-decoration-color: transparent;
  }
}
.wysiwyg._color-black {
  color: var(--color-black);
}
.wysiwyg._color-black a {
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.wysiwyg._color-black ul li::before,
.wysiwyg._color-black ol li::before {
  border-color: var(--color-black);
}
.wysiwyg._color-black ul li::before {
  background-image: url("/assets/svg/check-black.svg");
}
.wysiwyg._color-white a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
@media (hover: hover) {
  .wysiwyg._color-white a:hover {
    text-decoration-color: transparent;
  }
}
.wysiwyg._color-white {
  color: var(--color-white-2);
}
.wysiwyg._color-white a {
  color: var(--color-white-2);
  border-color: var(--color-white-2);
}
@media (hover: hover) {
  .wysiwyg._color-white a:hover {
    color: var(--color-blue);
  }
}
.wysiwyg._color-white ul li::before,
.wysiwyg._color-white ol li::before {
  border-color: var(--color-white-2);
}
.wysiwyg._color-white ul li::before {
  background-image: url("/assets/svg/check-white.svg");
}