@charset "UTF-8";
@import 'https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap';
:root {
  --font-serif: roboto, helvetica, sans-serif;
  --font-condensed: 'roboto condensed', var(--font-serif);
  --font-size-xs: 0.75rem;
  --font-size-s: 0.875rem;
  --font-size-m: 1rem;
  --font-size-l: 1.125rem;
  --font-size-xl: 1.375rem;
  --font-size-xxl: 1.625rem;
  --font-size-xxxl: 2rem;
  --line-height-s: 1.3;
  --line-height-m: 1.4;
  --line-height-l: 1.6;
  --line-height-xl: 1.875;
  --size: 0.625rem;
  --size-xs: calc(var(--size) * 0.5);
  --size-s: calc(var(--size) * 1);
  --size-m: calc(var(--size) * 1.5);
  --size-l: calc(var(--size) * 2);
  --size-xl: calc(var(--size) * 2.5);
  --size-xxl: calc(var(--size) * 3);
  --size-xxxl: calc(var(--size) * 4);
  --size-page-width: 53rem;
  --border-thin: 0.0625rem;
  --border-medium: 0.125rem;
  --border-thick: 0.1875rem;
  --image-page-bg: url('/images/background_texture.png');
  --color-page-bg: #f9f9f9;
  --color-page-bg-subtle: whitesmoke;
  --color-page-fg: #242527;
  --color-page-fg-meta: #525c63;
  --color-page-fg-subtle: #979aa4;
  --color-link: #006abe;
  --color-link-monster: #bc0f0f;
  --color-link-magic: #704cd9;
}
@media print {
  :root {
    --color-link: var(--color-page-fg);
    --color-link-monster: var(--color-page-fg);
    --color-link-magic: var(--color-page-fg);
  }
}
:root {
  --color-footer-bg: var(--color-page-fg);
  --color-footer-fg: var(--color-page-fg-subtle);
  --color-header-bg: var(--color-page-fg);
  --color-header-fg: var(--color-page-bg);
  --color-header-fg-subtle: var(--color-page-fg-subtle);
  --color-header-logo: red;
  --color-heading-border: #d1a347;
  --color-table-border: #edeae8;
  --color-table-head-border: #d0cac5;
  --color-table-row-bg-dark: #faf8f7;
  --color-table-row-bg-hover: #ebddbb;
  --color-sidebar-bg: #dae4c1;
  --color-sidebar-border-block: #231f20;
  --color-sidebar-border-inline: #b3b3b3;
  --color-sidebar-shadow: #ccc;
}
@media print {
  :root {
    --color-sidebar-bg: var(--color-page-bg-subtle);
  }
}
:root {
  --color-quote-bg: #faf8ec;
  --color-quote-corner: #620000;
  --color-quote-border: #620000;
}
@media print {
  :root {
    --color-quote-bg: var(--color-page-bg-subtle);
    --color-quote-corner: var(--color-page-fg);
    --color-quote-border: var(--color-page-fg);
  }
}
:root {
  --color-torn-paper-bg: transparent;
  --color-torn-paper-border: transparent;
}
@media print {
  :root {
    --color-torn-paper-bg: var(--color-page-bg-subtle);
    --color-torn-paper-border: #b3b3b3;
  }
}

body {
  background: var(--image-page-bg), var(--color-page-bg, white);
  color: var(--color-page-fg, black);
  /* stylelint-disable-next-line selector-no-qualifying-type */
}
body.the-future-hates-you {
  background: url("/images/the-future-hates-you/station-bg.webp") no-repeat center top/100% auto, var(--image-page-bg), var(--color-page-bg, white);
}

a {
  color: var(--color-link);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}
a strong {
  color: var(--color-link-monster);
}
a strong em {
  color: var(--color-link-magic);
}

::selection {
  background: var(--color-page-fg, black);
  color: var(--color-page-bg, white);
}

html {
  box-sizing: border-box;
  height: 100%;
}

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

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100%;
}

.primary-content {
  flex: 1;
  line-height: var(--line-height-xl);
  margin-inline: auto;
  max-width: var(--size-page-width);
  padding-block: var(--size-m);
  padding-inline: var(--size-s);
  width: 100%;
}
@media print {
  .primary-content {
    line-height: var(--line-height-l);
    max-width: none;
  }
}

.header {
  background: var(--color-header-bg, black);
  color: var(--color-header-fg, white);
  flex: none;
  line-height: var(--line-height-s);
}

.header-content {
  font-family: var(--font-condensed);
  font-size: var(--font-size-xl);
  margin-inline: auto;
  max-width: var(--size-page-width);
  padding: var(--size-s);
}
.header-content a {
  color: inherit;
}
.header-content a:hover, .header-content a:focus {
  text-decoration-color: transparent;
}
.header-content strong {
  color: var(--color-header-logo, red);
}
.header-content span {
  color: var(--color-header-fg-subtle, lightgrey);
}

.footer {
  background: var(--color-footer-bg, black);
  color: var(--color-footer-fg, white);
  flex: none;
  line-height: var(--line-height-s);
  margin-top: calc(var(--size-xl) * 3);
}

.footer-content {
  align-items: center;
  display: flex;
  margin-inline: auto;
  max-width: var(--size-page-width);
  padding: var(--size-xxl) var(--size-s);
}
@media print {
  .footer-content {
    padding: 0;
  }
}

.footer-logo {
  flex: 0 0 auto;
  margin-left: var(--size-l);
}
.footer-logo img {
  display: block;
}

.footer-copyright {
  flex: 1;
  font-family: var(--font-condensed);
  font-size: var(--font-size-xs);
}
.footer-copyright p:last-child {
  margin-bottom: 0;
}

body {
  font-family: var(--font-serif);
  line-height: var(--line-height-m);
}

p {
  margin: 0 0 var(--size-m);
}
@media print {
  p {
    margin: 0;
  }
  p + p {
    text-indent: 2em;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--line-height-s);
  margin-block: var(--size-l);
  overflow-wrap: break-word;
}
@media print {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: var(--size-s);
  }
}

h1 {
  font-size: var(--font-size-xxxl);
}

h2 {
  font-size: var(--font-size-xxl);
}

h3 {
  font-size: var(--font-size-xl);
}

h1,
h2,
h3 {
  font-weight: normal;
}
h1::after,
h2::after,
h3::after {
  background-color: var(--color-heading-border, currentColor);
  content: "";
  display: block;
  height: var(--border-thin);
  margin: var(--size-xs) auto 0;
  width: 100%;
}

h1::after {
  background-color: var(--color-h1-border, var(--color-heading-border, currentColor));
  height: var(--border-thick);
}

h2::after {
  background-color: var(--color-h2-border, var(--color-heading-border, currentColor));
  height: var(--border-medium);
}

h3::after {
  background-color: var(--color-h3-border, var(--color-heading-border, currentColor));
}

h4 {
  font-size: var(--font-size-l);
}

h5,
h6 {
  font-size: var(--font-size-m);
}

h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: var(--size-s);
}
@media print {
  h4,
  h5,
  h6 {
    margin-bottom: 0;
  }
}

ol,
ul {
  margin-left: 1.5em;
  padding: 0;
}

@media print {
  ol {
    margin-left: 2em;
  }
}

.adventure-toc h1,
.adventure-toc h2 {
  background-image: url("/images/500darkbar.png");
  background-size: 100% 100%;
  color: white;
  font-family: var(--font-condensed);
  font-size: var(--font-size-l);
  font-weight: bold;
  line-height: var(--line-height-s);
  margin: 0;
  padding: var(--size-m);
  padding-bottom: var(--size-s);
  text-transform: uppercase;
}
.adventure-toc h1::after,
.adventure-toc h2::after {
  display: none;
}
.adventure-toc h2 {
  background-image: url("/images/1180darkbar.png");
  background-size: 100% 100%;
  font-size: var(--font-size-m);
  padding: var(--size-s) var(--size-m);
}

.adventure-toc__intro {
  background: var(--color-toc-bg, white);
  border-inline: var(--border-thin) solid var(--color-toc-border, #e0dcdc);
  margin-bottom: var(--size-xxxl);
  margin-top: var(--size-l);
  padding-inline: var(--size-l);
  position: relative;
}
.adventure-toc__intro::after, .adventure-toc__intro::before {
  background-image: url("/images/border_texture_wide.png");
  background-size: 100% 100%;
  content: "";
  height: var(--size-l);
  left: -1px;
  position: absolute;
  right: -1px;
}
.adventure-toc__intro::before {
  top: calc(var(--size-l) * -1);
  transform: rotateY(180deg);
}
.adventure-toc__intro::after {
  bottom: calc(var(--size-l) * -1);
  transform: rotateX(180deg);
}

.adventure-toc__content {
  background: var(--color-toc-bg, white);
  border-inline: var(--border-thin) solid var(--color-toc-border, #e0dcdc);
  column-rule: var(--border-thin) solid var(--color-toc-border, #e0dcdc);
  columns: auto 15rem;
  line-height: var(--line-height-s);
  margin-bottom: var(--size-m);
  padding: var(--size-l) var(--size-m) var(--size-s);
  position: relative;
}
.adventure-toc__content::after {
  background-image: url("/images/ddb-borders-1180.png");
  background-size: 100% 100%;
  bottom: calc(var(--size-m) * -1);
  content: "";
  height: var(--size-m);
  left: -1px;
  position: absolute;
  right: -1px;
}
.adventure-toc__content a {
  color: var(--color-page-fg);
  display: block;
  margin-bottom: var(--size-xs);
}
.adventure-toc__content a strong {
  color: var(--color-page-fg);
}
.adventure-toc__content h3 {
  font-size: var(--font-size-m);
  font-weight: bold;
  margin-bottom: var(--size-xs);
  margin-top: 0;
}
.adventure-toc__content h3::after {
  display: none;
}
.adventure-toc__content h3 a {
  color: var(--color-toc-heading, #7c1911);
}
.adventure-toc__content ul {
  list-style: none;
  margin-left: var(--size-s);
  margin-top: 0;
  padding: 0;
}
.adventure-toc__content li {
  break-inside: avoid;
}
.adventure-toc__content > * + * {
  margin-top: var(--size-m);
}
.adventure-toc__content p {
  margin: 0;
}

.compendium-disclaimer {
  background: var(--color-page-bg);
  border: var(--border-thin) solid var(--color-heading-border);
  border-radius: 3px;
  color: var(--color-page-fg-meta);
  font-size: var(--font-size-xs);
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.3px;
  margin-top: var(--size-xxxl);
  padding: var(--size-s) var(--size-l);
  text-transform: uppercase;
}
.compendium-disclaimer > *:last-child {
  margin-bottom: 0;
}

.view-cover-art {
  background: #47d18c;
  border-radius: 0.25rem;
  color: white;
  display: block;
  float: right;
  font-family: var(--font-condensed);
  font-size: var(--font-size-s);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1em;
  margin-left: 2em;
  padding: var(--size-s) var(--size-l);
  text-decoration: none;
  text-transform: uppercase;
}
.view-cover-art:hover, .view-cover-art:focus {
  background: #70dba6;
  text-decoration: none;
}

.article-header {
  margin-bottom: var(--size-s);
}

.adventure-nav {
  background: var(--color-nav-bg, white);
  border: var(--border-thin) solid var(--color-nav-border, #cbc6c3);
  color: var(--color-nav-fg, #878787);
  display: flex;
  font-family: var(--font-condensed);
  font-size: var(--font-size-s);
  font-weight: bold;
  line-height: 1.25;
  padding: var(--size-s);
  text-transform: uppercase;
}
.adventure-nav .is-disabled {
  opacity: 0.25;
}

.adventure-nav__item {
  background-repeat: no-repeat;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.adventure-nav__link {
  color: var(--color-nav-link, inherit);
}
.adventure-nav__link:hover, .adventure-nav__link:focus {
  color: var(--color-nav-link-hover, #47d18c);
  text-decoration: none;
}

.adventure-nav__prev {
  background-image: url("/images/chevron-left-green.svg");
  padding-left: var(--size-m);
}
.adventure-nav__prev.is-disabled {
  background-image: url("/images/chevron-left-disabled.svg");
}

.adventure-nav__next {
  background-image: url("/images/chevron-right-green.svg");
  background-position: right;
  padding-right: var(--size-m);
  text-align: right;
}
.adventure-nav__next.is-disabled {
  background-image: url("/images/chevron-right-disabled.svg");
}

.adventure-nav__toc {
  text-align: center;
}
.adventure-nav__toc .adventure-nav__link {
  background-image: url("/images/comp-icon.svg");
  background-repeat: no-repeat;
  display: inline-block;
  padding-inline: var(--size-l);
}

.nav-back-to-top {
  bottom: var(--size-s);
  position: fixed;
  right: var(--size-l);
}

.nav-back-to-top__link {
  background-color: var(--color-top-link, #47d18c);
  background-image: url("/images/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  display: block;
  height: var(--size-xxxl);
  transition: transform 0.2s, background-color 0.2s;
  width: var(--size-xxxl);
}
.nav-back-to-top__link:hover, .nav-back-to-top__link:focus {
  background-color: var(--color-top-link-hover, #3dbe7e);
  transform: translateY(-3px);
}

.sr-only {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  break-inside: avoid;
  margin: var(--size-l) 0;
}
figure img {
  display: block;
}

figcaption {
  font-size: var(--font-size-s);
  font-style: italic;
  font-weight: bold;
  margin-block: var(--size-s);
  text-align: center;
  text-transform: uppercase;
}

.compendium-image-right {
  float: right;
  margin-left: var(--size-s);
  max-width: calc(var(--size-page-width) * 0.4);
  position: relative;
  z-index: 1;
}
@media print {
  .compendium-image-right {
    float: none;
    margin-left: 0;
    max-width: 100%;
  }
}

.npc-portrait::before, .npc-portrait::after,
.npc-portrait__inner::before,
.npc-portrait__inner::after {
  border: var(--border-medium) solid var(--color-heading-border, currentColor);
  color: var(--color-heading-border, currentColor);
  content: "•";
  font-size: var(--size-m);
  height: var(--size-m);
  line-height: 12px;
  position: absolute;
  text-align: center;
  width: var(--size-m);
}
.npc-portrait::before,
.npc-portrait__inner::before {
  top: var(--border-thick);
}
.npc-portrait::after,
.npc-portrait__inner::after {
  bottom: var(--border-thick);
}

.npc-portrait {
  border: var(--border-medium) solid var(--color-heading-border, currentColor);
  padding: var(--border-thick);
  position: relative;
}
@media print {
  .npc-portrait {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
}
.npc-portrait::before, .npc-portrait::after {
  left: var(--border-thick);
}
.npc-portrait img {
  display: block;
}

.npc-portrait__inner {
  background: radial-gradient(circle, #122b3e, #066587);
  border: var(--border-medium) solid var(--color-heading-border, currentColor);
}
.npc-portrait__inner::before, .npc-portrait__inner::after {
  right: var(--border-thick);
}

@media print {
  .full-page-image {
    height: 9in;
    width: 100%;
  }
  .full-page-image.shorter {
    height: 8.5in;
  }
  .full-page-image img {
    height: auto;
    margin: auto;
    max-height: 100%;
    width: auto;
  }
}

@media print {
  .full-bleed-image {
    width: 100%;
  }
  .full-bleed-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
}

blockquote {
  background-color: var(--color-quote-bg, whitesmoke);
  border-color: var(--color-quote-border, currentcolor);
  border-left: var(--border-thin) solid;
  border-right: var(--border-thin) solid;
  break-inside: avoid;
  color: var(--color-theme-page-fg);
  font-size: var(--font-size-s);
  line-height: var(--line-height-l);
  margin: var(--size-xl) 0 var(--size-xxl);
  padding: var(--size-l) var(--size-xl);
  position: relative;
}
@media print {
  blockquote {
    padding: var(--size-m);
  }
}
blockquote::before, blockquote::after,
blockquote p:first-of-type::before,
blockquote p:last-of-type::after {
  background-color: var(--color-quote-corner, currentcolor);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  content: "";
  height: 8px;
  position: absolute;
  width: 8px;
}
blockquote::before, blockquote::after {
  background-position: left;
  left: -4px;
}
blockquote p:first-of-type::before,
blockquote p:last-of-type::after {
  background-position: right;
  right: -4px;
}
blockquote::before,
blockquote p:first-of-type::before {
  top: -4px;
}
blockquote::after,
blockquote p:last-of-type::after {
  bottom: -4px;
}
blockquote :last-child {
  margin-bottom: 0;
}
blockquote a {
  color: var(--color-link);
}

.text--rules-sidebar {
  background-color: var(--color-sidebar-bg, whitesmoke);
  border-block-color: var(--color-sidebar-border-block, currentcolor);
  border-inline-color: var(--color-sidebar-border-inline, lightgrey);
  border-style: solid;
  border-width: var(--border-thick) var(--border-thin);
  break-inside: avoid;
  color: var(--color-theme-page-fg);
  filter: drop-shadow(0 var(--size-xs) 8px var(--color-sidebar-shadow, silver));
  font-size: var(--font-size-s);
  line-height: var(--line-height-l);
  margin: var(--size-xxl) var(--size-xs);
  padding: var(--size-xl) var(--size-xxl);
  position: relative;
}
.text--rules-sidebar :last-child {
  margin-bottom: 0;
}
@media print {
  .text--rules-sidebar {
    filter: none;
    padding: var(--size-m);
  }
}
.text--rules-sidebar {
  --foldover-color: var(--color-sidebar-border-block, currentcolor);
  --foldover-height: 5px;
  --foldover-width: 8px;
  --foldover-offset-block: calc(
    (var(--foldover-height) * 2 + var(--border-thick)) * -1
  );
  --foldover-offset-inline: calc(var(--border-thin) * -1);
}
@media print {
  .text--rules-sidebar {
    --foldover-height: 2px;
    --foldover-width: 6px;
  }
}
.text--rules-sidebar::before, .text--rules-sidebar::after,
.text--rules-sidebar > :first-child::before,
.text--rules-sidebar > :first-child::after {
  border-color: transparent;
  border-style: solid;
  border-width: var(--foldover-height) var(--foldover-width);
  content: "";
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}
.text--rules-sidebar::before, .text--rules-sidebar::after {
  border-bottom-color: var(--foldover-color);
  top: var(--foldover-offset-block);
}
.text--rules-sidebar > :first-child::before,
.text--rules-sidebar > :first-child::after {
  border-top-color: var(--foldover-color);
  bottom: var(--foldover-offset-block);
}
.text--rules-sidebar::before,
.text--rules-sidebar > :first-child::before {
  border-right-color: var(--foldover-color);
  left: var(--foldover-offset-inline);
}
.text--rules-sidebar::after,
.text--rules-sidebar > :first-child::after {
  border-left-color: var(--foldover-color);
  right: var(--foldover-offset-inline);
}
.text--rules-sidebar p:first-child,
.text--rules-sidebar h4 {
  font-size: var(--font-size-m);
  font-weight: bold;
  margin-top: 0;
  text-transform: uppercase;
}

.sources-listing {
  display: grid;
  flex-wrap: wrap;
  gap: var(--size-l);
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin: 0 auto;
  padding: 0;
}

.sources-listing--item-wrapper {
  list-style: none;
}

.sources-listing--item {
  aspect-ratio: 1;
  border: var(--border-thin) solid rgba(0, 0, 0, 0.6);
  display: block;
  position: relative;
}

.sources-listing--item--avatar {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  width: 100%;
}

.sources-listing--item--title {
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  color: white;
  font-size: var(--font-size-s);
  left: 0;
  padding: var(--size-s);
  position: absolute;
  right: 0;
  text-align: center;
}

.sources-listing--item--version {
  background: rgba(0, 0, 0, 0.5);
  border-bottom-right-radius: 0.25em;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-condensed);
  font-size: var(--font-size-xs);
  left: 0;
  line-height: 1.2;
  padding: 0.33em 0.75em;
  position: absolute;
  top: 0;
}

.stat-block {
  background: var(--color-page-bg);
  border: var(--border-thin) solid var(--color-table-head-border);
  box-shadow: 0 0 var(--size-xs) var(--color-page-fg-subtle);
  break-inside: avoid;
  clear: both;
  font-size: var(--font-size-s);
  margin: var(--size-l) 0;
  padding: var(--size-m);
  position: relative;
}
@media (width >= 768px) {
  .stat-block {
    column-count: 2;
  }
}
@media print and (width >= 768px) {
  .stat-block {
    column-count: 1;
  }
}
@media print {
  .stat-block {
    background: var(--color-table-row-bg-dark, whitesmoke);
    border: var(--border-thin) solid var(--color-table-border, lightgrey);
    border-bottom: var(--border-thick) solid var(--color-table-head-border, darkgrey);
    border-top: var(--border-thick) solid var(--color-table-head-border, darkgrey);
    box-shadow: none;
  }
}
.stat-block::before, .stat-block::after {
  background-image: url("/images/MMStatBar_lrg.jpg");
  background-position: center;
  background-size: 100% 100%;
  content: "";
  display: inline-block;
  height: 4px;
  left: -3px;
  position: absolute;
  right: -3px;
}
@media print {
  .stat-block::before, .stat-block::after {
    display: none;
  }
}
.stat-block::before {
  top: -3px;
}
.stat-block::after {
  bottom: -3px;
}
.stat-block > :first-child {
  margin-top: 0;
}
.stat-block > :last-child {
  margin-bottom: 0;
}
.stat-block h4 {
  color: var(--color-link-monster);
  font-family: var(--font-condensed);
  font-size: var(--font-size-l);
  margin-bottom: 0;
  margin-right: var(--size-s);
  text-transform: uppercase;
}
.stat-block h5 {
  border-bottom: var(--border-thin) solid var(--color-link-monster);
  font-family: var(--font-condensed);
  font-size: var(--font-size-m);
  padding-bottom: var(--border-medium);
}
.stat-block p {
  margin-bottom: var(--size-s);
}
@media print {
  .stat-block p {
    text-indent: 0;
  }
}
.stat-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.stat-block hr {
  border: 0;
  border-top: var(--border-medium) solid var(--color-link-monster);
  margin: var(--size-s) 0;
}

.stat-block__ability-scores ul {
  border-bottom: var(--border-medium) solid var(--color-link-monster);
  border-top: var(--border-medium) solid var(--color-link-monster);
  break-inside: avoid;
  display: flex;
  flex-wrap: wrap;
  margin: var(--size-s) 0;
}
.stat-block__ability-scores li {
  flex: 1;
  padding: var(--size-s) 0;
  text-align: center;
}
.stat-block__ability-scores strong {
  display: block;
}

@media print {
  .stat-block__spells {
    margin-bottom: var(--size-s);
  }
  .stat-block__spells p {
    margin: 0;
  }
}

table {
  background: var(--color-table-bg, white);
  border: var(--border-thin) solid var(--color-table-border, lightgrey);
  border-collapse: collapse;
  border-spacing: 0;
  break-inside: avoid;
  margin: var(--size-l) 0 var(--size-xxxl);
  width: 100%;
}
@media print {
  table {
    border-width: 0;
    margin-top: var(--size-s);
  }
}

.primary-content table {
  line-height: var(--line-height-m);
}

caption {
  font-size: var(--font-size-m);
  font-weight: bold;
  line-height: var(--line-height-s);
  margin-bottom: var(--size-m);
  margin-top: var(--size-s);
  text-align: left;
}

thead {
  border-bottom: var(--border-thick) solid var(--color-table-head-border, darkgrey);
}
thead tr {
  background: var(--color-table-head-bg, white);
  color: var(--color-table-head-fg, currentColor);
}

tbody tr {
  background: var(--color-table-row-bg-light, white);
  color: var(--color-table-row-fg-light, currentColor);
  transition: background-color 0.3s;
}
tbody tr:nth-child(odd) {
  background: var(--color-table-row-bg-dark, whitesmoke);
  color: var(--color-table-row-fg-dark, currentColor);
}
tbody tr:hover, tbody tr:focus {
  background: var(--color-table-row-bg-hover, beige);
  color: var(--color-table-row-fg-hover, currentColor);
}

th,
td {
  border: var(--border-thin) solid var(--color-table-border, lightgray);
  font-size: var(--font-size-s);
  overflow-wrap: break-word;
  padding: var(--size-s) var(--size-l);
  text-align: center;
  vertical-align: top;
}
@media print {
  th,
  td {
    border-width: 0;
    padding: var(--size-xs);
    text-align: left;
  }
}
th a,
td a {
  color: var(--color-link);
}
th p,
td p {
  margin: 0;
}
th p + p,
td p + p {
  margin-top: var(--size-s);
}

th {
  font-weight: bold;
}

.block-torn-paper {
  background: var(--color-torn-paper-bg, white);
  border: solid var(--color-torn-paper-border);
  border-image-repeat: repeat;
  border-image-slice: 20 10 20 10 fill;
  border-image-source: var(--theme-quote-border, url("/images/5f1f1d66d16be68cf09d6ca172f8df92.png"));
  border-width: var(--size-l) var(--size-s);
  break-inside: avoid;
  color: var(--color-theme-quote-fg, currentcolor);
  font-size: var(--font-size-s);
  line-height: var(--line-height-l);
  margin: var(--size-xl) 0 var(--size-xxl);
  padding: var(--size-s);
  position: relative;
}
@media print {
  .block-torn-paper {
    border-image: none;
    border-radius: 1em;
    border-width: var(--border-thin);
    padding: var(--size-m);
  }
}
.block-torn-paper :last-child {
  margin-bottom: 0;
}
.block-torn-paper a {
  color: var(--color-link);
}

/* stylelint-disable selector-no-qualifying-type */
@media print {
  :root {
    --page-margin-block: 0.5in;
    --page-margin-inline: 0.75in;
  }
  @page {
    margin: var(--page-margin-block) var(--page-margin-inline);
  }
  .new-page {
    break-before: page;
  }
  .header,
  .footer,
  .article-header {
    display: none;
  }
  html {
    font-size: 12px;
  }
  body {
    background: none;
    color: black;
  }
  .primary-content {
    padding: 0;
  }
  h1 {
    margin-top: 0;
  }
  p {
    orphans: 2;
    widows: 2;
  }
  /**
   * 1. If we don't reset the width like this then the article will be too wide.
   *    This has something to do with the full-bleed image on page one.
   */
  article {
    break-before: page;
    display: block;
    margin-inline: auto;
  }
  .columns {
    column-gap: var(--size-l);
    columns: 2;
    margin-top: var(--size-xl);
  }
  .columns > :first-child {
    margin-top: 0;
  }
  .column-break {
    break-after: column;
  }
  .title-page {
    display: flex;
    flex-direction: column;
    height: calc(10.75in - var(--page-margin-block) * 2);
    justify-content: space-between;
  }
  .title-page p + p {
    margin-top: 0.5em;
    text-indent: 0;
  }
  .title-page__description {
    font-size: larger;
  }
  .title-page__meta {
    font-size: var(--font-size-xl);
    font-style: italic;
    margin: 1em 0;
    text-align: center;
  }
  .title-page__credits {
    font-size: var(--font-size-s);
  }
  .title-page__credits ul {
    columns: 2;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .title-page__credits em {
    display: block;
    margin-top: 1em;
  }
  .title-page__disclaimer {
    font-size: var(--font-size-xs);
    margin: 0.5em 0;
  }
  .float-top {
    float: top;
  }
  .float-bottom {
    float: bottom;
  }
}

/*# sourceMappingURL=style.css.map */
