/*
    Bueren / Footer
    ===============
    Vierspaltiges Markenraster (Marke / Mitgliedschaften / Rechtliches / Kontakt)
    plus untere Leiste mit Copyright. Inhalte sind bewusst statisch
    (siehe partials/_footer.html) – Anpassungen am Text direkt im Partial
    vornehmen, hier nur das Aussehen.
*/

.footer {
    width: 100%;
    background: var(--farbe-surface-container-highest);
}

.footer__raster {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gutter);
    padding-block: 48px;
}

@media (min-width: 768px) {
    .footer__raster {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer__marke {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 800;
    color: var(--farbe-primary);
}

.footer__claim {
    max-width: 200px;
    font-size: 14px;             /* Skalenstufe "body-sm" */
    line-height: 1.5;
    color: var(--farbe-on-surface-variant);
}

.footer__titel {
    margin-bottom: 16px;
    font-size: 12px;             /* Skalenstufe "label-md" */
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--farbe-primary);
}

.footer__liste {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.footer__liste-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--farbe-primary);
    margin-bottom: 4px;
}

.footer__liste a,
.footer__kontakt {
    font-size: 14px;             /* Skalenstufe "body-sm" */
    line-height: 1.5;
    color: var(--farbe-on-surface-variant);
    text-decoration: none;
}

.footer__liste a:hover {
    color: var(--farbe-primary);
}

.footer__leiste {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 24px;
    border-top: 1px solid var(--farbe-outline-variant);
}

.footer__copyright {
    font-size: 14px;
    color: var(--farbe-on-surface-variant);
    opacity: 0.7;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    display: inline-flex;
    color: var(--farbe-on-surface-variant);
    transition: color var(--uebergang);
}

.footer__social a:hover {
    color: var(--farbe-secondary);
}

.footer__verbände {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 16px;
    column-gap: 32px;
}

.footer__verband-link {
    display: inline-block;
}

.footer__verband-logo {
    display: block;
    max-width: 160px;
    max-height: 70px;
    width: auto;
    height: auto;
}
