/* ============================================================
   Print Styles — RustyJay Portfolio
   ============================================================ */

@media print {
  /* Hide nav, footer, and interactive elements */
  #site-header,
  .mobile-nav,
  .nav-toggle,
  .site-footer,
  .reviewer-linkedin { display: none !important; }

  body {
    font-size: 11pt;
    line-height: 1.5;
    color: #000;
  }

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

  /* Show full URLs for external links */
  a[href^="http"]::after,
  a[href^="https"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
    font-weight: 400;
  }

  /* Keep testimonials and company blocks together */
  .testimonial,
  .company-block {
    break-inside: avoid;
  }

  /* Render color accents as black for print */
  .rule-primary,
  .hero-rule {
    background: #000;
  }

  .company-rule {
    background: #999;
  }

  .company-block {
    border-right-color: #999;
  }

  /* Placeholders don't print */
  .img-placeholder { display: none; }

  /* Remove sticky positioning */
  #site-header { position: static; }
}
