/* =====================================================================
   Master Theme – Print Stylesheet
   Purpose: Optimize layout and readability for printing
   ===================================================================== */

@media print {
  /* Reset colors and backgrounds */
  * {
    background: transparent !important;
    color: #000000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* Hide elements not needed in print */
  .site-header,
  .site-footer,
  .sidebar,
  .navigation,
  .primary-navigation,
  .offcanvas,
  .comments-area,
  .no-print {
    display: none !important;
  }

  /* Base typography */
  body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 12pt;
    line-height: 1.6;
    margin: 1cm;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    font-weight: bold;
    color: #000000 !important;
  }

  p, blockquote, table {
    orphans: 3;
    widows: 3;
  }

  blockquote, table {
    page-break-inside: avoid;
  }

  a,
  a:visited {
    color: #000000 !important;
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 90%;
  }

  /* Images */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  /* Tables */
  table {
    border-collapse: collapse;
    width: 100%;
  }

  th, td {
    border: 1px solid #000;
    padding: 0.25em;
  }

  /* Page breaks */
  article,
  section {
    page-break-after: always;
  }
}
