.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);
    background-color: var(--footer-bg-color);
}

.footer__ontop {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: var(--soft-border);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: normal;
    width: var(--footer-width);
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 0;
    padding-right: 0;
    gap: var(--space-5xl);
    color: var(--footer-text-color);
}

.footer__column {
    width: 100%;
}

.footer__title {
    font-size: 1.5rem;
    font-weight: 300;
    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;
    justify-content: space-between;
    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__text {
    display: block;
    width: var(--footer-width);
    margin-left: auto;
    margin-right: auto;
} */

.footer-copyright__text--center {
    width: fit-content;
}

.footer-copyright__powered-by {
    font-size: .875rem;
    text-decoration: none;
}

/* ========================================
                Footer->
                Copyright
                [END]
========================================= */