.site-footer {
    background: var(--paper);
    border-top: 1px solid rgba(55, 44, 34, 0.12);
    padding: 36px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.footer-left {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.footer-left img {
    display: block;
    width: 108px;
    height: auto;
}

.footer-left span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-center {
    justify-self: center;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.footer-right {
    justify-self: end;
    text-align: right;
}

.footer-right img {
    display: block;
    width: 72px;
    height: auto;
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {
    .site-footer {
        padding: 34px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-self: center;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 10px;
    }

    .footer-left img {
        width: 46px;
    }

    .footer-right img {
        width: 68px;
        margin: 0 auto;
    }
}
