/* ==========================================================================
   FOOTER BOTTOM — копирайт + ссылки AGB/Impressum/Datenschutz
   ========================================================================== */

.site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 24px;
}

.site-footer__bottom-inner p {
    margin: 0;
}

.site-footer__legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer__legal-links a {
    font-size: 13px;
    color: var(--medal-gray, rgba(255,255,255,0.6));
    white-space: nowrap;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer__legal-links a:hover {
    color: var(--medal-white, #ffffff);
}

/* --- Мобильная адаптация: копирайт и ссылки друг под другом, по центру --- */
@media (max-width: 600px) {
    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .site-footer__legal-links {
        justify-content: center;
        gap: 8px 16px;
    }

    .site-footer__legal-links a {
        font-size: 12px;
    }
}
