footer#colophon {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: center;
    background-color: var(--main-color);
    padding: var(--cont-gap);
}

.footer-wrapper-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-2xl);
}

.footer-wrapper ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
}

#footer-mitte {
    width: clamp(140px, 27vw, 277px);
}

#footer-mitte a {
    display: flex;
    width: 100%;
    height: auto;
}

#footer-mitte img {
    width: 100%;
    height: auto;
}

#footer-links * {
    text-align: right;
}

footer * {
    font-size: var(--h4-font-size);
    text-decoration: none;
    color: #fff !important;
    margin: 0;
    text-decoration: navajowhite !important;
    line-height: 2.1;
}

#footer-rechts * {
    text-align: left;
}

@media (max-width: 576px) {

    .footer-wrapper-inner {
        flex-direction: column;
        gap: var(--gap-l);
    }

    footer * {
        text-align: center !important;
    }

    #footer-mitte {
        order: -1;
    }
}