:root {
  color-scheme: dark;
  --md-primary-fg-color: #1b2433;
  --md-primary-fg-color--light: #2c3a52;
  --md-primary-fg-color--dark: #11161f;
  --md-primary-bg-color: #e8ecf4;
  --md-primary-bg-color--light: #c5cede;
  --md-accent-fg-color: #d8a657;
  --md-typeset-a-color: #d8a657;
  --md-code-font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  --site-ink: #0c1119;
  --site-panel: #141c28;
  --site-panel-soft: #192433;
  --site-line: rgba(161, 181, 207, .16);
  --site-line-strong: rgba(161, 181, 207, .3);
  --site-text: #e8edf4;
  --site-muted: #9aa9bc;
  --site-gold: #d8a657;
  --site-cyan: #5fd0cf;
  --site-header-height: 3.35rem;
  --site-content-width: 90rem;
  font-size: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 18rem;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-height) + 1rem);
  background: var(--site-ink);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--site-text);
  background:
    radial-gradient(circle at 50% -15rem, rgba(52, 78, 109, .22), transparent 40rem),
    var(--site-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .7rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--md-typeset-a-color);
}

a:hover {
  color: #f0c982;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.site-skip-link {
  position: fixed;
  z-index: 200;
  top: .5rem;
  left: .5rem;
  padding: .45rem .7rem;
  color: #11161f;
  border-radius: .25rem;
  background: var(--site-gold);
  font-weight: 800;
  transform: translateY(-200%);
}

.site-skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--site-line);
  background: rgba(14, 20, 29, .91);
  box-shadow: 0 .4rem 1.5rem rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  width: min(100%, 96rem);
  height: var(--site-header-height);
  align-items: center;
  gap: 1.1rem;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .5rem;
  color: #f3f6fa;
  text-decoration: none;
}

.site-brand:hover {
  color: #fff;
}

.site-brand img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
  filter: drop-shadow(0 .2rem .35rem rgba(0, 0, 0, .38));
}

.site-brand strong {
  font-size: .72rem;
  letter-spacing: -.015em;
  white-space: nowrap;
}

.site-tabs,
.site-external {
  display: flex;
  height: 100%;
  align-items: center;
}

.site-tabs {
  gap: .15rem;
}

.site-tabs a {
  position: relative;
  display: inline-flex;
  height: 100%;
  align-items: center;
  padding: 0 .65rem;
  color: #aab7c7;
  font-size: .62rem;
  font-weight: 720;
  text-decoration: none;
  white-space: nowrap;
}

.site-tabs a::after {
  position: absolute;
  right: .65rem;
  bottom: 0;
  left: .65rem;
  height: 2px;
  background: var(--site-gold);
  content: "";
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .15s ease, transform .15s ease;
}

.site-tabs a:hover,
.site-tabs a.active {
  color: #fff;
}

.site-tabs a.active::after {
  opacity: 1;
  transform: none;
}

.site-external {
  gap: .3rem;
  margin-left: auto;
}

.site-external a {
  display: inline-flex;
  min-height: 1.8rem;
  align-items: center;
  padding: .28rem .52rem;
  color: #b8c3d1;
  border: 1px solid var(--site-line);
  border-radius: .3rem;
  background: rgba(255, 255, 255, .025);
  font-size: .5rem;
  font-weight: 760;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.site-external a:hover {
  color: #fff;
  border-color: rgba(216, 166, 87, .45);
  background: rgba(216, 166, 87, .07);
}

.site-external .site-external__primary {
  color: #19130b;
  border-color: #d8a657;
  background: linear-gradient(135deg, #edc47d, #c79048);
  box-shadow: 0 .35rem .8rem rgba(197, 141, 70, .14);
}

.site-external .site-external__primary:hover {
  color: #110d08;
  border-color: #f1ca85;
  background: linear-gradient(135deg, #f4d18f, #d39b52);
}

.site-search-button,
.site-menu-button {
  border: 1px solid var(--site-line);
  background: rgba(255, 255, 255, .025);
  cursor: pointer;
}

.site-search-button {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 2rem;
  align-items: center;
  gap: .38rem;
  padding: .3rem .45rem .3rem .6rem;
  color: #e1e7ee;
  border-color: rgba(95, 208, 207, .34);
  border-radius: .35rem;
  background: rgba(95, 208, 207, .065);
  box-shadow: inset 0 0 0 1px rgba(95, 208, 207, .025);
  font-size: .59rem;
  font-weight: 760;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.site-search-button:hover {
  color: #fff;
  border-color: rgba(95, 208, 207, .7);
  background: rgba(95, 208, 207, .11);
}

.site-search-button kbd {
  margin-left: .12rem;
  padding: .08rem .27rem;
  color: #9fb0c2;
  border-color: rgba(161, 181, 207, .22);
  background: rgba(4, 10, 16, .34);
  box-shadow: none;
  font-size: .43rem;
  font-weight: 650;
  letter-spacing: .02em;
}

.site-search-button svg,
.site-search__input-wrap svg {
  width: .85rem;
  height: .85rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.site-menu-button {
  display: none;
  width: 2rem;
  height: 2rem;
  place-content: center;
  gap: .18rem;
  padding: .45rem;
  border-radius: .25rem;
}

.site-menu-button span {
  display: block;
  width: .9rem;
  height: 1px;
  background: #c4ceda;
}

.site-mobile-nav {
  padding: .35rem .8rem .75rem;
  border-top: 1px solid var(--site-line);
  background: #101721;
}

.site-mobile-nav nav,
.site-mobile-nav > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .25rem;
}

.site-mobile-nav > div {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: .35rem;
  padding-top: .35rem;
  border-top: 1px solid var(--site-line);
}

.site-mobile-nav a {
  padding: .45rem .55rem;
  color: #aebaca;
  border-radius: .25rem;
  font-size: .6rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.site-mobile-nav a.active,
.site-mobile-nav a:hover {
  color: #fff;
  background: rgba(216, 166, 87, .1);
}

.site-layout {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr) 10rem;
  width: min(calc(100% - 2rem), var(--site-content-width));
  min-height: calc(100vh - var(--site-header-height) - 6.5rem);
  align-items: start;
  gap: 1.35rem;
  margin: 0 auto;
}

.site-layout--wide {
  display: block;
  width: 100%;
  max-width: none;
}

.site-layout--wide .md-main {
  width: 100%;
}

.site-sidebar,
.site-toc {
  position: sticky;
  top: calc(var(--site-header-height) + .9rem);
  max-height: calc(100vh - var(--site-header-height) - 1.8rem);
  overflow: auto;
  padding: 1.25rem 0;
  scrollbar-width: thin;
}

.site-sidebar__title {
  display: block;
  margin-bottom: .45rem;
  padding: 0 .5rem;
  color: #e8edf4;
  font-size: .66rem;
  font-weight: 800;
  text-decoration: none;
}

.site-sidebar ul,
.site-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-sidebar li {
  margin: .05rem 0;
}

.site-sidebar li > a,
.site-sidebar li > span {
  display: block;
  padding: .32rem .5rem;
  color: #9eacbd;
  border-radius: .25rem;
  font-size: .59rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.site-sidebar li > span {
  margin-top: .5rem;
  color: #d2dae4;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.site-sidebar .site-nav-group {
  margin: .05rem 0;
}

.site-sidebar .site-nav-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .5rem;
  padding: .32rem .5rem;
  color: #d2dae4;
  border-radius: .25rem;
  cursor: pointer;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .065em;
  line-height: 1.35;
  list-style: none;
  text-transform: uppercase;
}

.site-sidebar .site-nav-group > summary::-webkit-details-marker {
  display: none;
}

.site-sidebar .site-nav-group > summary::after {
  content: "›";
  margin-left: .4rem;
  color: var(--site-gold);
  font-size: .8rem;
  line-height: 1;
  transition: transform .16s ease;
}

.site-sidebar .site-nav-group[open] > summary::after {
  transform: rotate(90deg);
}

.site-sidebar .site-nav-group > summary:hover {
  color: #fff;
  background: rgba(255, 255, 255, .035);
}

.site-sidebar li > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .035);
}

.site-sidebar li > a.active {
  color: var(--site-gold);
  background: rgba(216, 166, 87, .095);
}

.site-sidebar li ul {
  margin-left: .48rem;
  padding-left: .35rem;
  border-left: 1px solid var(--site-line);
}

.site-section-nav {
  display: none;
}

.site-toc {
  padding-left: .75rem;
  border-left: 1px solid var(--site-line);
}

.site-toc > strong {
  display: block;
  margin-bottom: .45rem;
  color: #d8e0e9;
  font-size: .56rem;
}

.site-toc a {
  display: block;
  padding: .2rem 0;
  color: #8f9cad;
  font-size: .54rem;
  line-height: 1.4;
  text-decoration: none;
}

.site-toc a:hover {
  color: var(--site-gold);
}

.site-toc li li {
  padding-left: .55rem;
}

.md-main {
  min-width: 0;
}

.md-grid {
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
}

.site-layout--wide .md-grid {
  max-width: 90rem;
}

.md-content__inner {
  min-height: 20rem;
  padding: 2rem 1rem 4rem;
}

.md-typeset {
  color: #c8d1dd;
}

.md-typeset > :first-child {
  margin-top: 0;
}

.md-typeset h1,
.md-typeset h2,
.md-typeset h3,
.md-typeset h4 {
  color: #f2f5f9;
  font-weight: 720;
  line-height: 1.25;
  letter-spacing: -.018em;
}

.md-typeset h1 {
  margin: 0 0 1.25rem;
  font-size: 1.72rem;
  letter-spacing: -.035em;
}

.md-typeset h2 {
  margin: 2rem 0 .75rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--site-line);
  font-size: 1.18rem;
}

.md-typeset h3 {
  margin: 1.5rem 0 .6rem;
  font-size: .92rem;
}

.md-typeset h4 {
  margin: 1.2rem 0 .4rem;
  font-size: .75rem;
}

.md-typeset p,
.md-typeset ul,
.md-typeset ol,
.md-typeset dl,
.md-typeset blockquote {
  margin: .7rem 0;
}

.md-typeset ul,
.md-typeset ol {
  padding-left: 1.25rem;
}

.md-typeset li + li {
  margin-top: .18rem;
}

.md-typeset a {
  text-decoration-thickness: 1px;
  text-underline-offset: .14em;
}

.md-typeset strong {
  color: #edf2f8;
}

.md-typeset hr {
  height: 1px;
  margin: 1.6rem 0;
  border: 0;
  background: var(--site-line);
}

.md-typeset code {
  padding: .08rem .25rem;
  color: #e9c990;
  border: 1px solid rgba(161, 181, 207, .12);
  border-radius: .2rem;
  background: rgba(0, 0, 0, .25);
  font-family: var(--md-code-font-family);
  font-size: .86em;
}

.md-typeset pre {
  overflow: auto;
  margin: .9rem 0;
  padding: .85rem 1rem;
  border: 1px solid var(--site-line);
  border-radius: .35rem;
  background: #0a1018;
}

.md-typeset pre code {
  padding: 0;
  color: #d8e0e9;
  border: 0;
  background: none;
}

.md-typeset blockquote {
  padding: .05rem 0 .05rem .8rem;
  color: #aab6c5;
  border-left: 3px solid var(--site-gold);
}

.md-typeset table {
  width: 100%;
  margin: .9rem 0;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: .62rem;
}

.md-typeset th,
.md-typeset td {
  padding: .48rem .6rem;
  border: 1px solid var(--site-line);
  text-align: left;
  vertical-align: top;
}

.md-typeset th {
  color: #e4eaf1;
  background: #192230;
  font-weight: 750;
}

.md-typeset tr:nth-child(even) td {
  background: rgba(255, 255, 255, .014);
}

.md-typeset dt {
  color: #eef2f7;
  font-weight: 750;
}

.md-typeset dd {
  margin: .1rem 0 .7rem 1rem;
}

.md-typeset .grid.cards > ul,
.md-typeset .grid.cards > ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  margin: .9rem 0;
  padding: 0;
  list-style: none;
}

.md-typeset .grid.cards > ul > li,
.md-typeset .grid.cards > ol > li {
  margin: 0;
  padding: .8rem;
  border: 1px solid var(--site-line);
  border-radius: .38rem;
}

.md-typeset .admonition,
.md-typeset details {
  overflow: hidden;
  margin: .9rem 0;
  padding: 0 .8rem;
  border: 1px solid #368ac7;
  border-radius: .3rem;
  background: rgba(20, 28, 40, .8);
}

.md-typeset .admonition-title,
.md-typeset details > summary {
  margin: 0 -.8rem;
  padding: .48rem .8rem;
  color: #e7edf4;
  background: rgba(54, 138, 199, .12);
  font-size: .62rem;
  font-weight: 800;
}

.md-typeset details > summary {
  cursor: pointer;
}

.md-typeset .admonition-title::before,
.md-typeset details > summary::before {
  display: inline-block;
  width: .42rem;
  height: .42rem;
  margin-right: .38rem;
  border-radius: 50%;
  background: #4aa3df;
  content: "";
  vertical-align: .04rem;
}

.site-footer {
  display: flex;
  width: min(calc(100% - 2rem), var(--site-content-width));
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem;
  color: #7f8d9e;
  border-top: 1px solid var(--site-line);
  font-size: .55rem;
}

.site-footer div {
  display: grid;
}

.site-footer strong {
  color: #cbd4df;
}

.site-footer nav {
  display: flex;
  gap: .8rem;
}

.site-footer a {
  color: #8d9bac;
  text-decoration: none;
}

.site-search {
  width: min(42rem, calc(100% - 1.4rem));
  max-height: min(40rem, calc(100vh - 2rem));
  margin: 1rem auto auto;
  padding: 0;
  color: var(--site-text);
  border: 1px solid var(--site-line-strong);
  border-radius: .65rem;
  background: #111925;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, .62);
}

.site-search::backdrop {
  background: rgba(3, 7, 11, .72);
  backdrop-filter: blur(4px);
}

.site-search__panel {
  max-height: min(40rem, calc(100vh - 2rem));
  overflow: auto;
}

.site-search__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem .9rem .4rem;
}

.site-search__header > div {
  display: grid;
}

.site-search__header span {
  color: var(--site-gold);
  font-size: .47rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.site-search__header strong {
  color: #f0f3f7;
  font-size: .74rem;
}

.site-search__header button {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  padding: 0;
  color: #95a3b4;
  border: 0;
  border-radius: .25rem;
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
}

.site-search__header button:hover {
  color: #fff;
  background: rgba(255, 255, 255, .05);
}

.site-search__input-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .5rem;
  margin: .4rem .9rem .7rem;
  padding: .5rem .65rem;
  color: #91a0b2;
  border: 1px solid rgba(216, 166, 87, .38);
  border-radius: .38rem;
  background: #0b121b;
  box-shadow: 0 0 0 3px rgba(216, 166, 87, .045);
}

.site-search__input-wrap input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: #eef3f8;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: .68rem;
}

.site-search__input-wrap input::placeholder {
  color: #69788b;
}

kbd {
  padding: .08rem .28rem;
  color: #8997a8;
  border: 1px solid var(--site-line-strong);
  border-radius: .18rem;
  background: rgba(255, 255, 255, .025);
  box-shadow: 0 1px rgba(255, 255, 255, .07);
  font-family: inherit;
  font-size: .48rem;
}

.site-search__results {
  min-height: 9rem;
  padding: 0 .9rem .9rem;
}

.site-search__hint,
.site-search__empty,
.site-search__loading {
  margin: 0;
  padding: 2.5rem 1rem;
  color: #8391a2;
  font-size: .6rem;
  text-align: center;
}

.site-search__group + .site-search__group {
  margin-top: .75rem;
}

.site-search__group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 .3rem;
  color: #96a5b7;
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.site-search__group-heading span:last-child {
  color: #667689;
}

.site-search__list {
  display: grid;
  gap: .25rem;
}

.site-search__result {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  gap: .65rem;
  align-items: center;
  min-height: 3rem;
  padding: .4rem .55rem;
  color: #dce4ed;
  border: 1px solid transparent;
  border-radius: .32rem;
  background: rgba(255, 255, 255, .022);
  text-decoration: none;
}

.site-search__result:hover,
.site-search__result:focus-visible {
  color: #fff;
  border-color: rgba(216, 166, 87, .32);
  background: rgba(216, 166, 87, .055);
  outline: none;
}

.site-search__result-icon {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  overflow: hidden;
  color: var(--site-gold);
  border: 1px solid var(--site-line);
  border-radius: .3rem;
  background: #0a1018;
  font-size: .7rem;
  font-weight: 800;
}

.site-search__result-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-search__result-copy {
  display: grid;
  min-width: 0;
  gap: .1rem;
}

.site-search__result-copy strong {
  overflow: hidden;
  color: inherit;
  font-size: .62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-search__result-copy small {
  overflow: hidden;
  color: #8291a3;
  font-size: .52rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-search__result-copy mark {
  color: #f3ca84;
  background: transparent;
}

.site-search__result-kind {
  color: #728195;
  font-size: .47rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 78rem) {
  .site-external {
    display: none;
  }

  .site-tabs {
    margin-left: auto;
  }
}

@media (max-width: 68rem) {
  .site-layout {
    grid-template-columns: 10rem minmax(0, 1fr);
  }

  .site-toc {
    display: none;
  }
}

@media (max-width: 52rem) {
  :root {
    --site-header-height: 3rem;
  }

  .site-header__inner {
    gap: .55rem;
    padding: 0 .7rem;
  }

  .site-menu-button {
    display: grid;
  }

  .site-tabs {
    display: none;
  }

  .site-search-button {
    margin-left: auto;
  }

  .site-search-button kbd {
    display: none;
  }

  .site-layout {
    display: block;
    width: 100%;
  }

  .site-sidebar {
    display: none;
  }

  .site-section-nav {
    display: block;
    margin: .75rem .8rem 0;
    overflow: hidden;
    border: 1px solid var(--site-line);
    border-radius: .45rem;
    background: rgba(17, 24, 33, .9);
  }

  .site-section-nav > summary {
    display: flex;
    min-height: 2.55rem;
    align-items: center;
    justify-content: space-between;
    padding: .65rem .8rem;
    color: #e9eef5;
    cursor: pointer;
    font-size: .68rem;
    font-weight: 800;
    list-style: none;
  }

  .site-section-nav > summary::-webkit-details-marker {
    display: none;
  }

  .site-section-nav > summary::after {
    content: "+";
    color: var(--site-gold);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
  }

  .site-section-nav[open] > summary::after {
    content: "−";
  }

  .site-section-nav nav {
    max-height: 55vh;
    overflow-y: auto;
    padding: .45rem;
    border-top: 1px solid var(--site-line);
  }

  .site-section-nav ul {
    display: grid;
    gap: .08rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-section-nav li {
    margin: 0;
  }

  .site-section-nav li > a,
  .site-section-nav li > span {
    display: block;
    padding: .42rem .55rem;
    color: #aab6c6;
    border-radius: .28rem;
    font-size: .61rem;
    font-weight: 680;
    line-height: 1.35;
    text-decoration: none;
  }

  .site-section-nav li > a.active {
    color: var(--site-gold);
    background: rgba(216, 166, 87, .1);
  }

  .site-section-nav li > span {
    margin-top: .3rem;
    color: #d5dde7;
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
  }

  .site-section-nav .site-nav-group > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .3rem;
    padding: .42rem .55rem;
    color: #d5dde7;
    border-radius: .28rem;
    cursor: pointer;
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .055em;
    line-height: 1.35;
    list-style: none;
    text-transform: uppercase;
  }

  .site-section-nav .site-nav-group > summary::-webkit-details-marker {
    display: none;
  }

  .site-section-nav .site-nav-group > summary::after {
    content: "+";
    margin-left: .4rem;
    color: var(--site-gold);
    font-size: .8rem;
    font-weight: 500;
    line-height: 1;
  }

  .site-section-nav .site-nav-group[open] > summary::after {
    content: "−";
  }

  .site-section-nav li ul {
    margin-left: .55rem;
    padding-left: .4rem;
    border-left: 1px solid var(--site-line);
  }

  .md-grid,
  .site-layout--wide .md-grid {
    max-width: 100%;
  }

  .md-content__inner {
    padding: 1.4rem .8rem 3rem;
  }
}

@media (max-width: 35rem) {
  .site-brand strong {
    display: none;
  }

  .site-search-button span {
    display: none;
  }

  .md-typeset h1 {
    font-size: 1.45rem;
  }

  .md-typeset .grid.cards > ul,
  .md-typeset .grid.cards > ol {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .site-search {
    width: calc(100% - .6rem);
    max-height: calc(100vh - .6rem);
    margin: .3rem auto auto;
  }

  .site-search__panel {
    max-height: calc(100vh - .6rem);
  }

  .site-search__result {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .site-search__result-icon {
    width: 2rem;
    height: 2rem;
  }

  .site-search__result-kind {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
