.footer--section {
    background-color: var(--theme-dk-blue);
    color: var(--theme-lt-grey);
}

.footer--container {
    padding: 60px var(--theme-content-padding);
}

.footer--logo {
    margin-bottom: 50px;
}

.footer--nav {
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer--copyright {
    margin-bottom: 0;
}

.footer--copyright span.dt-mod {
    display: none;
}

.footer--nav-wrap a:hover {
    text-decoration: underline;
}

.footer--legal {
    font-style: italic;
    margin-bottom: 10px;
}

@media (min-width: 600px) {
    .footer--copyright span.dt-mod {
        display: inline;
    }
    .footer--copyright br {
        display: none;
    }
}

@media (min-width: 992px) {
    .footer--nav {
        margin-bottom: 25px;
    }

    .footer--logo {
        margin-bottom: 9px;
    }

    .footer--copy-col {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
}