/* Lemon Blog — Footer */

.site-footer { background: var(--bg-base); border-top: 0.5px solid var(--border-subtle); padding: 40px 0 24px; margin-top: auto; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.footer-brand__logo { font-size: 15px; font-weight: 600; color: var(--text-primary); letter-spacing: -0.3px; text-decoration: none; display: inline-block; margin-bottom: 8px; }
.footer-brand__logo:hover { opacity: 0.7; color: var(--text-primary); }
.footer-brand__lemon { color: var(--accent); }
.footer-brand__tagline { font-size: 12px; color: var(--text-faint); max-width: 220px; line-height: 1.5; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col__title { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.footer-col__list { list-style: none; }
.footer-col__list li { margin-bottom: 8px; }
.footer-col__list a { font-size: 13px; color: var(--text-faint); text-decoration: none; transition: color var(--transition-fast); }
.footer-col__list a:hover { color: var(--text-secondary); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 0.5px solid var(--border-subtle); gap: 12px; flex-wrap: wrap; }
.footer-bottom__copy { font-size: 12px; color: var(--text-faint); }
.footer-bottom__links { display: flex; gap: 16px; }
.footer-bottom__links a { font-size: 12px; color: var(--text-faint); text-decoration: none; transition: color var(--transition-fast); }
.footer-bottom__links a:hover { color: var(--text-muted); }

@media (max-width: 600px) { .footer-inner { flex-direction: column; gap: 24px; } .footer-links { gap: 24px; } .footer-bottom { flex-direction: column; align-items: flex-start; } }
