.footer {
    background: #0B0C0D;
    padding: 64px 0 0;
}

.footer::before { display: none !important; }

.footer__cols {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.footer__cols > * {
    min-width: 0;
    max-width: 100%;
}

.footer__logo {
    max-height: 180px;
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
}

.footer__icons-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(245, 242, 224, 0.1);
}
.footer__icon-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245, 242, 224, 0.05);
    border: 1px solid rgba(245, 242, 224, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 242, 224, 0.7);
    transition: color 277ms, background 277ms, border-color 277ms;
}
.footer__icon-link:hover {
    background: #efebe5;
    border-color: #efebe5;
    color: #0B0C0D;
}

.footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    flex-wrap: wrap;
}
.footer__copy {
    font-family: "Satoshi-Regular", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgba(245, 242, 224, 0.3);
}
.footer__legal-link {
    font-family: "Satoshi-Regular", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgba(245, 242, 224, 0.3);
    text-decoration: none;
    transition: color 277ms;
}
.footer__legal-link:hover { color: #efebe5; }
