/* ===================================
   Footer Section
   =================================== */

.footer-section {
    padding-top: 0;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr auto;
    gap: 1rem;
    align-items: end;
    padding: 1.2rem 0 2rem;
    border-top: 1px solid color-mix(in srgb, var(--border) 76%, transparent);
}

.footer-brand {
    max-width: 28rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.footer-brand p,
.footer-meta p,
.footer-meta span {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    font-weight: 600;
}

.footer-meta {
    display: grid;
    gap: 0.35rem;
    justify-items: end;
}

@media (max-width: 900px) {
    .footer-shell {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-links,
    .footer-meta {
        justify-content: flex-start;
        justify-items: start;
    }
}
