.html-content {
  font-size: 18px;
  line-height: 28px;
  color: var(--color_grey3);
}
.html-content h2, .html-content .h2,
.html-content h3, .html-content .h3,
.html-content h4, .html-content .h4 {
  color: var(--color_grey1);
}
.html-content h2, .html-content .h2 {
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 30px;
}
.html-content h2:not(:first-child), .html-content .h2:not(:first-child) {
  margin-top: 40px;
}
.html-content h2:not(:last-child), .html-content .h2:not(:last-child) {
  margin-bottom: 24px;
}
.html-content h3, .html-content .h3 {
  font-size: 20px;
  line-height: 30px;
}
.html-content h3:not(:first-child), .html-content .h3:not(:first-child) {
  margin-top: 24px;
}
.html-content h3:not(:last-child), .html-content .h3:not(:last-child) {
  margin-bottom: 8px;
}
.html-content h4, .html-content .h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}
.html-content h4:not(:first-child), .html-content .h4:not(:first-child) {
  margin-top: 16px;
}
.html-content h4:not(:last-child), .html-content .h4:not(:last-child) {
  margin-bottom: 8px;
}
.html-content ol:not(:first-child) {
  margin-top: 8px;
}
.html-content ol > li::before {
  content: counter(list-item) ".";
  color: var(--color_grey6);
  position: absolute;
  left: 16px;
}
.html-content ul:not(:first-child) {
  margin-top: 8px;
}
.html-content ul > li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 12px;
  width: 4px;
  height: 4px;
  background: var(--color_grey6);
  border-radius: 50%;
}
.html-content li {
  position: relative;
  padding-left: 48px;
  list-style: none;
}
.html-content li:not(:first-child) {
  margin-top: 2px;
}
.html-content p:not(:first-child) {
  margin-top: 12px;
}
.html-content p a,
.html-content li a {
  color: var(--color_orange1);
  transition: 0.3s;
}
.html-content p a:hover,
.html-content li a:hover {
  color: var(--color_orange3);
}

@media only screen and (min-width: 768px) {
  .html-content h2, .html-content .h2 {
    font-family: "Unbounded";
    font-size: 26px;
    line-height: 26px;
  }
  .html-content h3, .html-content .h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .html-content h4, .html-content .h4 {
    font-weight: 700;
    line-height: 28px;
    font-size: 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .html-content h2, .html-content .h2 {
    font-family: "Unbounded";
    font-size: 28px;
    line-height: 32px;
  }
}