/*
Theme Name: Colibri WP Child
Theme URI: https://coach-sylvia.example
Description: Child theme for Colibri WP — removes the default page-builder footer credit/copyright line and keeps custom tweaks safe from theme/plugin updates.
Author: Coach-Sylvia
Template: colibri-wp
Version: 1.0.0
Text Domain: colibri-wp-child
*/

/* Replace the default Colibri Page Builder footer copyright text
   with a custom line, using CSS generated content — no JavaScript,
   no page-builder edits, and nothing that a builder resave can undo.

   Original markup being targeted:
   <div class="... style-local-33-f5 ...">
     <div class="h-global-transition-all">
       © 2026 Coach-Sylvia. Created for free using WordPress and
       <a href="https://colibriwp.com">Colibri</a>
     </div>
   </div>

   If Colibri regenerates this section (builder reset, demo re-import),
   inspect the new block and update the selector below to match. */
.style-local-33-f5 .h-global-transition-all {
    font-size: 0;
    line-height: 0;
	white-space: nowrap !important;
}
/*  | Made with Love ♡ */

.style-local-33-f5 .h-global-transition-all::before {
    content: "© 2026 Coach-Sylvia - Alle Rechte vorbehalten";
    display: inline;
    font-size: 14px;
    line-height: normal;
	white-space: nowrap !important;
}
