.site-footer {
    background: #1f2524;
    color: var(--color-white);
    padding: 70px 0 28px;
}

.footer-grid {
    display: grid;
    gap: 38px;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.footer-brand .brand-mark {
    background: var(--color-gold);
}

.site-footer h2 {
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 1rem;
    margin-bottom: 16px;
}

.site-footer p,
.footer-list li,
.footer-list a,
.footer-social a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
    margin-top: 22px;
    max-width: 330px;
}

.footer-list {
    display: grid;
    gap: 10px;
    list-style: none;
}

.footer-list a:hover,
.footer-social a:hover,
.footer-bottom a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    margin-top: 46px;
    padding-top: 24px;
}

@media (max-width: 880px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        align-items: start;
        flex-direction: column;
        gap: 12px;
    }
}
