.footer.site-footer {
    background: #faf8fc !important;
    border-top: 0 !important;
    box-shadow: none !important;
    margin-top: 4rem;
    padding: 1rem 0 !important;
}

.site-footer__inner {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    min-height: 40px;
}

.site-footer .footer-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: flex-start;
}

.site-footer .footer-btn,
.site-footer .footer-btn:link,
.site-footer .footer-btn:visited {
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none !important;
    color: var(--text-muted, #6b7280);
    display: inline-flex;
    font-size: .85rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 !important;
    padding: .25rem 0;
    text-decoration: none;
    transition: color .18s ease;
}

.site-footer .footer-btn:hover {
    background: transparent;
    color: var(--primary-color, #7a48b0);
    text-decoration: none;
}

.site-footer .footer-btn:focus-visible {
    outline: 3px solid rgba(122, 72, 176, .25);
    outline-offset: 2px;
}

.site-footer__copyright {
    color: var(--text-muted, #6b7280) !important;
    flex: 0 0 auto;
    font-size: .85rem !important;
    margin: 0 !important;
}

@media (max-width: 767px) {
    .site-footer__inner {
        flex-direction: column;
        gap: .85rem;
        text-align: center;
    }

    .site-footer .footer-links {
        justify-content: center;
    }
}