.site-footer {
    padding: 40px 0 34px;
    color: #fff;
    background: #595b5d;
}

.site-footer__inner {
    display: grid;
    justify-items: center;
    gap: 18px;
    text-align: center;
}

.site-footer__brand {
    display: inline-block;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 0;
}

.site-footer__nav a {
    padding: 0 12px;
    color: rgba(255,255,255,.9);
    border-right: 1px solid rgba(255,255,255,.28);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.site-footer__nav a:last-child {
    border-right: 0;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer__social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.site-footer__social a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    text-decoration: none;
    transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-1px);
}

.site-footer__social .icon {
    width: 19px;
    height: 19px;
}

.site-footer p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.site-footer__copyright {
    padding-top: 3px;
}

@media (max-width: 600px) {
    .site-footer__nav {
        gap: 10px 16px;
    }

    .site-footer__nav a {
        padding: 0;
        border-right: 0;
    }
}
