/* ============================================
   Print Stylesheet — Clean article printing
   ============================================ */
@media print {
  /* Hide non-essential elements */
  .navbar, .footer, .back-to-top, .cookie-banner, .search-modal,
  .post-page__share-wrap, .comments-section, .related-posts,
  .post-action-bar, .series-nav, .toc, .progress-container,
  .announcement-bar, .mobile-menu, .newsletter, .categories,
  .about-banner, .breadcrumbs, .hero, .toast, .skip-to-content {
    display: none !important;
  }

  /* Reset colors for print */
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 12pt;
    line-height: 1.6;
  }

  /* Post hero — simplified */
  .post-page__hero {
    background: none !important;
    min-height: auto !important;
    padding: 20px 0 !important;
  }
  .post-page__hero-overlay { display: none !important; }
  .post-page__hero-content {
    position: static !important;
    padding: 0 !important;
    color: #000 !important;
  }
  .post-page__title { color: #000 !important; font-size: 24pt !important; text-shadow: none !important; }
  .post-page__category { background: none !important; color: #666 !important; padding: 0 !important; backdrop-filter: none !important; }
  .post-page__meta { color: #666 !important; }
  .post-page__tags a { background: none !important; color: #666 !important; border: 1px solid #ccc; backdrop-filter: none !important; }

  /* Article body */
  .post-page__body {
    max-width: 100% !important;
    margin: 20px 0 !important;
    padding: 0 !important;
    font-size: 11pt;
    color: #000 !important;
  }
  .post-page__body h2, .post-page__body h3 { color: #000 !important; }
  .post-page__body a { color: #000 !important; text-decoration: underline; }
  .post-page__body a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
  .post-page__body blockquote { border-left: 2px solid #000; background: none !important; }
  .post-page__body pre { background: #f5f5f5 !important; color: #000 !important; border: 1px solid #ddd; overflow: visible; white-space: pre-wrap; word-wrap: break-word; }
  .post-page__body img { max-width: 100% !important; page-break-inside: avoid; }

  /* Author profile */
  .author-profile { background: none !important; border: 1px solid #ddd; }
  .author-profile__img { background: #ddd !important; }

  /* Page breaks */
  h2, h3 { page-break-after: avoid; }
  img, blockquote, pre { page-break-inside: avoid; }

  /* Container */
  .container { width: 100% !important; max-width: 100% !important; }

  /* No animations */
  * { animation: none !important; transition: none !important; }
}
