/* Print Styles */
@media print {
    .nav,
    .footer,
    .search-form,
    .widget,
    .button {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .content {
        padding: 0;
    }

    .post {
        page-break-inside: avoid;
    }

    .post-title {
        font-size: 16pt;
        margin-bottom: 10pt;
    }

    .post-content {
        font-size: 12pt;
    }

    .post-content img {
        max-width: 100%;
        height: auto;
    }

    a {
        text-decoration: none;
        color: #000;
    }

    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }

    .gallery {
        display: block;
    }

    .gallery-item {
        page-break-inside: avoid;
        margin-bottom: 20pt;
    }
} 