/* Shared public footer -- the styles for templates/blog/_footer.html.

   Loaded by base.html for EVERY page, deliberately. This used to be copy-pasted
   into both blog.css and seo.css, so the footer only looked right on a page that
   happened to load one of those two. testimonials/index.html included the same
   partial but loaded neither, and shipped an unstyled footer: default-blue
   underlined links, no border, no centering.

   Keeping it here means the CSS can no longer fall out of step with the partial.
   The rules simply never match on a page that does not include the footer. */

.pub-footer { border-top: 1px solid var(--border-color, #2a2a2a); margin-top: 56px; padding: 32px 20px 44px; }
.pub-footer-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.pub-footer-brand { font-weight: 800; font-size: 18px; color: var(--text-primary, #fff); margin-bottom: 14px; }
.pub-footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; margin-bottom: 16px; }
.pub-footer-links a { color: var(--text-tertiary, #a0a0a0); text-decoration: none; font-size: 14px; }
.pub-footer-links a:hover { color: var(--accent-primary, #FE2C55); }
.pub-footer-copy { font-size: 12.5px; color: var(--text-muted, #707070); }
