/* assets/css/print.css - استایل‌های چاپ */

@media print {
    /* مخفی کردن عناصر غیرضروری */
    header, 
    .sidebar, 
    .share-buttons, 
    .comments-section,
    .related-posts,
    footer,
    .mobile-menu-btn,
    .search-box,
    .post-footer .post-tags {
        display: none !important;
    }
    
    /* تنظیمات عمومی چاپ */
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
    }
    
    .main-content {
        margin: 0;
        padding: 20px;
    }
    
    /* استایل‌های پست */
    .single-post {
        box-shadow: none;
        padding: 0;
        margin: 0;
    }
    
    .post-title {
        font-size: 18pt;
        margin-bottom: 10px;
    }
    
    .post-meta {
        font-size: 10pt;
        margin-bottom: 20px;
    }
    
    .post-content {
        font-size: 11pt;
    }
    
    .post-content img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* جلوگیری از شکستن عناوین */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    /* جلوگیری از شکستن پاراگراف‌ها */
    p {
        page-break-inside: avoid;
    }
    
    /* اضافه کردن آدرس در انتهای صفحه */
    .print-url {
        display: block;
        margin-top: 30px;
        font-size: 10pt;
        color: #666;
        text-align: center;
    }
    
    /* نمایش آدرس URL لینک‌ها */
    a {
        color: #000;
        text-decoration: none;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #666;
    }
    
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
}