h1, .h1 {
  font-size: 32px;
}

h2, .h2 {
  font-size: 28px;
}

h3, .h3 {
  font-size: 22px;
}

h4, .h4 {
  font-size: 16px;
}

h5, .h5 {
  font-size: 14px;
}

h6, .h6 {
  font-size: 12px;
}

@media (min-width: 992px) {
  h1, .h1 {
    font-size: 40px;
  }

  h2, .h2 {
    font-size: 36px;
  }

  h3, .h3 {
    font-size: 24px;
  }

  h4, .h4 {
    font-size: 18px;
  }

  h5, .h5 {
    font-size: 16px;
  }

  h6, .h6 {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* ---------- Post Typography ---------- */
.rte {
  line-height: 1.5;
}

.rte > * {
  margin: 0 0 12px;
}

.rte > *:last-child {
  margin-bottom: 0;
}
.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5,
.rte h6 {
  margin-bottom: 24px;
  margin-top: 48px;
}

.rte h2 + * {
  margin-top: 0;
}

.rte a:not([class]):link {
  color: var(--gray-700, #383838);
  text-decoration: underline;
}

.rte a:not([class]):visited {
  color: var(--gray-700, #383838);
}

.rte a:not([class]):hover {
  color: var(--gray-700, #383838);
  text-decoration: none;
}

.rte a:not([class]):active {
  color: var(--gray-700, #383838);
}

.rte strong, .rte b {
  font-weight: bold;
}

.rte em, .rte i {
  font-style: italic;
}

.rte ul,
.rte ol {
  list-style: none;
  padding: 0;
}

.rte ul li {
  padding-left: 25px;
  position: relative;
}

.rte ul li:not(:first-child) {
  margin-top: 7px;
}

.rte ul li::before {
  content: "·";
  color: var(--gray-700, #383838);
  font-size: 36px;
  margin-right: 15px;
  position: absolute;
  left: 5px;
  top: 0;
  line-height: 0.7;
}

.rte ul ul, .rte ul ul ul {
  margin: 7px 0 0;
}

.rte ol {
  counter-reset: item-counter;
}

.rte ol > li {
  counter-increment: item-counter;
}

.rte ol li {
  padding-left: 30px;
  position: relative;
}

.rte ol li:not(:first-child) {
  margin-top: 7px;
}

.rte ol li::before {
  content: counter(item-counter) ". ";
  font-size: 16px;
  color: var(--gray-700, #383838);
  position: absolute;
  left: 5px;
  top: 0;
  line-height: 1.5;
}

.rte ol ol, .rte ol ol ol {
  margin: 7px 0 0;
}

.rte ol ul {
  color: #9a9a9a;
  margin-top: 20px;
}

.rte ol ul li {
  padding-left: 40px;
  font-weight: 400;
}

.rte ol ul li::before {
  content: "·";
  background: transparent;
  color: var(--gray-700, #383838);
  position: absolute;
  left: 0;
  top: 0;
}

.rte blockquote {
  font-style: normal;
  color: var(--gray-700, #383838);
  border-left: 3px solid var(--blue-sky-600, #0058D2);
  padding-left: 30px;
}

.rte blockquote > * {
  margin: 0;
}

.rte blockquote cite {
  display: block;
  margin-top: 10px;
}

.rte cite {
  font-size: smaller;
  font-style: normal;
}

.rte figcaption {
  color: #64748b;
  font-size: 14px;
  margin-top: 15px;
}

.rte mark {
  background: yellow;
  padding: 2px 4px;
  border-radius: 3px;
}

.rte code {
  background-color: rgba(68, 68, 68, 0.2);
  padding: 2px 4px;
  border-radius: 3px;
}

.rte pre {
  border: 1px solid rgba(68, 68, 68, 0.2);
  border-radius: 3px;
  padding: 20px;
  overflow-x: auto;
  background: #444;
  color: #fff;
}

.rte pre code {
  background: transparent;
}

.rte hr {
  margin-bottom: 45px;
  margin-top: 45px;
  opacity: 0.3;
}

.rte img {
  max-width: 100%;
  display: block;
  height: auto;
}

.rte table {
  width: 100%;
  text-align: left;
  font-size: 16px;
  border-collapse: collapse;
}

.rte thead {
  border-bottom: 1px solid #e6e6e6;
}

.rte tr:not(:first-child) {
  border-top: 1px solid #e6e6e6;
}

.rte tr:hover td {
  background: #fafafa;
}

.rte th, .rte td {
  padding: 10px;
}

.rte th {
  font-weight: bold;
}

.rte td {
  transition: all 0.3s;
}

.rte .float-left {
  float: left;
  margin: 15px 15px 15px 0;
}

.rte .float-right {
  float: right;
  margin: 15px 0 15px 15px;
}

.rte .callout {
  padding: 20px;
  background: #f0eedf;
  color: #110b04;
  position: relative;
  border-radius: 5px;
}
/* ---------- Post Typography ---------- */
