/* Hide elements when printing */
nav, footer, .site-header, .site-title, .site-branding, #colophon, .navigation-links {
    display: none !important;
}

/* Set the page size to A4 and remove URLs, adjust featured image size and position */
@media print {
    @page {
        size: A4;
        margin: 2cm;
    }
    
    body {
        font: 11pt Georgia, "Times New Roman", Times, serif !important;
        font: 11pt var(--global--font-secondary, Georgia, "Times New Roman", Times, serif) !important;
        line-height: 1.1;
        background: #fff !important;
        color: #000;
    }
    
    a:link,
    a:visited,
    a {
        background: transparent !important;
        font-weight: normal !important;
        text-decoration: none !important;
        text-align: left !important;
    }
    
    a[href]:after {
        content: none !important;
    }

    .post-thumbnail img {
    	max-height: 5cm !important;
    	max-width: 10cm !important;
    	width: auto !important;
    	height: auto !important;
    	float: right !important;
    	margin: -2cm 0 1em 1em !important;
	}

    
    .wp-block-heading {
        font-weight: bold !important;
        font-size: 16pt !important;
        margin-top: 1cm !important;
    }

    .wp-block-columns {
        display: flex !important;
        flex-wrap: nowrap !important;
    }

    .wp-block-column {
        flex-grow: 1 !important;
        flex-basis: 0 !important;
        padding: 0 1em !important;
    }
}
