/* Pied de page */
footer {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
    background-color: var(--surface);
    height: var(--footer-height);
    border-top: #fd5a47 solid 0.5rem;
}

footer p,
.footer-nav a {
    color: #fd5a47;
    font-weight: bold;
    text-decoration: none
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap; /* allow wrapping on small screens */
}

.footer-nav,
.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}