/* ============================================================
   FOOTER EBOX
   ============================================================ */

.ebox-footer-bottom {
    width: 100%;
    min-height: 48px;
    padding: 12px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: #f7f3ed;
    border-top: 1px solid #e5e7eb;

    font-size: 13px;
    color: #4b5563;

    box-sizing: border-box;
}


/* ============================================================
   COPYRIGHT
   ============================================================ */

.ebox-footer-copyright {
    white-space: nowrap;
}


/* ============================================================
   LIENS DU FOOTER
   ============================================================ */

.ebox-footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    flex-wrap: wrap;
}

.ebox-footer-links a {
    color: #4b5563;
    text-decoration: none;

    transition: color .2s ease;
}

.ebox-footer-links a:hover {
    color: #6B3518;
}


/* ============================================================
   SÉPARATEURS
   ============================================================ */

.ebox-footer-links span {
    color: #9ca3af;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {

    .ebox-footer-bottom {
        flex-direction: column;
        justify-content: center;

        gap: 10px;

        padding: 16px;

        text-align: center;
    }

    .ebox-footer-copyright {
        white-space: normal;
    }

    .ebox-footer-links {
        justify-content: center;
    }
}