.footer {
    background: var(--color-footer-bg);
    color: var(--color-footer-text);
    text-align: center;
    padding: 30px 20px;
}

.footer a {
    color: var(--color-footer-text);
    text-decoration: none;
}

.footer a:hover { text-decoration: underline; }

.footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-menu li {
    padding: 0 20px;
    border-right: 1px solid var(--color-footer-text);
}

.footer-menu li:last-child { border-right: none; }

.footer-copy { margin: 20px 0 0; }

@media (max-width: 768px) {
    .footer-menu {
        flex-direction: column;
        gap: 8px;
    }
    .footer-menu li { border-right: none; }
}
