/* ==========================================================================
   Print styles — for printing published papers
   ========================================================================== */

@media print {
  body {
    background: white;
    color: black;
    font-size: 11pt;
    line-height: 1.5;
  }

  .site-header,
  .site-footer,
  .atopos-beta-banner,
  .primary-nav,
  .btn,
  .skip-link {
    display: none !important;
  }

  .site-main {
    padding: 0;
  }

  a {
    color: black;
    text-decoration: underline;
  }

  /* Show href for external links */
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #666;
  }

  /* Tier badge — print as plain text block */
  .tier-badge {
    border-left: 2px solid black;
    padding: 0.5em;
    margin-bottom: 1em;
    background: none;
    font-size: 9pt;
    color: #333;
  }

  /* Author line */
  .paper-authors {
    color: #333;
  }

  /* Copyright notice */
  .paper-copyright {
    border-top: 1px solid #ccc;
    padding-top: 0.5em;
    margin-top: 2em;
    color: #555;
    font-size: 9pt;
  }

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

  figure, table {
    page-break-inside: avoid;
  }
}
