/* assets/css/print.css */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    opacity: 0.6;
  }

  img {
    page-break-inside: avoid;
  }

  blockquote,
  pre {
    page-break-inside: avoid;
  }

  h1, h2, h3,
  p, ul, ol {
    orphans: 3;
    widows: 3;
  }

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