/* Print stylesheet for the investor decks (/deck, /deck2, /deck3).
   Loaded with media="print" so it never affects screen rendering. */

@media print {
  /* Keep the decks' dark/teal/gold grounds when the browser allows it. */
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Scroll-reveal animations park content at opacity 0 / translated until
     observed; print has no scrolling, so force everything visible. */
  [style*="opacity:0;"],
  [style*="opacity: 0;"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* One deck page per printed sheet. */
  section {
    page-break-after: always;
    break-inside: avoid;
    min-height: auto !important;
  }
  section:last-of-type {
    page-break-after: auto;
  }

  /* Screen-only chrome: fixed page nav and counters. */
  .d2-nav {
    display: none !important;
  }
}
