footer {

}

footer .page-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    background-color: #74B637;
    text-align: center;
    color: #FFFFFF;
    font-family: Calibri, sans-serif;
    font-size: clamp(12px, 5vw, 16px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: Calibri, sans-serif;
    font-size: clamp(12px, 2vw, 16px);
    padding: 0.25rem 0.15rem;
    position: relative;
}

/* Senkrechter Strich zwischen Links, außer nach dem letzten */
.footer-links a:not(:last-child)::after {
    content: " |";
    color: #FFFFFF;
    margin-left: 0rem;  /* Abstand nach rechts */
    margin-right: 0rem; /* Abstand nach links */
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ==========================
   Besonderheit AGBs
   ========================== */

.agb p {
    text-align: center;    /* Blocksatz */
    hyphens: auto;          /* Silbentrennung */
    line-height: 1.5;
    margin-bottom: 1rem;    /* Abstand zwischen Absätzen */
    font-size: clamp(12px, 5vw, 16px);
    font-weight: bold;
}

.agb p br {
    content: "";
    margin-bottom: 0.5rem;
    display: block;
}

/* ==========================
   AGB: Listen im Blocksatz
   ========================== */
.agb-list {
    text-align: justify;      /* Blocksatz */
    hyphens: auto;            /* Silbentrennung */
    line-height: 1.5;

    padding-left: 0;          /* keine doppelte Einrückung */
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.agb-list li {
    margin-bottom: 0.75rem;   /* Abstand zwischen Punkten */
}