.footer {
    background: var(--color-light);
    color: #6b544b;
    padding-block: clamp(28px, 6vh, 56px);
}

.footer_inner {
    width: min(100% - 2rem, 1200px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer_contact {
    font-style: normal;
    font-family: var(--font-base);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.footer_name {
    margin: 0 0 .5rem 0;
    font-family: var(--font-base);
    font-weight: 600;
    font-size: var(--fs-text-lg);
    color: var(--color-dark);
}

.footer_contact a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

.footer_contact a:hover {
    opacity: .85;
}

.footer_impressum {
    text-align: center;
    margin-top: clamp(20px, 4vh, 36px);
}

.footer_impressum a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
    opacity: .9;
}

.footer_impressum a:hover {
    opacity: 1;
}

.footer_map {
    width: 100%;
    height: 250px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
}

.footer_map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (min-width: 1024px) {
    .footer_inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: clamp(16px, 4vw, 48px);
    }

    .footer_map {
        height: 300px;
        margin-bottom: 0;
    }

    .footer_contact {
        font-size: clamp(16px, 1.1vw, 18px);
    }
}
