/* HDL Group — print stylesheet
   Pure static CSS, no JS, no toggle. Applies automatically via
   <link media="print">. Hides navigation/UI chrome, keeps the actual
   book/article content readable on paper. */

@media print {
  nav, header .site-nav, .site-header, footer, .site-footer,
  #hdl-search, .search-bar, .search-toggle,
  .cookie-consent, .newsletter-signup, .newsletter-form,
  .feedback-widget, .reading-time-badge, .hdl-badge,
  .hdl-save-btn, .hdl-share-btn, .hdl-cart-interest,
  .related-links, .more-from-hdl, .breadcrumb-nav,
  .dark-mode-toggle, .dyslexia-toggle, .lang-switcher,
  .skip-link, a.btn-secondary, a.featured-link,
  .concierge-widget, .concierge-launcher {
    display: none !important;
  }

  * {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    max-width: 100%;
  }

  h1, h2, h3 { page-break-after: avoid; }
  p, li { orphans: 3; widows: 3; }
  img { max-width: 100% !important; page-break-inside: avoid; }

  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #444 !important;
  }

  a[href^="#"]:after { content: ""; }
}
