/**
 * Clonable Custom Content Blocks - Base Styles
 * Version: 1.0.0
 */

/* Hide all language-specific blocks by default */
/* These will be shown via dynamic CSS when on the correct domain */
[class*="clonable_"] {
    display: none !important;
}

/* Default NL content is visible everywhere by default */
/* It will be hidden via dynamic CSS on domains with overrides */
.contact-default {
    display: block;
}

/* Ensure blocks maintain their layout when shown */
[class*="clonable_"],
.contact-default {
    visibility: visible;
    opacity: 1;
}
