/* ==========================================================================
   Print — 08 §8.1 (last layer in the cascade order).
   !important is a documented exception for print styles (08 §8.8).
   ========================================================================== */

@media print {
  .site-header,
  .site-footer,
  .skip-link,
  .mobile-nav,
  .menu-toggle {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt;
  }

  .container {
    max-width: none;
    padding-inline: 0;
  }

  /* Make link destinations readable on paper, but not for in-page anchors. */
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    word-break: break-all;
  }

  img {
    break-inside: avoid;
  }

  h1,
  h2,
  h3 {
    break-after: avoid;
  }
}
