/* =========================
   Frontend Footer
   ========================= */

.frontend-footer {
    margin-top: 4rem;

    background: rgba(15, 16, 27, 0.85);
    backdrop-filter: blur(6px);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.frontend-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.frontend-footer p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(208, 210, 221, 0.75);
}

/* Footer-Links */
.frontend-footer a {
    font-size: 0.85rem;
    color: rgba(208, 210, 221, 0.75);
    text-decoration: none;
    transition: color 0.15s ease;
}

.frontend-footer a:hover {
    color: #ffffff;
}

/* =========================
   Mobile Anpassung
   ========================= */

@media (max-width: 520px) {
    .frontend-footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}
