html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Trennlinie lag vorher als Inline-Style mit hartkodiertem #FEEBFF im Markup. */
.footer-rule {
    margin: 0;
    border: 0;
    border-top: 2px solid var(--color-primary-light, #FEEBFF);
}

.site-footer {
    padding: 24px;
    background-color: var(--color-bg);
    color: var(--color-neutral);
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;          /* bricht auf schmalen Screens um statt überzulaufen */
    justify-content: center;
    gap: 12px 20px;
    margin-bottom: 12px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
}

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

.footer-copy {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}