.page__footer {
    --footer-width: var(--page-width);
    --footer-bg-color: var(--color-surface);
    --footer-text-color: var(--color-on-surface);
    --footer-font-size: 1rem;
    --footer-copyright-bg-color: var(--footer-bg-color);
    --footer-copyright-text-color: var(--footer-text-color);

    width: 100%;
    height: auto;
    /* margin-top: 80px; */
    /* border-top: var(--soft-border); */
    font-size: .875rem;
    box-shadow: 0 0 8px 0 rgb(0, 0, 0, 12%);
    background-color: var(--footer-bg-color);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: normal;
    width: var(--footer-width);
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
    row-gap: 48px;
    color: var(--footer-text-color);
}

.footer__logo {
    margin-bottom: 12px;
}

.footer__column {
    width: 100%;
}

.footer__title {
    font-size: 1rem;
    font-weight: bold;
    color: currentColor;
}

.footer__column--middle {
    display: flex;
    flex-direction: column;
}

.footer__social-buttons {
    display: flex;
    gap: var(--space-md);
}

.footer__social-buttons .social-button__icon {
    margin: auto;
}


/* ========================================
                Footer->
                Copyright
                [START]
========================================= */

.footer__copyright {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 28px;
    row-gap: 20px;
    align-items: center;
    width: var(--page-width);
    margin-left: auto;
    margin-right: auto;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-top: var(--soft-border);
    font-size: 0.875rem;
    color: var(--footer-copyright-text-color);
    background-color: var(--footer-copyright-bg-color);
}

/* ========================================
                Footer->
                Copyright
                [END]
========================================= */