/* 
 * css/pages/footer.css
 */

/* Overwrite: Footer Trust Images */
footer#footer div.footer-logos {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
footer#footer div.footer-logos > div {
    max-width: none;
    text-align: center;
}
footer#footer div.footer-logos img {
    max-height: 45px;
    max-width: 65px;
    object-fit: contain;
}

/* Device: Big Mobile and smaller */
@media screen and (max-width: 767px) {
    footer#footer div.footer-logos {
        margin-top: 0;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    footer#footer div.footer-logos > div:nth-child(7) {
        grid-area: 3 / 1 / 4 / 4;
    }
}