/**
 * Footer.
 */

.site-footer {
    font-size: .8rem;
    margin-top: 10rem;
}

.site-footer-separator {
    background: var(--school-body-font-color);
    height: 1px;
    margin: 0 4rem;
}

.footer-menu-main {
    color: #383838;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    margin-top: 2rem;
}

.footer-menu-main a {
    text-decoration: underline;
}

.footer-menu-main a:hover {
    color: var(--school-primary-color);
}

.footer-copyright {
    font-size: .8rem;
    margin-top: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-menu-main {
        flex-direction: row;
        gap: 4em;
    }
}
