@media print {
  /* Hide non-content elements */
  nav,
  footer,
  .site-header,
  .cta-section,
  .news-section,
  iframe,
  video,
  .cookie-banner,
  .mobile-menu,
  .nav-drawer {
    display: none !important;
  }

  /* Force black on white */
  body {
    background: white !important;
    color: black !important;
  }

  /* Show URLs after links */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }

  /* Don't show URL for internal/anchor links */
  a[href^="#"]::after,
  a[href^="/"]::after {
    content: "";
  }
}
