/* ========================================
   Footer - Mit extra Abstand vor Copyright
   ======================================== */

.site-footer .container {
    max-width: 1730px;
}


.site-footer {
    background-color: #FFFFFF;
    padding-top: 40px;
    padding-bottom: 40px;
}

.site-footer .footer-content {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 40px;
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.site-footer .footer-links li {
    margin: 0;
}

/* Links */
.site-footer .footer-link {
    color: #000000;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-footer .footer-link:hover {
    color: #000;
}

/* Copyright mit extra Abstand links */
.site-footer .footer-copyright {
    color: #000000;
    font-size: 1.25rem;
    font-weight: 500;
    margin-left: 2rem;
    padding-left: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer .footer-content {
        justify-content: center;
    }

    .site-footer {
        padding: 30px 0;
        margin-top: 60px;
    }

    .site-footer .footer-links {
        gap: 1.5rem;
    }

    .site-footer .footer-copyright {
        margin-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .site-footer .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .site-footer .footer-link,
    .site-footer .footer-copyright {
        font-size: 0.9rem;
    }
}
