/* FOOTER */
@import url('../css/variables.css');

#site-footer {
    background: var(--color-footer-header-bg);
    border-top: 1px solid var(--color-divider-border);
    margin-top: 60px;
}

.footer-inner {
    padding: 24px 20px;

    display: flex;
    flex-direction: column;
    gap: 16px;

    text-align: center;
}

.footer-brand img {
    height: 52px;
    width: auto;
}

.footer-copyright {
    font-size: 14px;
    color: var(--color-paragraphe);
    line-height: 1.5;
}

.footer-navigation ul {
    display: flex;
    justify-content: center;
    gap: 20px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-navigation a {
    text-decoration: none;
    color: var(--color-paragraphe);
    font-size: 14px;
}

.footer-navigation a:hover {
    color: var(--color-title);
}

/*************desktop************/
@media (min-width: 768px) {

    .footer-inner {
        max-width: 1180px;
        margin: 0 auto;

        min-height: 70px;
        padding: 0 20px;

        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        text-align: left;
    }

    .footer-brand img {
        height: 52px;
    }

    .footer-copyright {
        flex: 1;
        text-align: center;
    }

    .footer-navigation ul {
        gap: 24px;
    }
}