/* Gewährleistung und Widerruf: gemeinsamer Rahmen */
.footer-main .kunstrasen--legal-box {
    display: block;
    position: static;
    float: none;
    clear: both;
    box-sizing: border-box;
    width: 206px;
    max-width: 100%;
    margin: 24px auto;
    padding: 16px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

/* Bild mit Platz für den Klickhinweis */
.footer-main .kunstrasen--legal-image {
    display: block;
    position: relative;
    width: 150px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 30px;
}

.footer-main .kunstrasen--legal-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Lupe unter dem Bild */
.footer-main .kunstrasen--legal-image::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 25px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a5c2a' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='10' cy='10' r='6'/%3E%3Cpath d='m15 15 6 6'/%3E%3C/svg%3E") center / contain no-repeat;
    pointer-events: none;
}

.footer-main .kunstrasen--legal-image::after {
    content: "PDF öffnen";
    position: absolute;
    bottom: 3px;
    left: 48px;
    color: #1a5c2a;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    pointer-events: none;
}

.footer-main .kunstrasen--legal-image:hover::after {
    text-decoration: underline;
}

.footer-main .kunstrasen--legal-image:focus-visible {
    outline: 2px solid #1a5c2a;
    outline-offset: 4px;
}

/* Widerrufsbutton mit Abstand zum Bild */
.footer-main a.kunstrasen--withdrawal-link {
    display: block;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin-top: 32px;
    padding: 9px 8px;
    background: #1a5c2a;
    border: 1px solid #1a5c2a;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    white-space: normal;
}

/* Trennlinie zwischen den beiden Funktionen */
.footer-main a.kunstrasen--withdrawal-link::before {
    content: "";
    position: absolute;
    top: -17px;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e2e2;
    pointer-events: none;
}

.footer-main a.kunstrasen--withdrawal-link:hover,
.footer-main a.kunstrasen--withdrawal-link:focus {
    background: #14471f;
    border-color: #14471f;
    color: #fff;
}

/* Breite Bildschirme: fünf Spalten über die gesamte Breite */
@media screen and (min-width: 1600px) {
    .footer-main > .container {
        width: 100%;
        max-width: none;
        padding-left: 40px;
        padding-right: 40px;
        box-sizing: border-box;
    }

    .footer-main .footer--columns {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr)) 206px;
        gap: 28px;
        align-items: start;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .footer-main .footer--columns::before,
    .footer-main .footer--columns::after {
        display: none;
    }

    .footer-main .footer--columns > .footer--column {
        float: none;
        width: auto;
        min-width: 0;
        margin: 0;
        padding: 0;
    }

    .footer-main .footer--columns > .kunstrasen--legal-box {
        margin: 0;
        justify-self: end;
    }
}