@media print {
  /* Hide header, footer, navigation menus */
  header, .site-header, .site-nav, .site-footer, .sidebar, .topbar {
    display: none !important;
  }

  /* Make main content full width on print */
  main, .content, .article-body, .site-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 1cm !important;
  }

  /* Force black text and remove background colors / images */
  body, main, .content, p, h1, h2, h3, li {
    color: #000 !important;
    background: none !important;
  }

  /* Avoid awkward page breaks */
  h1, h2, h3, p, pre, table, img {
    page-break-inside: avoid;
  }

  /* Optional: adjust font size for printing */
  body, .article-body, p {
    font-size: 12pt !important;
    line-height: 1.4 !important;
  }

  footer,
  .site-footer,
  .scroll-footer,
  .viewport-footer {
    display: none !important;
  }
}