/* Atlas of Lives — compact footer restored after Simple mode update. */
.site-footer {
    padding: 1.35rem 1.25rem;
    border-top: 1px solid var(--line);
}

.footer-compact {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
}

.footer-compact .footer-bottom {
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--muted);
    font-size: .82rem;
}

.footer-compact .footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .75rem 1.35rem;
}

.footer-compact .footer-links a {
    color: var(--muted);
    text-decoration: none;
}

.footer-compact .footer-links a:hover,
.footer-compact .footer-links a:focus-visible {
    color: var(--forest);
}

@media (max-width: 720px) {
    .site-footer {
        padding: 1.2rem 1rem;
    }

    .footer-compact {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-compact .footer-links {
        justify-content: flex-start;
    }
}
