/* MJED V7 — Print styles for clean PDF/print output */

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

  /* Page setup */
  @page {
    margin: 1.5cm;
    size: A4;
  }

  body {
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 11pt !important;
    line-height: 1.5 !important;
  }

  /* Hide navigation, ads, sticky elements */
  nav,
  header[role="banner"],
  footer,
  aside,
  .mjed-nav-inner,
  [role="tablist"],
  [aria-label*="Dossier"],
  [aria-label*="theme"],
  .StickyMobileCTAV7,
  .v2-byline,
  button,
  [role="button"]:not([type="submit"]) {
    display: none !important;
  }

  /* Show URL after links for context */
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555 !important;
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after,
  a[href^="mailto:"]:after {
    content: "";
  }

  /* Tables & images */
  img, picture, svg {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  table, thead, tbody, tr {
    page-break-inside: avoid !important;
  }

  /* Headers */
  h1, h2, h3, h4 {
    color: #000 !important;
    page-break-after: avoid;
    page-break-inside: avoid;
    font-family: Georgia, "Times New Roman", serif !important;
  }
  h1 { font-size: 22pt !important; }
  h2 { font-size: 16pt !important; }
  h3 { font-size: 13pt !important; }

  /* Articles */
  article, section, p {
    page-break-inside: avoid;
    orphans: 3;
    widows: 3;
  }

  /* Score CRISTAL card visible but neutralized */
  [aria-label*="Score CRISTAL"],
  [aria-label*="cristal"] {
    border: 1px solid #000 !important;
    padding: 10pt !important;
    margin: 10pt 0 !important;
  }
}
