.md h1 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  overflow-wrap: break-word;
  margin-bottom: 2rem;
  margin-top: 0;
}

@media (min-width: 640px) {
  .md h1 {
    font-size: 2.25rem;
  }
}

.md h2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.md :not(h1)+h2 {
  margin-top: 3rem;
}

.md h3 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.md>p {
  margin-top: 1rem;
  margin-bottom: 0;
}

.md a {
  color: hsl(var(--color-link));
  text-decoration: none;
}

.md a:hover {
  text-decoration: underline;
}

.md>ul {
  margin-top: 1rem;
  margin-bottom: 0;
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}

.md>ol {
  margin-top: 1rem;
  margin-bottom: 0;
  list-style-type: decimal;
  list-style-position: inside;
  padding-left: 0;
}

.md ul>li>ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
  list-style-type: disc;
  list-style-position: inside;
}

.md ol>li>ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
  list-style-type: decimal;
  list-style-position: inside;
}

.md li {
  margin-bottom: 0.125rem;
}

.md>.chroma {
  position: relative;
  font-size-adjust: from-font;
  margin-top: 1rem;
  margin-bottom: 0;
  color: hsl(var(--color-code-foreground));
  background-color: hsl(var(--color-code-background));
  border: 1px solid hsl(var(--color-border));
  border-radius: 0.375rem;
  padding: 1rem;
  line-height: 1.375;
  overflow: auto;
}

.md>.chroma>.copy {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: hsl(var(--color-code-background));
  color: hsl(var(--color-code-foreground));
  border: 1px solid hsl(var(--color-border));
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  transition: all 0.2s ease-out;
}

.md>.chroma:hover>.copy {
  pointer-events: all;
  opacity: 1;
}

.md>.chroma>.copy:hover {
  background-color: hsl(var(--color-background-hover));
  transition: background-color 0.2s ease-out;
}

.md>.chroma a {
  all: inherit;
  text-decoration: underline;
}

.md>.chroma .line {
  display: flex;
}

/* Other */
.md>.chroma .x {
  color: #cb4b16
}

/* LineLink */
.md>.chroma .lnlinks {
  outline: none;
  text-decoration: none;
  color: inherit
}

/* LineTableTD */
.md>.chroma .lntd {
  vertical-align: top;
  padding: 0;
  margin: 0;
  border: 0;
}

/* LineTable */
.md>.chroma .lntable {
  border-spacing: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* LineHighlight */
.md>.chroma .hl {
  background-color: #19404a
}

/* LineNumbersTable */
.md>.chroma .lnt {
  white-space: pre;
  -webkit-user-select: none;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: #495050
}

/* LineNumbers */
.md>.chroma .ln {
  white-space: pre;
  -webkit-user-select: none;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: #495050
}

/* Keyword */
.md>.chroma .k,
.kd,
.kn,
.kp,
.kr,
.kt {
  color: hsl(var(--color-code-keyword));
  transition: color 0.2s ease-out;
}

/* Builtin */
.md>.chroma .kc {
  color: hsl(var(--color-code-builtin));
  transition: color 0.2s ease-out;
}

/* Named */
.md>.chroma .nc,
.nb,
.bp,
.nf,
.no,
.nd,
.ni,
.ne,
.nt,
.nv {
  color: hsl(var(--color-code-named));
  transition: color 0.2s ease-out;
}

/* Named Other */
.md>.chroma .nx {
  color: hsl(var(--color-code-named-other));
  transition: color 0.2s ease-out;
}

/* String Literals */
.md>.chroma .s,
.sa,
.sb,
.sc,
.dl,
.s2,
.se,
.si,
.sx,
.sr,
.s1,
.ss {
  color: hsl(var(--color-code-string));
  transition: color 0.2s ease-out;
}

/* Number Literals */
.md>.chroma .m,
.mb,
.mf,
.mh,
.mi,
.il,
.mo {
  color: hsl(var(--color-code-number));
  transition: color 0.2s ease-out;
}

/* Operators */
.md>.chroma .o,
.ow {
  color: hsl(var(--color-code-operator));
  transition: color 0.2s ease-out;
}

/* Punctuation */
.md>.chroma .p {
  color: hsl(var(--color-code-punctuation));
  transition: color 0.2s ease-out;
}

/* Comments */
.md>.chroma .c,
.ch,
.cm,
.c1,
.cs,
.cp,
.cpf {
  color: hsl(var(--color-code-comment));
  transition: color 0.2s ease-out;
}

.md del {
  text-decoration: line-through;
  color: hsl(var(--color-text-muted));
}


.md .table-wrapper {
  overflow: auto;
  width: 100%;
  white-space: nowrap;
  padding-bottom: 1rem;
  margin-top: 1rem;
}

.md table {
  margin-bottom: 0;
  width: 100%;
  text-align: left;
  border-spacing: 0;
}

.md thead,
.md tbody {
  width: 100%;
}

.md td {
  border-bottom: 1px solid rgb(221, 221, 221);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  table-layout: auto;
}

.md th {
  font-weight: 500;
  font-size: 0.875rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  border-bottom: 1px solid rgb(44, 44, 44);
}

.md blockquote {
  margin: 0;
  margin-top: 1rem;
  border-left: 2px solid rgb(150, 150, 150);
  padding-left: 0.5rem;
  color: rgb(150, 150, 150);
}

.md blockquote>p {
  margin: 0;
}