/*
 * ═══════════════════════════════════════════════════════════════
 * COREDEVEX — PRINT STYLESHEET
 * ═══════════════════════════════════════════════════════════════
 */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-family: Georgia, serif;
    font-size: 12pt;
    line-height: 1.5;
  }

  /* Hide non-content elements */
  nav,
  .nav-base,
  .nav-overlay,
  footer,
  .marquee-section,
  .btn-primary,
  .btn-ghost,
  .btn-nav,
  .section-closing-cta {
    display: none !important;
  }

  /* Ensure links are visible */
  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 10pt;
    color: #555 !important;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: '';
  }

  /* Page breaks */
  h2, h3, h4 {
    page-break-after: avoid;
  }

  p, blockquote {
    orphans: 3;
    widows: 3;
  }

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