.text {
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  white-space: break-spaces;
  overflow: hidden;
}
.text a {
  color: var(--color);
}
.text a:hover {
  color: var(--hover-color);
}
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  /* margin: 25px 0 5px;
  font-weight: 600; */
  color: var(--markdown-bold);
}
.text p {
  margin: 0 0 16px;
  color: var(--markdown-text);
}
.text ul,
.text ol {
  margin: 0 0 16px 20px;
  padding: 0;
  color: var(--markdown-text);
}
.text ul {
  list-style: none;
}
.text ul li::before {
  content: "•";
  display: inline-block;
  width: 16px;
}
.text ol {
  list-style: none;
  counter-reset: list-counter;
}
.text ol li {
  counter-increment: list-counter;
}
.text ol li::before {
  content: counter(list-counter) ".";
  display: inline-block;
  width: 24px;
}
.text li {
  margin: 4px 0;
  line-height: 22px;
}
.text li p {
  margin: 4px 0;
}
.text li p:last-child {
  margin-bottom: 0;
}
.text strong,
.text b {
  font-weight: 700;
}
.text em,
.text i,
.text dfn {
  font-style: italic;
}
.text blockquote {
  border-left: 3px solid var(--color);
  padding-left: 12px;
  margin: 16px 0;
  color: var(--text);
  opacity: 0.9;
}
.text blockquote > p {
  margin: 0;
}
.text code,
.text kbd,
.text samp {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  white-space: break-spaces;
}
.text pre {
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: 6px;
  overflow-x: auto;
  margin: 16px 0;
  font-size: 14px;
}
.text hr {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}
.text mark {
  background: var(--color);
  color: var(--text);
  font-weight: 700;
  font-style: italic;
  padding: 1px 5px;
  border-radius: 3px;
}
.text ins {
  background: var(--color);
  color: var(--text);
  text-decoration: none;
  padding: 1px 5px;
  border-radius: 3px;
}
.text sub,
.text sup {
  font-size: 11px;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.text sup {
  top: -6px;
}
.text sub {
  bottom: -3px;
}
.text dd {
  margin: 0 0 0 20px;
}
.text table {
  border-collapse: collapse;
  margin: 16px 0;
  width: 100%;
}
.text th,
.text td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  text-align: left;
  color: var(--text);
}
.text img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
  border-radius: var(--radius-xl);
}
