.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-width: var(--footer-width);
    --footer-copyright-bg-color: var(--color-primary);
    --footer-copyright-text-color: var(--color-on-primary);
    --footer-copyright-font-size: .875rem;

    width: 100%;
    height: auto;
    margin-top: var(--space-xxxl);
    border-top: var(--soft-border);
    background-color: var(--footer-bg-color);
}


/* ========================================
                Footer->
                Top
                [START]
========================================= */

.footer__ontop {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--space-xs);
    padding-bottom: var(--space-xs);
    border-bottom: var(--soft-border);
}

.footer-ontop__logo {
    width: 250px;
    min-width: 140px;
}

/* ========================================
                Footer->
                Top
                [END]
========================================= */


/* ========================================
                Footer->
                Center
                [START]
========================================= */

.footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: normal;
    width: var(--footer-width);
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xxl);
    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->
                Center
                [END]
========================================= */


/* ========================================
                Footer->
                Copyright
                [START]
========================================= */

.footer__copyright {
    width: 100%;
    font-size: var(--footer-copyright-font-size);
    color: var(--footer-copyright-text-color);
    background-color: var(--footer-copyright-bg-color);
}

.footer-copyright__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 2rem;
    align-items: center;
    justify-content: space-between;
    width: var(--footer-copyright-width);
    margin-left: auto;
    margin-right: auto;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.footer-copyright__powered-by {
    text-decoration: none;
}

/* ========================================
                Footer->
                Copyright
                [END]
========================================= */