.site-footer {
    padding-top: 4rem;
    background: var(--bg-dark);
    color: rgba(238,248,246,.74);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.footer-logo {
    width: var(--logo-footer-width);
    margin-bottom: 1rem;
}

.site-footer h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1rem;
}

.site-footer ul {
    display: grid;
    gap: .55rem;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: rgba(238,248,246,.78);
    text-decoration: none;
}
.site-footer a:hover { color: white; }

.footer-bottom {
    margin-top: 3rem;
    padding-block: 1.2rem;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: .88rem;
}
