blockquote {
  font-style: italic;
}

cite {
  width: 100%;
  display: inline-block;
  text-align: right;
  font-size: 0.8rem;
}
blockquote {
  font-weight: 100;
  font-size: 1.2rem;
  line-height: 1.4;
  position: relative;
  padding: 0.5rem;
}

blockquote:before,
blockquote:after {
  position: absolute;
  color: #f1efe6;
  font-size: 8rem;
  width: 4rem;
  height: 4rem;
}

blockquote:before {
  content: '“';
  left: -4rem;
  top: -2rem;
}

blockquote:after {
  content: '”';
  right: -3rem;
  bottom: 1rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
h1,
h2 {
  line-height: 1.35rem;
}
h2 {
  margin-top: 3rem;
}

h1:after,
h2:after {
  content: '';
  display: block;
  position: relative;
  top: 0.33em;
  border-bottom: 1px solid hsla(0, 0%, 50%, 0.33);
}

/* @media only screen and (min-width: 900px)  { */
/* } */

h3,
h4 {
  display: inline-block;
}
ul {
  padding-left: 1rem;
}

pre {
  max-width: 100%;
  max-height: 300px;
  overflow-y: auto;
}

code {
  word-break: keep-all;
}
a > code {
  font-size: 0.9rem;
}

pre > code {
  max-width: 100%;
  line-height: 1rem;
}

thead th,
tfoot th {
  font-style: bold;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table td {
  border-top: 1px solid #dcdcdc;
}
td,
th {
  border-right: 1px solid #dcdcdc;
  padding: 8px 12px;
}

kbd {
  font-family:
    Lato,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  background-color: #fff;
  border: 1px solid rgba(63, 63, 63, 0.25);
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(63, 63, 63, 0.25);
  color: #333;
  display: inline-block;
  font-size: 0.8em;
  margin: 0 0.1em;
  padding: 0.1em 0.6em;
  white-space: nowrap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  line-height: 1.25rem;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  overflow-x: hidden;
}

#layout {
  display: grid;
  height: 100dvh;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  max-width: var(--breakpoint);
  margin: 0 auto;
}

#layout > section {
  padding-right: 1rem;
  padding-bottom: 10rem;
}

#nav-toggle {
  display: none;
}

.sr-only {
  width: 0px;
  max-width: 0px;
  height: 0px;
  max-height: 0px;
  overflow: hidden;
  position: absolute;
}

@media screen and (max-width: 800px) {
  #layout {
    display: unset;
  }
  #layout > section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #layout > nav {
    position: fixed;
    right: 0;
    padding-right: 1.5rem;
    padding-left: 0.5rem;
    top: 0;
    bottom: 0;
    z-index: var(--z-nav);
    translate: 100%;
    transition: all 0.2s;
    backdrop-filter: blur(250px);
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2));
    border-left: 1px solid color-mix(in oklab, currentColor, rgba(0, 0, 0, 0.1));
  }

  #layout > nav.open {
    translate: 0;
  }

  #nav-toggle {
    display: unset;
  }

  .small\:sr-only {
    width: 0px;
    max-width: 0px;
    height: 0px;
    max-height: 0px;
    overflow: hidden;
    position: absolute;
  }
}

#site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: inherit;
  color: inherit;
  padding: 0.5rem 1rem;
  z-index: var(--z-footer);
  transition: all 0.2s;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2));
  border-top: 1px solid color-mix(in oklab, currentColor, rgba(0, 0, 0, 0.1));
}

#site-footer:before {
  content: ' ';
  z-index: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: currentColor;
  filter: invert(95%);
  z-index: -1;
}

#site-footer .icon-link {
  display: grid;
  grid-auto-flow: column;
  gap: 0.5rem;
  padding: 0 0.125rem;
}
#site-footer .icon-link svg {
  font-size: 1.5rem;
}

#site-footer > div {
  max-width: var(--breakpoint);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#site-footer > div > span {
  display: flex;
  gap: 0.5rem;
}

#site-footer .left a {
  text-decoration: none;
}

nav > ul {
  position: sticky;
  top: 1rem;
  z-index: var(--alt-z-nav);
  height: 100dvh;
  overflow: auto;
  padding-bottom: 5rem;
}
nav ul {
  list-style: none;
  line-height: 1.5rem;
}
nav ul li a {
  white-space: nowrap;
}

nav h2 {
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}


.glimdown-snippet > pre {
  border: 1px solid gray;
  width: 100%;
  display: grid;
}
.glimdown-snippet > pre > code {
  display: contents;
}

.edit-page {
  font-size: 0.8rem;
  display: flex;
  justify-content: flex-end;
  text-decoration: none;
}
.edit-page:after {
  content: '➚';
  padding-left: 0.25rem;
}

.featured-demo .glimdown-render {
  width: 100%;
  max-width: 100%;
  border: 1px solid;
  padding: 5rem;
  box-shadow: inset 0px 3px 8px rgba(0, 0, 0, 0.3);
  background: conic-gradient(at -20% 15%, red 0%, transparent 28%, #1e90ff 72%);
  max-height: 300px;
}

.featured-demo.auto-height .glimdown-render {
  max-height: unset;
}

:root {
  /**
   * Only one breakpoint, because this site
   * is mostly prose, and we don't want too much variation.
   */
  --breakpoint: 1000px;

  /**
   * z-index managed here at a glance
   * so that to learn what the z-indexes are (for debugging),
   * you don't need to read all of the CSS
   */
  --alt-z-nav: 9;
  --z-footer: 10;
  /* on smaller screens the nav is above the footer */
  --z-nav: 20;
}

.typedoc__type-link,
.typedoc__unknown__yield,
.typedoc-intrinsic {
  border: 1px solid #222;
  display: inline-block;
  font-style: italic;
  font-family: monospace;
  margin: 0;
  font-size: 0.75rem;
  padding: 0 0.5rem;
}

.typedoc__type-link {
  padding: 0 0.5rem;
}

.typedoc-declaration-name {
  margin: 0;
  display: inline-block;
  line-height: 1.5rem;
}

.typedoc-heading {
  display: block;
}

.typedoc-property,
.typedoc-component-arg {
  padding: 0 1rem;
}

.typedoc-declaration-signatures {
  list-style: none;
}

.typedoc-named-tuple,
.typedoc-component-arg-info {
  display: flex;
  gap: 0.25rem;
  align-items: baseline;
  justify-content: space-between;
}
.typedoc-component-arg-info > .typedoc-name {
  display: inline-block;
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}

.typedoc-declaration-children {
  list-style: none;
  padding: 0 0.5rem;
}

/**
 *
 * Component Signatures
 *
 */
.typedoc__component-signature__element,
.typedoc__component-signature__block {
  display: block;
  padding: 0 1rem;
}
.typedoc__component-signature__element-type {
  display: flex;
  gap: 0.25rem;
  align-items: baseline;
  justify-content: space-between;
}

.typedoc__component-signature__element-type > .typedoc__name {
  display: inline-block;
  margin: 0;
  line-height: 1.5rem;
}

.typedoc__component-signature__block .typedoc-declaration-name + .typedoc-reference {
  margin-bottom: -0.25rem;
}
.typedoc__component-signature__block > .typedoc-property .typedoc-declaration-children {
  display: grid;
  gap: 0.5rem;
}
.typedoc__component-signature__block
  > .typedoc-property
  > .typedoc-declaration
  > ul.typedoc-declaration-children
  > li
  > .typedoc-declaration {
  border: 1px solid lightgray;
  padding: 0.5rem;
}

.typedoc-component-arg {
  margin-bottom: 0.5rem;
  display: grid;
  gap: 0.25rem;
}
.typedoc-component-arg > .typedoc-name,
.typedoc__component-signature__block > .typedoc__name {
  font-size: 1.2rem;
  overflow-y: hidden;
  overflow-x: hidden;
  overflow: hidden;
  max-height: unset;
}

.typedoc-component-arg .typedoc-rendered-comment p {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

/**
 * References
 */
.typedoc__reference {
}
.typedoc__reference__name {
  display: inline;
  border: 1px solid #222;
  font-style: italic;
  font-family: monospace;
  margin: 0;
  font-size: 0.75rem;
  padding: 0 0.5rem;
}
.typedoc__reference__typeArguments {
  display: inline-grid;
  width: fit-content;
  grid-auto-flow: column;
  gap: 0.5rem;
}
.typedoc__reference__typeArgument {
  border: 1px solid;
}

/**
 * Array formatting
 */
.typedoc__array > div.typedoc-declaration > ul.typedoc-declaration-children {
  border: 1px solid;
  margin: 0;
}

/**
 * Signature / Function Formatting
 */
.typedoc__function__type {
  display: grid;
  gap: 0.25rem;
}
.typedoc__function__parameters {
  margin-left: 1rem;
  display: grid;
  gap: 0.25rem;
}
.typedoc__function__parameter__container {
  border: 1px solid;
  padding: 0.5rem;
}
.typedoc__function__parameter {
  width: fit-content;
  display: grid;
  grid-auto-flow: column;
  gap: 0.5rem;
}
.typedoc__function__parameter__comment {
  /* font-style: italic; */
  /* font-size: 0.75rem; */
}
.typedoc__function__return_type,
.typedoc__function__close {
  display: inline-block;
}
.typedoc__function__return_type {
  margin-left: 1rem;
}
.typedoc__function__parameter__name {
  font-style: italic;
  font-family: monospace;
  font-size: 1rem;
}

/**
 * Literal
 */
.typedoc__literal {
  font-family: monospace;
  font-size: 0.75rem;
}

/**
 * Union
 */
.typedoc__union {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.typedoc__union__type {
  display: inline-flex;
  gap: 0.25rem;
}
.typedoc__union__type::before {
  content: '|';
}
.typedoc__union .typedoc__union__type:first-child::before {
  display: none;
}

.ember-primitives__sticky-footer__wrapper {
  height: 100%;
  overflow: auto;
}
.ember-primitives__sticky-footer__container {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}


/*# sourceMappingURL=chunk.2f1cf9cc28f53f998001.css.map*/