/**
 * Correcties uit de site-audit van 21-08-2026.
 * Los bestand zodat een nieuwe mix-build (public/app.css) deze fixes niet overschrijft.
 */

/* Footer op mobiel: de kolommen stonden met een vaste gap van 104px naast elkaar
   zonder te wieberen, waardoor de contactkolom buiten het scherm viel en de hele
   site horizontaal meescrolde. */
footer .footer-links,
footer .footer-top-items {
  min-width: 0;
}

footer .contact-column,
footer .contact-column .email,
footer .contact-column .address {
  min-width: 0;
}

footer .contact-column .email a,
footer .contact-column .address a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 767px) {
  footer .footer-links {
    flex-wrap: wrap;
    gap: 32px;
  }
}
