/**
 * Content Blocks Developer — Frontend Styles
 *
 * Visibility helpers for responsive show/hide.
 * All other visual presentation comes from the block editor theme.
 *
 * @package ContentBlocksDeveloper
 */

/* ---- Visibility helpers ---- */
@media (min-width: 1025px) {
	.hide-desktop {
		display: none !important;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.hide-tablet {
		display: none !important;
	}
}

@media (max-width: 768px) {
	.hide-mobile {
		display: none !important;
	}
}
