/* ================= PRINT RESET ================= */
@media print {
  * {
    background: none !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
  }

  /* ================= HIDE NON-ESSENTIAL ================= */
  .site-header,
  .site-footer,
  nav,
  button,
  .no-print {
    display: none !important;
  }

  /* ================= PAGE LAYOUT ================= */
  .content {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  section {
    page-break-inside: avoid;
    margin-bottom: 24px;
  }

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

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 18pt;
    border-bottom: 1px solid #000;
    padding-bottom: 4px;
  }

  p,
  li {
    font-size: 11.5pt;
  }

  ul {
    padding-left: 18px;
  }

  /* ================= LINKS ================= */
  a {
    color: #000;
    text-decoration: none;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
  }

  /* ================= PAGE NUMBERS ================= */
  @page {
    margin: 20mm;
  }
}