/**
 * Print Stylesheet
 */

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a,
    a:visited {
        text-decoration: underline;
        color: #000 !important;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }
    
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    
    header,
    nav,
    .main-navigation,
    .sidebar,
    .footer-widgets,
    .social-share,
    .post-share-section,
    .comments-area,
    .breadcrumbs,
    .scroll-to-top,
    .dark-mode-toggle,
    .mobile-menu-toggle,
    footer {
        display: none !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .post-content,
    .single-post {
        max-width: 100% !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    p,
    blockquote {
        orphans: 3;
        widows: 3;
    }
    
    blockquote {
        page-break-inside: avoid;
    }
    
    .post-title {
        font-size: 18pt !important;
        margin-bottom: 10pt;
    }
    
    .post-meta {
        font-size: 10pt;
        margin-bottom: 10pt;
    }
    
    .post-content {
        font-size: 12pt;
    }
    
    @page {
        margin: 2cm;
    }
}

