/* ==========================================================================
   Cemetery Theme — Print Styles
   Optimised for printing a single burial record.
   ========================================================================== */

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

  body {
    font-size: 12pt;
    line-height: 1.5;
    padding: 0 !important;
  }

  /* Hide all interactive / navigational chrome */
  .site-header,
  .site-footer,
  .notice-banner,
  .style-switcher,
  .mobile-cta,
  .cookie-consent,
  .breadcrumb,
  .interment-filter,
  .record__actions,
  .no-print,
  .skip-to-content {
    display: none !important;
  }

  .print-only {
    display: block !important;
  }

  .print-header {
    text-align: center;
    border-bottom: 2pt solid #000;
    padding-bottom: 8pt;
    margin-bottom: 16pt;
  }

  .print-header__name {
    font-size: 18pt;
    margin: 0 0 2pt;
  }

  .print-header__contact {
    font-size: 9pt;
  }

  /* Record layout becomes a single column */
  .record,
  .section {
    padding: 0 !important;
  }

  .record__layout {
    display: block !important;
  }

  .record__sidebar {
    margin-top: 16pt;
    border-top: 1pt solid #999;
    padding-top: 12pt;
  }

  .sidebar-card {
    border: none !important;
    padding: 0 !important;
    margin-bottom: 12pt;
  }

  .record__header {
    border-bottom: 1pt solid #999;
  }

  .record__marker {
    border: 1pt solid #999;
  }

  .record__inscription {
    border-top: 1pt solid #999;
    border-bottom: 1pt solid #999;
  }

  a,
  a:visited {
    text-decoration: none;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  p {
    orphans: 3;
    widows: 3;
  }

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