/* ========================================
   THE WESTMARCH PROJECT
   Print Stylesheet
   ======================================== */

@media print {
  /* Page Setup */
  @page {
    size: letter;
    margin: 1.25in 1in;
  }

  /* Reset Colors */
  body {
    background: white;
    color: black;
    font-size: 11pt;
    line-height: 1.5;
  }

  /* Hide Navigation and Footer */
  .site-header,
  .site-nav,
  .site-footer,
  .essay-nav,
  .print-link {
    display: none !important;
  }

  /* Typography */
  h1 {
    font-size: 24pt;
    page-break-after: avoid;
  }

  h2 {
    font-size: 16pt;
    page-break-after: avoid;
    margin-top: 24pt;
  }

  h3 {
    font-size: 13pt;
    page-break-after: avoid;
  }

  p {
    orphans: 3;
    widows: 3;
  }

  /* Prevent Page Breaks */
  h1, h2, h3 {
    page-break-after: avoid;
  }

  blockquote,
  figure,
  .figure {
    page-break-inside: avoid;
  }

  /* Links - Show URLs */
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666;
  }

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

  a {
    color: black;
    text-decoration: none;
    border: none;
  }

  /* Images */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  /* Figures */
  .figure {
    margin: 18pt 0;
  }

  figcaption {
    font-size: 9pt;
  }

  /* Blockquotes */
  blockquote {
    border-left: 2pt solid #ccc;
    padding-left: 12pt;
    margin-left: 0;
  }

  /* Lists */
  ul, ol {
    page-break-inside: avoid;
  }

  /* Dividers */
  hr, .divider {
    border: none;
    border-top: 1pt solid #ccc;
    margin: 18pt auto;
  }

  /* Container */
  .site-container {
    max-width: 100%;
    padding: 0;
  }

  /* Essay Label */
  .small-caps {
    font-size: 9pt;
  }

  /* Print Cover Page (Optional) */
  .print-cover {
    page-break-after: always;
    text-align: center;
    padding-top: 3in;
  }

  .print-cover .essay-label {
    margin-bottom: 1rem;
  }

  .print-cover h1 {
    margin-bottom: 2rem;
  }

  .print-cover .print-meta {
    margin-top: 3in;
    font-size: 10pt;
    color: #666;
  }
}
