@media print {
  header {
    display: none;
  }
  #navOpener,#navToggleClose, nav {
    display: none;
  }
  main {
    padding-top: 0;
  }
  footer {
    border-top: 0.125rem solid black;
    box-shadow: none;
  }
  article {
    margin: 0;
  }
  article>*:first-of-type {
    margin-top: 0 !important;
  }
  article+article {
    margin-top: var(--article-margin-v);
  }
  figure {
    break-inside: avoid;
  }
  figure figcaption:not(:empty) {
    margin-bottom: calc(-1 * var(--fig-padding));
  }
  multi-col {
    break-inside: avoid-page;
  }
  h2 {
    break-before: page;
  }
  article:first-of-type h2 {
    break-before: avoid;
  }
  h3,h4 {
    page-break-after: avoid;
    break-after: avoid;
  }
  article+article::before {
    display: none;
  }
  figcaption {
    background: transparent;
    color: var(--BWfg);
    padding: 0;
    line-height: unset;
  }
  figcaption a {
    color: var(--BWfg);
    text-decoration: none;
  }
  .print {
    display: unset;
  }
  .no-print {
    display: none;
  }
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
}