/**
 * Elementor Network Templates - Conditional Visibility CSS
 * 
 * This CSS file provides the visibility control for conditional inner sections.
 * Sections with the ent-conditional-hidden class are hidden via display: none.
 * 
 * OPTION 1 ARCHITECTURE: Post-render CSS class injection
 * All sections are always rendered into the DOM. Visibility is controlled
 * by adding/removing the ent-conditional-hidden CSS class.
 */

.ent-conditional-hidden {
	display: none !important;
}
