/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    padding: clamp(40px, 5vw, 64px) 0 24px;

    background: #25242a;
    color: rgba(255, 255, 255, 0.72);
}


/* ==========================================================================
   Footer Navigation
   ========================================================================== */

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}


/* ==========================================================================
   Footer Bottom
   ========================================================================== */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px 32px;
}


/*
|--------------------------------------------------------------------------
| Mit Hauptnavigation
|--------------------------------------------------------------------------
*/

.footer-bottom.has-footer-navigation {
    margin-top: 32px;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


/*
|--------------------------------------------------------------------------
| Ohne Hauptnavigation
|--------------------------------------------------------------------------
*/

.footer-bottom.without-footer-navigation {
    margin-top: 0;
    padding-top: 0;

    border-top: 0;
}


.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}


/* ==========================================================================
   Legal Navigation
   ========================================================================== */

.footer-legal {
    gap: 12px 22px;
}

.footer-legal a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}