/* ==========================================================================
   이음교육저널 — Print Stylesheet
   Activated when printing article pages. Hides chrome, optimizes typography.
   ========================================================================== */

@media print {
  /* ── Reset ── */
  *, *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-family: 'Noto Serif KR', Georgia, serif;
    font-size: 12pt;
    line-height: 1.7;
    margin: 0;
    padding: 0;
  }

  /* ── Hide chrome ── */
  #site-header,
  #site-footer,
  .site-header,
  .site-footer,
  .mobile-nav,
  .mobile-menu-btn,
  .skip-link,
  .reading-rail,
  .rail-toc,
  .rail-share,
  .rail-bio,
  .rail-progress,
  .reading-progress,
  .article-tags,
  .article-end,
  .related-articles,
  .article-hero-figure:not(.article-hero-figure--diagram),
  [data-action],
  nav,
  footer,
  header,
  .outbound-link {
    display: none !important;
  }

  /* ── Layout ── */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  main {
    display: block;
    width: 100%;
  }

  .article-columns {
    display: block;
  }

  .article-body {
    max-width: 100%;
    font-size: 11.5pt;
    line-height: 1.8;
  }

  /* ── Typography ── */
  .hd-title {
    font-size: 20pt;
    line-height: 1.25;
    margin-bottom: 12pt;
  }

  .hd-lede {
    font-size: 13pt;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 18pt;
  }

  .article-body h2 {
    font-size: 15pt;
    page-break-after: avoid;
  }

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

  .article-body p {
    orphans: 3;
    widows: 3;
  }

  /* ── Links: show URLs ── */
  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 9pt;
    font-weight: normal;
    color: #555 !important;
  }

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

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

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

  .article-body blockquote,
  .pull-quote {
    page-break-inside: avoid;
  }

  /* ── Header / meta ── */
  .hd-meta {
    font-size: 10pt;
    margin-bottom: 18pt;
  }

  .hd-category {
    font-size: 10pt;
    margin-bottom: 6pt;
  }

  /* ── Print-only: add site name header ── */
  body::before {
    content: '이음교육저널 — news.ieumedu.kr';
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 9pt;
    color: #888 !important;
    border-bottom: 0.5pt solid #ccc;
    padding-bottom: 8pt;
    margin-bottom: 18pt;
  }

  /* ── Print-only: copyright footer ── */
  body::after {
    content: '© ' attr(data-year) ' 이음교육저널 · 무단 전재 및 재배포 금지';
    display: block;
    font-size: 8pt;
    color: #888 !important;
    border-top: 0.5pt solid #ccc;
    padding-top: 8pt;
    margin-top: 24pt;
    text-align: center;
  }
}
