feat: Enhance footer layout with logo section and company name display

This commit is contained in:
Matt Batchelder
2026-02-22 12:20:30 -05:00
parent 83a78adafb
commit 2bf9e94112
2 changed files with 18 additions and 5 deletions

View File

@@ -3417,6 +3417,14 @@ p:last-child { margin-bottom: 0; }
}
.footer-brand .logo-text { font-size: 1.5rem; color: #fff; }
.footer-logo-section { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-logo-section .custom-logo-link img,
.footer-logo-section .custom-logo {
max-height: 60px !important;
width: auto !important;
}
.footer-company-name { display: flex; align-items: center; }
.footer-company-name .company-brand { font-size: 1.5rem; color: #fff; white-space: nowrap; }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.5); margin-top: .75rem; margin-bottom: .5rem; }
.footer-location { font-size: .8rem; color: rgba(255,255,255,.8); }
.footer-location a { color: var(--color-primary); font-weight: 600; }