/**
 * jp-602-footer-legal-justify.css — JP-602 (Bug) Footer legal/copyright text
 *
 * Bug: the footer "Unsere Angebote gelten ausschließlich für den gewerblichen
 * Bedarf …" legal paragraph (blue footer band) renders left-aligned; the
 * design specifies justified alignment (both edges flush).
 *
 * Fix: text-align: justify on that paragraph only.
 *
 * Scope: the global footer copyright block (.footer--copyright-wrapper), so it
 * applies everywhere the footer renders. CROSS-PAGE element — flagged in the PR.
 * Loaded after custom-clone.css (overrides dir) so it wins the cascade.
 */
.footer--copyright-wrapper .text-wrapper p {
    text-align: justify !important;
}
