/* Footer
   Base styles to edit the footer. */
.site-footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-navigation {
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-menu li {
    display: inline-block;
    margin: 0;
    padding: 0 1rem;
    position: relative;
}

.footer-menu li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -2px;
    color: #ffffff;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 0.8;
}

.site-info {
    color: #ffffff;
}

.site-info p {
    margin: 0.5rem 0;
}

.footer-link {
    color: #ffffff;
    text-decoration: underline;
}

.footer-link:hover {
    opacity: 0.8;
}