/*
 * Path: css/print.css
 * Purpose: Print-specific overrides
 * Depends on: css/core/tokens.css (for any token fallbacks)
 * Version: 0.9.0 (pre-1.0)
 */

@media print {
  /* Force high-contrast, paper-friendly output */
  body, .section{
    background: #fff !important;
    color: #000 !important;
  }

  /* Ensure footer prints normally */
  .site-footer{
    opacity: 1 !important;
    position: static !important;
  }

  /* Links should look like text in printouts */
  a{
    text-decoration: none !important;
  }
}
