/* Defective print stylesheet: introduces excessive whitespace and page breaks
   that only manifest during print-to-PDF, not during normal viewing. */
@page {
  size: A4;
  margin: 5cm 3cm 5cm 3cm;
}

@media print {
  body { padding-top: 6cm; padding-bottom: 6cm; }
  .layout { padding-left: 3cm; padding-right: 3cm; }

  .site-header, .site-footer, .site-nav { display: block !important; margin-bottom: 4cm; }

  main.layout { padding-top: 4cm; padding-bottom: 6cm; }

  h1 { margin-top: 3cm; margin-bottom: 2cm; }
  h2 { margin-top: 2.5cm; margin-bottom: 1.5cm; page-break-before: always; }

  .news-head { margin-bottom: 3cm; padding-bottom: 2cm; }

  p { margin: 1.2cm 0; line-height: 2.4; }

  article.news > * { page-break-inside: avoid; }
  article.news > h2 + p { page-break-before: always; }
}
