:root {
  --top-margin-scaling-factor: 1.5;
  --bottom-margin-scaling-factor: 0;
  --use-margin: 1;
  --rounding-value: 4;
  --base-font-size: 16;
  --text-font-size: var(--fs-p-mobile);
  --base-line-height: 1.5;
}

@supports (margin-top: round(up, 10px, 4px)) {
  h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, li, pre, summary, details, address, blockquote, figcaption, legend, label {
    --calced-font-size: calc((var(--text-font-size) / var(--base-font-size)) * 1rem);
    font-size: var(--calced-font-size);
    --calced-margin-top: calc(
      var(--use-margin, 1) *
      (
        round(
          up,
          (var(--text-font-size) * var(--top-margin-scaling-factor)),
          var(--rounding-value))
        / var(--base-font-size)
      ) * 1rem /* Apply rem units */
    );
    margin-top: var(--calced-margin-top);
    --calced-margin-bottom: calc(
      var(--use-margin, 1) *
      (
        round(
          up,
          (var(--text-font-size) * var(--bottom-margin-scaling-factor)),
          var(--rounding-value))
        / var(--base-font-size)
      ) * 1rem
    );
    margin-bottom: var(--calced-margin-bottom);
    --calced-line-height: calc(
      ((round(
        up,
        var(--text-font-size) * var(--text-line-height, --base-line-height),
        var(--rounding-value)))
      / var(--base-font-size)
      ) * 1rem
    );
    line-height: var(--calced-line-height);
  }
}
@supports not (margin-top: round(up, 10px, 4px)) {
  h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, li, pre, summary, details, address, blockquote, figcaption, legend, label {
    --calced-font-size: calc((var(--text-font-size) / var(--base-font-size)) * 1rem);
    font-size: var(--calced-font-size);
    --calced-margin-top: calc(
      var(--use-margin, 1) *
        (
          (var(--text-font-size) * var(--top-margin-scaling-factor)) /
          var(--base-font-size)
        ) *
        1rem
    );
    margin-top: var(--calced-margin-top);
    --calced-margin-bottom: calc(
      var(--use-margin, 1) *
        (
          (var(--text-font-size) * var(--bottom-margin-scaling-factor)) /
          var(--base-font-size)
        ) *
        1rem
    );
    margin-bottom: var(--calced-margin-bottom);
    --calced-line-height: calc(
      (
        (var(--text-font-size) * var(--text-line-height, --base-line-height)) /
        var(--base-font-size)
      ) *
      1rem
    );
    line-height: var(--calced-line-height);
  }
}
body {
  --text-line-height: 1.5;
  font-size: calc(var(--text-font-size) / var(--base-font-size) * 1rem);
}

:where(h1, h2, h3, h4, h5, h6) {
  font-weight: 900;
  letter-spacing: -0.02ch;
}

h1, h2, h3, h4, h5 {
  --text-line-height: 0.9;
}

h1:where(.main-content h1:not(.surface--contrast h1)),
h2:where(.main-content h2:not(.surface--contrast h2)),
h3:where(.main-content h3:not(.surface--contrast h3)),
h5:where(.main-content h5:not(.surface--contrast h5)),
h6:where(.main-content h6:not(.surface--contrast h6)) {
  color: var(--base-heading-color);
}

h4:where(.main-content h4:not(.surface--contrast h4)) {
  color: var(--color-primary);
}

h1 {
  --text-font-size: var(--fs-h1-mobile);
  --top-margin-scaling-factor: 1.2;
}

h2 {
  --text-font-size: var(--fs-h2-mobile);
  --bottom-margin-scaling-factor: 0.75;
}

h3 {
  --text-font-size: var(--fs-h3-mobile);
}

h4 {
  --text-font-size: var(--fs-h4-mobile);
}

h5 {
  --text-font-size: var(--fs-h5-mobile);
}

h6 {
  --top-margin-scaling-factor: 1.25;
  --text-line-height: 1.2;
  --text-font-size: var(--fs-h6-mobile);
}

p {
  --top-margin-scaling-factor: 1;
}

h5 + p,
h6 + p {
  --top-margin-scaling-factor: 0.5;
}

li {
  --top-margin-scaling-factor: 0.5;
}

code {
  --text-line-height: 1;
  font-weight: bold;
}

pre {
  background: rgba(0, 0, 0, 0.1);
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
  white-space: pre;
}

address {
  font-style: normal;
}

a:where(.text-output a:not(.surface--contrast a)) {
  color: var(--color-primary);
}

.main-content a:where(p:not(.intro):not(.snippet) a, li a) {
  font-weight: 500;
}

blockquote {
  position: relative;
  margin-block: var(--module-spacing);
}

p:where(blockquote p) {
  font-weight: 500;
}

p:where(blockquote p:last-child:not(:first-child):not(.surface--contrast blockquote p)) {
  color: var(--color-primary);
}

p:where(blockquote p:not(:last-child)),
p:where(blockquote p:first-child:last-child) {
  --text-line-height: 1.2;
  --text-font-size: var(--fs-blockquote-mobile);
}

p:where(blockquote p:not(:last-child)),
p:where(blockquote p:first-child:last-child),
blockquote p:not(:last-child) a,
blockquote p:first-child:last-child a {
  font-weight: 900;
}

blockquote p:first-child {
  padding-top: 3rem;
}

blockquote::before {
  content: "";
  position: absolute;
  color: var(--text-secondary-color);
  left: 0;
  top: 0;
  width: 58px;
  height: 29px;
  background-size: 58px 29px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50.1'%3E%3Cpath d='M0 50.1h35.8L46.3 0h-27L0 50.1zm53.7 0h35.8L100 0H73L53.7 50.1z'/%3E%3C/svg%3E");
  mask-type: alpha;
  mask-repeat: no-repeat;
  background-color: currentColor;
  background-position: center center;
}

.intro,
.snippet {
  --text-font-size: var(--fs-intro-mobile);
  --text-line-height: 1.3;
}

.snippet {
  --text-font-size: var(--fs-snippet-mobile);
  --text-line-height: 1.2;
  margin-block: var(--module-spacing);
  padding-left: var(--snippet-line-distance);
  position: relative;
  font-weight: 900;
}

.snippet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 0.25rem;
  background: currentcolor;
}

.snippet:where(.text-output .snippet:not(.surface--contrast .snippet))::before {
  background: var(--color-primary);
}

small,
.small {
  --text-font-size: 13;
}

:where(sup, sub) {
  font-size: 50%;
}

.page__title {
  --bottom-margin-scaling-factor: 0.6;
  margin-top: 30px;
}

.page__meta {
  font-weight: 600;
}

.image-caption {
  margin: 0;
  padding-top: 1rem;
  text-align: right;
}

.image-caption p {
  margin: 0;
  font-weight: 500;
  --text-font-size: 14;
}

@media (min-width: 600px) {
  .page__title {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  h1 {
    --text-font-size: var(--fs-h1-tablet);
  }
  h2 {
    --text-font-size: var(--fs-h2-tablet);
  }
  h3 {
    --text-font-size: var(--fs-h3-tablet);
  }
  h4 {
    --text-font-size: var(--fs-h4-tablet);
  }
  h5 {
    --text-font-size: var(--fs-h5-tablet);
  }
  h6 {
    --text-font-size: var(--fs-h6-tablet);
  }
  body {
    --text-font-size: var(--fs-p-tablet);
  }
  small,
  .small {
    --text-font-size: 14;
  }
  .image-caption p {
    --text-font-size: 15;
  }
  p:where(blockquote p:not(:last-child)),
  p:where(blockquote p:first-child:last-child) {
    --text-font-size: var(--fs-blockquote-tablet);
  }
  blockquote p {
    width: 85%;
  }
  blockquote p:first-child {
    padding-top: 4rem;
  }
  blockquote::before {
    top: 0;
    width: 68px;
    height: 34px;
    background-size: 68px 34px;
  }
  .main-content-centered blockquote {
    width: 100%;
  }
  .intro {
    --text-font-size: var(--fs-intro-tablet);
  }
  .snippet {
    --text-font-size: var(--fs-snippet-tablet);
    --top-margin-scaling-factor: 2.1;
    --bottom-margin-scaling-factor: 2.1;
  }
}
@media (min-width: 960px) {
  h1 {
    --text-font-size: var(--fs-h1-desktop);
  }
  h2 {
    --text-font-size: var(--fs-h2-desktop);
  }
  h3 {
    --text-font-size: var(--fs-h3-desktop);
  }
  h4 {
    --text-font-size: var(--fs-h4-desktop);
  }
  h5 {
    --text-font-size: var(--fs-h5-desktop);
  }
  h6 {
    --text-font-size: var(--fs-h6-desktop);
  }
  body {
    --text-font-size: var(--fs-p-desktop);
    --text-line-height: 1.4;
  }
  small,
  .small {
    --text-font-size: 15;
  }
  .image-caption p {
    --text-font-size: 16;
  }
  p:where(blockquote p:not(:last-child)),
  p:where(blockquote p:first-child:last-child) {
    --text-font-size: var(--fs-blockquote-desktop);
    --text-line-height: 1.1;
  }
  blockquote p:first-child {
    padding-top: 5rem;
  }
  blockquote::before {
    top: 0;
    width: 76px;
    height: 38px;
    background-size: 78px 38px;
  }
  .intro {
    --text-font-size: var(--fs-intro-desktop);
  }
  .snippet {
    --text-font-size: var(--fs-snippet-desktop);
    --text-line-height: 1.1;
  }
  .page__title {
    margin-top: 100px;
  }
}

/*# sourceMappingURL=/assets/application/base/typescale-cbb46c02.css.map */
