@media print {
    /* Hide footer */
    #site-footer {
        display: none;
    }
    /* Hide download button */
    #post-download {
        display: none;
    }
    /* Make header module full bleed, no containers */
    #site-header > div:first-child {
        margin: 0 !important;
        padding: 0 !important;
        min-width: 100% !important;
        border: none !important;
        background-color: transparent !important;
    }
    /* Hide search icon and menu icon */
    #site-header #menu-contents .d-flex.flex-gap.d-lg-none {
        display: none !important;
    }
    #site-header h1 {
        font-size: 36px !important;
    }
    /* Make mt-6 spacing above metadata equal to mb-5 spacing between image and title */
    #site-header .mt-6 {
        margin-top: 60px !important;
    }
    /* Make featured image smaller */
    #site-header img {
        width: 50% !important;
    }
    /* Hide 'Sections' sidebar display */
    #sidebar-contents {
        display: none !important;
    }
    /* Making h2 header smaller */
    h2 {
        font-size: 24px !important;
    }

    h4.arrow-link { visibility: hidden;}
    
    /* Sizing down connected posts */
    #post-connections > div {
        grid-column: span 6;
        min-height: 0 !important;
        border: 1px solid !important;
    }
    /* Adding a nicer margin in connected post cards between title and author */
    #post-connections > div h3 {
        margin-bottom: var(--two-spacer) !important;
    }
}