footer {
    padding: 24px 0 48px;
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 1rem 2rem;
    align-items: center;
}

.footer-grid .col {
    font-size: 0.95rem;
}

.footer-label {
    display: block;
    font-weight: 800;
    letter-spacing: 0.04em;
    font-variant-caps: all-small-caps;
    color: var(--fg);
    opacity: 0.85;
    margin-bottom: .25rem;
}

.footer-grid a {
    color: var(--fg);
    text-decoration: none;
    font-weight: 600;
}

.footer-grid a:hover,
.footer-grid a:focus {
    text-decoration: underline;
}

.footer-grid .copyright {
    justify-self: end;
    white-space: nowrap;
    color: var(--muted);
}

@media (max-width: 720px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid .copyright {
        justify-self: center;
    }
}