/* =========================================================
   PRINT.CSS
   Styles applied only when a page is printed (File > Print,
   or Ctrl/Cmd+P). Keeps printed pages readable and ink-light —
   hides navigation chrome, the custom cursor, and decorative
   backgrounds that don't make sense on paper.
   Note: the CV document (assets/documents/kirubel-lakew-cv.html)
   has its own dedicated, self-contained print styling and does
   not use this file.
========================================================= */
@media print {
  #nav, .nav-mobile, #cur, #cur-ring, .hero-glow, .hero-grid,
  .ticker-track, .strip-track, .skip-link, footer,
  .demo-bar, .lab-interest-form, .filter-bar {
    display: none !important;
  }
  body {
    background: #ffffff !important;
    color: #0a0a0a !important;
    cursor: auto !important;
  }
  a { color: #0a0a0a !important; text-decoration: underline; }
  .page { display: block !important; position: static !important; }
  * { box-shadow: none !important; text-shadow: none !important; }
}
