.site-footer {
    background: #111311;
    color: #ffffff;
}

.site-footer-inner {
    width: min(
        var(--page-width),
        calc(100% - 32px)
    );

    min-height: 56px;

    margin: 0 auto;

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

    gap: 20px;
}

.footer-name {
    color: rgba(255, 255, 255, .72);

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

.footer-links {
    display: flex;
    align-items: center;

    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, .86);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;
}

.footer-links a:hover {
    color: #ffffff;
}


/* MOBILE */

@media (max-width: 760px) {

    .site-footer-inner {
        min-height: 60px;

        gap: 12px;
    }

    .footer-name {
        display: none;
    }

    .footer-links {
        width: 100%;

        justify-content: space-between;

        gap: 14px;
    }

    .footer-links a {
        font-size: 12px;
    }
}