.misc-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px 10px;
  background: #fff;
}
h1 {
  position: relative;
  margin: 0 0 30px;
  text-align: center;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: bold;
}
h1:before {
  content: '';
  position: absolute;
  top: 15px;
  left: -10px;
  right: -10px;
  border-top: 1px solid var(--grey);
}
h1 span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 30px;
  background: #fff;
}
.misc-page__body {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.misc-page__body p {
  margin: 0 0 25px;
}
.misc-page__body a {
  font-weight: bold;
  text-decoration: underline;
}
.misc-page__body h2 {
  margin: 0 0 12px;
  font-size: 2.4rem;
  line-height: 2.8rem;
  font-weight: bold;
}
.misc-page__body h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: bold;
}
.misc-page__body ul,
.misc-page__body ol {
  margin: 0 0 25px;
}
.misc-page__body li {
  position: relative;
  list-style: none;
  margin: 0 0 20px;
  padding: 0 0 0 16px;
  clear: left;
}
.misc-page__body ol li {
  padding-left: 24px;
  counter-increment: list;
}
.misc-page__body ul li:before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--blue);
}
.misc-page__body ol li:before {
  content: counter(list) ".";
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: bold;
  color: var(--blue);
}
.misc-page__body hr {
  max-width: 200px;
  margin: 0 0 25px;
  border: none;
  border-top: 2px solid var(--blue);
}
