/* Druckversion */

@media print {
    html, body {
        background-color: #fff;
        color: #000;
        font-family: 'PT Sans', sans-serif;
    }
    
    h1, h2 {
        font-family: 'PT Serif', serif;
        margin-bottom: 0;
    }
    
    a, a:link, a:visited {
        color: #dc5757;
        text-decoration: underline;
    }
    
    .noprint, .site-nav, .to-top {
        display: none;
    }
    
    /* Seite Bildnachweis */  
    .bildnachweis {
        display: flex;
        flex-flow: row;
        flex-wrap: wrap;
        /*page-break-inside: avoid;*/
     }
    
    .bildnachweis figure {
        border: 2px solid #ccc;
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start; 
        flex: 1 1 calc(50% - 0.5rem);
    }

    /* Abstand zwischen dem 1. und dem 2. Elementen in der Reihe */
    .bildnachweis figure:nth-child(odd){
        margin-right: 1rem;
    }

    .bildnachweis figure:last-child{
        margin-right: 0;
    }
    
    .bildnachweis img {
        width: 100px;
    }
    
   .bildnachweis figure figcaption {
        padding: 0.9rem 1rem 1rem 1rem;
    }

}