/* Print Stylesheet - PlanEsti Blog */

@media print {
    /* Hide unnecessary elements */
    header,
    nav,
    .blog-hero,
    .breadcrumbs-container,
    aside,
    .blog-sidebar,
    .blog-share,
    .blog-related,
    footer,
    button,
    .blog-card-categories,
    #table-of-contents,
    .blog-breadcrumb,
    .blog-author-avatar,
    [style*="padding: 60px"],
    script,
    style {
        display: none !important;
    }

    /* Page setup */
    @page {
        margin: 2cm;
        size: A4;
    }

    /* Body */
    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        padding: 0;
        font-size: 11pt;
        line-height: 1.6;
        color: #000;
        background: #fff;
    }

    /* Container */
    .blog-post-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    /* Branding header */
    .blog-post-header::before {
        content: 'PlanEsti | www.planesti.com';
        display: block;
        font-size: 10pt;
        color: #0066cc;
        font-weight: 600;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 2px solid #0066cc;
    }

    /* Title */
    .blog-post-title {
        font-size: 18pt;
        font-weight: bold;
        color: #000;
        margin: 15px 0 10px 0;
        page-break-after: avoid;
    }

    /* Meta info */
    .blog-post-meta {
        font-size: 9pt;
        color: #666;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #ddd;
    }

    /* Featured image */
    .blog-post-container > div:first-of-type img {
        max-width: 100%;
        height: auto;
        margin: 20px 0;
    }

    /* Content */
    .blog-content {
        font-size: 11pt;
        line-height: 1.7;
    }

    .blog-content h2 {
        font-size: 14pt;
        margin-top: 20px;
        page-break-after: avoid;
    }

    .blog-content h3 {
        font-size: 12pt;
        margin-top: 15px;
        page-break-after: avoid;
    }

    .blog-content p {
        margin-bottom: 10px;
        orphans: 3;
        widows: 3;
    }

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

    .blog-content a {
        color: #0066cc;
        text-decoration: underline;
    }

    /* Author bio */
    .author-bio {
        margin-top: 25px;
        padding: 15px;
        border: 1px solid #ddd;
        border-left: 4px solid #0066cc;
        page-break-inside: avoid;
    }

    /* Footer call-to-action */
    .blog-content::after {
        content: '\AFor more articles and resources, visit www.PlanEsti.com\A© 2025 PlanEsti - Professional Construction Estimation Platform';
        white-space: pre;
        display: block;
        margin-top: 30px;
        padding: 15px;
        border: 2px solid #0066cc;
        text-align: center;
        font-size: 9pt;
    }

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

    img, table {
        page-break-inside: avoid;
    }
}