@media print {

    /* Disable flexbox everywhere */
    * {
        display: block !important;
        float: none !important;
        position: static !important;
        overflow: visible !important;
        max-width: 100% !important;
        width: auto !important;
        background: none !important;
    }

    /* Remove all theme containers that cause overlap */
    header, nav, footer,
    .hero, .page-header, .post-header,
    .menu, .sidebar, .toc {
        display: none !important;
    }

    /* Reset body */
    body {
        font-family: sans-serif !important;
        font-size: 12pt !important;
        line-height: 1.5 !important;
        color: #000 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Headings */
    h1, h2, h3, h4 {
        margin: 1.5em 0 0.5em !important;
        page-break-after: avoid !important;
    }

    /* Paragraphs */
    p {
        margin: 0 0 1em !important;
    }

    /* Images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}


