/* Print styles — primarily for the résumé page. Printing any page should
   produce a clean result: navigation, footer, and interactive furniture
   are removed. */

@media print {
  .site-header,
  .site-footer,
  .skip-link,
  .hero__actions,
  .section-cta,
  .button,
  .video-facade,
  .production__related,
  .production__video {
    display: none !important;
  }

  body {
    background-color: #fff;
    color: #000;
    font-size: 11pt;
  }

  .page,
  .hero,
  .production__header {
    padding-block: 0 !important;
  }

  .resume-entry,
  .credits-list__row {
    break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: none;
  }

  .section-heading,
  .page-header__title,
  .production__title {
    font-size: 18pt;
  }
}
