/* Print Stylesheet — hides non-essential UI elements */
@media print {
  .site-header,
  .site-footer,
  nav,
  .nav,
  .cookie-banner,
  .cookie-consent,
  #cookieBanner,
  #cookie-banner,
  .sticky-cta,
  .mobile-cta,
  #btt,
  .toc-widget,
  .share-buttons,
  .exit-popup,
  #exitPopup,
  .cta-box,
  [class*="cta"],
  button:not([type="submit"]),
  .nav__toggle,
  .back-to-top,
  script,
  iframe,
  .newsletter-signup,
  .subscribe-form {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #555;
  }

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

  table, img, figure {
    page-break-inside: avoid;
  }

  .container, .article-body, main, article {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
