/*
 * MTC Cabinet — Styles impression
 *
 * Optimise le rendu lors d'une impression depuis le navigateur :
 *  - Couleurs encres → noir
 *  - Masque la nav, le footer, les commentaires
 *  - Élargit le contenu
 *  - Affiche les URLs des liens
 */

@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
    line-height: 1.5;
  }

  .site-header,
  .site-footer,
  .nav-toggle,
  .comments-area,
  .header-cta,
  .social-links,
  .mtc-pagination,
  .skip-link {
    display: none !important;
  }

  .site-content { padding: 0; }

  .container, .entry, .container--narrow {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  h1, h2, h3, h4 { color: #000; page-break-after: avoid; }

  a { color: #000; text-decoration: underline; }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after { content: ""; }

  blockquote, pre, table { page-break-inside: avoid; }

  img { max-width: 100% !important; }

  @page { margin: 1.5cm; }
}
