/* Print Styles for WordPress Blog */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    a, a:visited {
        text-decoration: underline;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
    
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    
    .site-header,
    .main-navigation,
    .entry-meta,
    .entry-footer,
    .site-footer {
        display: none;
    }
    
    .entry-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .standfirst {
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }
    
    .entry-content {
        font-size: 12pt;
        line-height: 1.4;
        max-width: none;
    }
    
    .entry-content h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem;
        page-break-after: avoid;
    }
    
    .entry-content p {
        orphans: 3;
        widows: 3;
        margin-bottom: 1rem;
    }
    
    .entry-content blockquote {
        border: 1px solid #ccc;
        page-break-inside: avoid;
        padding: 0.8rem;
        margin: 1rem 0;
    }
    
    .entry-content img {
        max-width: 100%;
        page-break-inside: avoid;
    }
    
    .entry-content figure {
        page-break-inside: avoid;
        margin: 1rem 0;
    }
    
    .wp-block-image {
        page-break-inside: avoid;
    }
}