/* ============================================
   Antitrope — Print Styles
   Faithful to serif monograph tradition.
   ============================================ */

@media print {

  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
    line-height: 1.45;
    max-width: none;
    margin: 2cm;
  }

  a {
    color: black;
    text-decoration: none;
  }

  nav, header, footer {
    display: none;
  }

  pre, code {
    background: #f5f5f5 !important;
    border: 1px solid #ddd;
    font-size: 10pt;
  }

  img {
    max-width: 100%;
    break-inside: avoid;
  }

  h1 {
    page-break-before: always;
  }

}