@charset "UTF-8";

/* === print.css - 打印样式 === */

@media print {
  /* Hide interactive elements */
  .site-header,
  .site-footer,
  .breadcrumb,
  .banner-slider,
  .back-to-top,
  .menu-toggle,
  .sidebar,
  .no-print {
    display: none !important;
  }
  
  /* Reset colors for print */
  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
    line-height: 1.5;
  }
  
  /* Links */
  a {
    color: #000;
    text-decoration: underline;
  }
  
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }
  
  /* Layout */
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  .page-content {
    padding: 0;
  }
  
  .article-container {
    box-shadow: none;
    padding: 0;
  }
  
  /* Typography */
  h1 { font-size: 20pt; page-break-after: avoid; }
  h2 { font-size: 16pt; page-break-after: avoid; }
  h3 { font-size: 14pt; page-break-after: avoid; }
  
  p, li {
    orphans: 3;
    widows: 3;
  }
  
  /* Avoid breaking inside elements */
  pre, blockquote, table, figure, img {
    page-break-inside: avoid;
  }
  
  /* Page breaks */
  .page-break {
    page-break-before: always;
  }
  
  /* Show article content fully */
  .article-body {
    font-size: 11pt;
  }
  
  .article-nav,
  .article-share,
  .related-articles {
    display: none;
  }
  
  /* Cards */
  .card,
  .core-card,
  .case-card,
  .honor-item {
    box-shadow: none;
    border: 1pt solid #ccc;
    break-inside: avoid;
  }
}
