/* Mobile-First: Basis-Styles gelten für mobile Geräte */
/* VERPFLICHTEND: Horizontal Overflow verhindern (Regel 011-ui-css-mobile.mdc 005.004) */
/* Wetter footer.css: overflow-x, position, left/right */
.base-footer {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin-top: 28px;
    padding: 18px 0;
    color: rgba(255,255,255,.85);
    background: linear-gradient(180deg, var(--nav2), var(--color-footer-bg));
    border-top: 1px solid rgba(255,255,255,.10);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
}

.base-footer-link {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    text-decoration: none;
    color: rgba(255,255,255,.85);
    opacity: .9;
    padding-left: 2px;
    padding-right: 2px;
}

.base-footer-link:hover {
    opacity: 1;
}

.base-footer-links {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.base-footer-copyright {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-small);
    line-height: var(--line-height-base);
    color: rgba(255,255,255,.85);
    opacity: .85;
}

.base-footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    justify-content: space-between;
}

/* VERPFLICHTEND: Footer-Breite = Content-Breite (011-ui-footer.mdc 003) */
/* max-width: 1600px (var(--max)) wie .main-content auf allen Desktop-/Widescreen-Breakpoints */

/* Mobile-First: Responsive Design - Regel 022: 4 Breakpoints */
/* Basis-Styles gelten für mobile (max-width: 576px) - keine Media Query erforderlich */

/* Tablet/iPad (min-width: 600px) */
@media (min-width: 600px) {
    .base-footer {
        padding: 20px;
        max-width: 100%;
    }
}

/* Kleiner Desktop/13-Zoll (min-width: 1024px) */
@media (min-width: 1024px) {
    .base-footer {
        max-width: var(--max);
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Großer Desktop/Widescreen (min-width: 1440px) */
@media (min-width: 1440px) {
    .base-footer {
        max-width: var(--max);
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}
