.ml-footer > .container {
    padding-top: 54px;
    padding-bottom: 46px;
}
.ml-footer__top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.ml-footer__name {
    font-family: var(--sans);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}
.ml-footer__info a:not(.btn) {
    color: #fff;
}
.ml-footer__info a:not(.btn):hover {
    color: rgba(255, 255, 255, 0.75);
}
.ml-footer .btn {
    border-color: #fff;
}
.ml-footer .btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.ml-footer .btn-outline:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
.ml-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}
.ml-footer__legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.ml-footer__legal a {
    font-size: 16px;
    color: #fff;
}
.ml-footer__legal a:hover {
    color: rgba(255, 255, 255, 0.75);
}
.ml-footer__widerruf {
    align-self: flex-end;
}
.ml-footer__copy {
    margin: 36px 0 0;
    font-size: 13px;
    color: #5e6166;
}
@media (max-width: 640px) {
    .ml-footer__right,
    .ml-footer__legal {
        align-items: flex-start;
    }
    .ml-footer__widerruf {
        align-self: flex-start;
    }
}
.btn-solid {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}
.btn-solid:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
    color: #fff;
}
/* teal-outline button variant (global, hosted here) */
.btn-teal {
    background: transparent;
    color: #000;
    border-color: #1d9483;
}
.btn-teal:hover {
    background: #1d9483;
    color: #fff;
    border-color: #1d9483;
}
/* teal filled button variant (= teal-outline hover; darker on hover) */
.btn-teal-fill {
    background: #005F52;
    color: #fff;
    border-color: #005F52;
}
.btn-teal-fill:hover {
    background: #004D42;
    color: #fff;
    border-color: #004D42;
}
