/* ============================================================
   CC Growth Theme – Print Stylesheet
   ============================================================ */

@media print {
  /* ── Hide non-print elements ── */
  .site-header,
  .site-footer,
  .announcement-bar,
  .nav-primary,
  .widget-area,
  .comments-area,
  .elementor-section.hide-on-print,
  .cta-band,
  .sticky-header,
  button,
  .wp-block-button,
  [class*="elementor-button"] {
    display: none !important;
  }

  /* ── Base ── */
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font: 12pt Georgia, "Times New Roman", Times, serif;
    line-height: 1.5;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    font-family: Arial, Helvetica, sans-serif;
  }

  p, blockquote, ul, ol, dl, table {
    orphans: 3;
    widows: 3;
  }

  /* ── Links ── */
  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #444 !important;
  }

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

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

  /* ── Tables ── */
  table {
    border-collapse: collapse !important;
    width: 100%;
  }

  table th,
  table td {
    border: 1px solid #999 !important;
    padding: 4pt 6pt;
  }

  thead { display: table-header-group; }
  tr    { page-break-inside: avoid; }

  /* ── Page margins ── */
  @page {
    margin: 2cm;
  }
}
