#site-footer {
    background-color: #1D0B40;
}

#site-footer .innerWrapper {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-legallist {
    list-style: none;
    color: #ffffff;
    display: grid;
    grid-template-columns: max-content max-content auto;
    padding: 0;
    margin: 40px 0 0 0;
    width: 100%;
    row-gap: 8px;
}

.footer-legallist::after {
     content: url("../images/SWR_secondary.svg");
     display: block;
     width: 100%;
     height: auto;
     position: relative;
    grid-column: 1 / 4;
    grid-row: 2;
    top: 4px;
}

.footer-legallist a {
    font-size: 0.875rem;
    line-height: 1.094rem;
}

.footer-legallist a {
    color: #ffffff;
}

.footer-legallist a:focus {
    outline: 1px solid #ffffff;
}

.footer-privacy::after {
    content: "";
    display: block;
    position: absolute;
    border-left: 1px solid #ffffff;
    width: 1px;
    height: 20px;
    right: 0;
    opacity: 0.4;
    top: -1px;
}

.footer-privacy {
    grid-column: 1;
    grid-row: 1;
    position: relative;
}

.footer-privacy a {
    padding: 16px;
}

.footer-imprint {
    grid-column: 2;
    grid-row: 1;
}

.footer-imprint a {
    padding: 16px;
}

.footer-copyright {
    grid-column: 3;
    grid-row: 1;
    text-align: right;
    padding-right: 16px;
    font-size: 0.625rem;
    line-height: 1.094rem;
}

.logo-swr-ard {
    width: 126px;
    height: 56px;
    margin-top: 32px;
    margin-left: 16px;
    position: relative;
}

.logo-swr-ard svg {
    width: 100%;
    height: 100%;
    position: absolute;
}

@media screen and (min-width: 768px) {
    #site-footer {
        background-color: #1D0B40;
        background-image    : url("../images/SWR_secondary.svg");
        background-size     : 40% auto;
        background-repeat   : no-repeat;
        background-position : bottom -2px right;
    }

    .footer-legallist {
        width: 60%;
        margin: 50px 0 40px 0;
    }

    .footer-legallist::after {
        display: none;
    }

    .footer-copyright {
        padding-right: 40px;
    }
}

@media screen and (min-width:992px) {
    .logo-swr-ard {
        width: 144px;
        height: 64px;
        margin-top: 64px;
        margin-left: 80px;
    }

    .footer-legallist {
        margin: 60px 0 40px 0;
    }

    .footer-privacy {
        padding-left: 80px;
    }

    .footer-privacy a {
        padding: 16px 16px 16px 0;
    }

    .footer-copyright {
        padding-right: 40px;
    }
}

