/* stylelint-disable scss/no-global-function-names */
article {
  background-color: hsl(var(--root-light-hsl));
  color: hsl(var(--root-dark-hsl));
  padding: 1rem;
  border-radius: var(--figure-rounded-radius);
}
article ::selection {
  color: hsl(var(--root-light-hsl));
  background: hsl(var(--root-dark-hsl));
}
article .logo {
  max-width: 15vw;
}
article .body {
  line-height: 1.3;
  max-width: 65ch;
  margin: 2rem auto;
}
article .body > * + * {
  margin-block-start: var(--flow-space, 1em);
}
article .body :is(h1, h2, h3, blockquote) {
  --flow-space: 2em;
  color: var(--iconcolor);
  filter: brightness(0.75);
}
article .body :is(h1, h2, h3) + * {
  --flow-space: 0.5em;
}
article .body ul > li + li {
  margin-top: 0.2em;
}
article .body blockquote {
  font-size: var(--scale1);
  font-style: italic;
  max-width: 40ch;
}
article .body a {
  text-decoration: underline;
  font-weight: bold;
}
article .kirbygroup {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--columns, 2), 1fr);
  gap: 1em;
  margin-top: 1em;
}
@media screen and (max-width: 640px) {
  article .kirbygroup {
    grid-template-columns: 1fr;
  }
}
article div.video {
  padding-bottom: 1em;
}
article div.video > figure {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
}
article div.video > figure iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

article.notext .cover > img {
  margin: 0 auto;
}

.pages-nav {
  padding-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(10px, 1fr));
}
.pages-nav .back {
  text-align: center;
}
.pages-nav .next {
  text-align: right;
}

hr {
  display: none;
}
/*# sourceMappingURL=document.css.map */
