/* Footer redesign fixes — loaded after site.css so these win.
   Root cause of the original mess: footer.php's <footer> was missing the
   `pm-section` class, so none of the scheme's background/text-colour/
   padding ever applied (footer rendered on bare white with default
   browser text), and it used a couple of unstyled classes
   (footer-03__addr, footer-03__social) instead of the ones site.css
   actually defines. footer.php now uses the correct classes; these
   rules fix the column layout and match footer-credit.css's light
   variant, which site.css never turns on by default. */

.footer-03__top{grid-template-columns:1fr;gap:var(--pm-space-12);padding-block:var(--pm-space-14) var(--pm-space-10)}
@media(min-width:768px){.footer-03__top{grid-template-columns:1fr}}
@media(min-width:992px){.footer-03__top{grid-template-columns:1.5fr 1.3fr}}

.footer-03__cols{grid-template-columns:1fr;gap:var(--pm-space-8)}
@media(min-width:560px){.footer-03__cols{grid-template-columns:repeat(3,minmax(0,1fr))}}

.footer-03__details{margin-top:1.1rem}
.footer-03__badges{margin-top:1.3rem}

/* Both registered services, side by side on anything wider than a phone. */
.footer-03__entities{display:grid;gap:1.6rem 2rem}
.footer-03__entities .footer-03__logo{display:block;margin-bottom:.9rem}
.footer-03__entities .footer-03__logo img{width:150px;height:auto}
@media(min-width:560px){.footer-03__entities{grid-template-columns:repeat(2,minmax(0,1fr))}}
.footer-03__entities .footer-03__details{margin-top:0;margin-bottom:0}
.footer-03__entities .footer-03__value{margin-bottom:.6rem}
.footer-03__label{line-height:1.35}

/* footer-credit.css ships dark-footer colours by default; this footer
   is pm-scheme-light, so switch the credit bar to its light variant. */
.footer-03 .footer-bottom{border-top:1px solid rgba(0,0,0,.1);margin-top:var(--pm-space-10)}
.footer-03 .footer-bottom-row{padding-block:1.4rem}
.footer-03 .back-to-top,.footer-03 .footer-credit{color:rgba(0,0,0,.55)}
.footer-03 .back-to-top:hover,.footer-03 .footer-credit:hover{color:#000}
.footer-03 .footer-credit-logo{filter:brightness(0);opacity:.75}
.footer-03 .footer-credit:hover .footer-credit-logo{opacity:1}
