/* ============================================
   Murmur — 打印样式
   ============================================ */

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

  .site-nav,
  .site-footer,
  .search-bar,
  .post-nav,
  .comments-section,
  .nav-divider,
  .nav-search-btn,
  .theme-toggle,
  .pagination {
    display: none !important;
  }

  .site-wrapper {
    max-width: 100%;
    padding: 0;
  }

  .content-area {
    max-width: 100%;
  }

  .article-content a::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #666;
    font-family: var(--font-mono);
  }

  .article-content pre {
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }

  .article-content img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  .article-content blockquote {
    border-left-color: #999;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }
}
