/* Layout: Docs */
body:after {
  content: '';
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(at 90% 15%, #713a2d 0%, var(--color-base) 65%);
}
header {
  padding: 10px 0 0 0;
  position: fixed;
  z-index: 12;
  width: 100%;
}
header a {
  pointer-events: auto;
}
footer {
  margin: 0 auto;
  max-width: 1152px;
  padding-top: 0;
  padding-left: 0;
}
footer hr {
  display: none;
}
main {
  pointer-events: none;
  position: relative;
  z-index: 10;
  padding: 80px 24px 65px 24px;
  margin: 0 auto;
  min-height: 100%;
  max-width: 1156px;
}
main::after {
  content: '';
  display: block;
  position: absolute;
  top: 80px;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: -1;
  border: 1px solid var(--border);
  background: rgb(from var(--base) r g b / 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px)
  border-radius: 7px;
}
main > * {
  pointer-events: auto;
}
#docs-sidebar {
  position: fixed;
  z-index:12;
  width: 100%;
  top: 0;
  bottom: 0;
}

/* Desktop Overrides */
@media screen and (min-width: 768px) {
  main {
    padding: 100px 40px 65px 280px;
    z-index: 12;
  }
  main::after {
    content: '';
    display: block;
    position: absolute;
    top: 100px;
    right: 40px;
    bottom: 24px;
    left: 280px;
  }
  footer {
    padding-left: 240px;
  }
  #docs-sidebar {
    z-index: 11;
  }
}