/* Hide navigation and sidebars for print */
@media print {
    /* PAGE LAYOUT */
    @page {
        size: auto;
        margin: 1in;
    }

    /* PAGE BREAKS */
    img,
    .wp-block-cover {
        page-break-inside: avoid;
        max-width: 100%;
        margin: 1em 0;
    }
    
    a, blockquote, table, pre, figure{
        page-break-inside: avoid;
    }
    
    ul, ol, dl{
        page-break-before: avoid;
    }

    /* FONTS */
    body {
        font-family: serif;
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: none;
    }

    p,
    .wp-block-getwid-section__wrapper {
        margin: 1em 0;
    }

    /* HEADINGS */
    h1, h2, h3, h4, h5, h6 {
        font-family: serif;
        font-weight: bold;
        margin-top: 18pt;
        page-break-inside: avoid;
        page-break-after: avoid;
    }

    h1 { font-size: 30pt; }
    h2 { font-size: 24pt; }
    h3 { font-size: 21pt; }
    h4 { font-size: 18pt; }
    h5 { font-size: 15pt; }
    h6 { font-size: 12pt; }


    /* LINKS */
    a:link, a:visited, a {
        background: transparent;
        color: #2C6706;
        font-weight: bold;
        text-decoration: underline;
        text-align: left;
    }

    a[href^=http]:after {
        content: " (" attr(href) ")";
        font-size: smaller;
    }

    a:after > img {
        content: "";
    }
    article a[href^="#"]:after {
        content: "";
    }
    a:not(:local-link):after {
        content:" (" attr(href) ") ";
        font-size: smaller;
    }

    /* VIDEOS AND IFRAMES */

    /* HIDDEN ELEMENTS */
    header,
    footer,
    .custom-post-type-stories,
    .custom-post-type-post,
    .latest-inspire-stories,
    .partner-callout,
    .no-print,
    figure.wp-block-embed:has(.wp-block-embed__wrapper .embed-youtube) {
        display: none;
    }

    .fadeIn{
        visibility: visible !important;
    }

    .wp-block-media-text{
        display: inline;
    }
    
    .wp-block-media-text__media{
       -webkit-print-color-adjust: exact !important;
    }



    main {
        background: none;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
    }

}