.site-footer {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    color: var(--wp--preset--color--gypsum);
    background-color: var(--wp--preset--color--oxford-navy);
}

@media screen and (max-width: 1024px) {
    .site-footer {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}

@media screen and (max-width: 640px) {
    .site-footer {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

.site-footer .wp-block-separator {
    color: #5F6267;
    height: 1px;
    width: 100%;
    max-width: 350px;
    margin: 24px 0;
}

.site-footer .menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 12px;
}

.site-footer .menu li::after {
    content: ' | ';
    display: inline-block;
    margin-left: 12px;
    color: var(--wp--preset--color--electric-blue);
}

.site-footer .menu li:last-child::after {
    content: '';
}