/* ─── PRINT ─── */
/* On-page print styles (Ctrl+P στις κανονικές σελίδες). */
/* Τα PDF popup windows έχουν δικά τους inline styles: print-popup-*.css */

@media print {
  /* Απόκρυψη μη-εκτυπώσιμων στοιχείων */
  /* .header περιλαμβάνει ήδη nav/hamburger/Σύγκριση/Τεστ — αρκεί ένα selector */
  .header,
  .site-footer,
  .school-toc,
  .school-hero-actions,
  .school-share,
  .modal-overlay,
  .skip-link,
  .cta-primary,
  .results-pdf-bar,
  .lead-gate,
  .school-related-nav {
    display: none !important;
  }

  /* ⚠ Γνωστό bug: τα inline SVG icons «σπάνε» στο print — απόκρυψη */
  svg.icon { display: none !important; }

  body { background: #fff; color: #000; font-size: 11pt; }
  .school-page, .container { max-width: 100%; margin: 0; padding: 0; }
  a { text-decoration: none; color: #000; }
  details { display: block; }
  details > summary { font-weight: 600; }
  /* Άνοιξε όλα τα collapsible στο print (FAQ, πίνακας βάσεων κ.λπ.) */
  details:not([open]) > *:not(summary) { display: block !important; }
  /* Νέοι browsers κρύβουν το περιεχόμενο μέσω ::details-content */
  details::details-content { content-visibility: visible !important; display: block !important; }
}
