.page-footer {
    flex: 1 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: stretch;
    background-color: #0B1423;
    color: white;
    margin: 6em 0 0 0;
    padding: 4em 8em;
    gap: 2em;

    & > .footer-column {
        flex: 1 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.5em;

        & > .resistdesign-logo-area {
            padding: 5em 0 0 0;
        }
    }

    & > .display-area {
        flex: 1 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;

        & > .socials {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-end;
            gap: 1em;
            margin-bottom: 1em;
        }
    }
}

@media screen and (max-width: 768px) {
    .page-footer {
        flex-direction: column;
        margin: 2em 0 0 0;
        padding: 2em 4em;
        gap: 2em;

        & > .footer-column {
            align-items: center;
            text-align: center;

            & > .resistdesign-logo-area {
                padding: 2em 0 0 0;
            }
        }

        & > .display-area {
            align-items: center;
            justify-content: center;
            padding: 2em 0 0 0;
            text-align: center;

            & > .socials {
                justify-content: center;
            }
        }
    }
}
