/**
* Theme Name: Blocksy Child
* Description: Blocksy Child theme
* Author: Creative Themes
* Template: blocksy
* Text Domain: blocksy
*/
/* ——————————-
Elementor & Blocksy unified breakpoints
Tablet ≤ 1000px
Mobile ≤ 760px
——————————– */
/* TABLET BREAKPOINT (tot 1000px) */
@media (max-width: 1000px) {
/* Forceer header naar ’tablet’ weergave */
.ct-header {
flex-direction: column;
}
/* MOBILE BREAKPOINT (tot 760px) */
@media (max-width: 760px) {
}
/* Pas de media query toe voor de Elementor Editor */
body.elementor-editor-active {
/* Tablet breakpoint voor de editor (stel in op 1000px) */
@media (max-width: 1000px) {
/* Forceer de tablet weergave indien nodig */
.elementor-section {
flex-direction: column !important;
}
}
/* Mobiel breakpoint voor de editor (stel in op 760px) */
@media (max-width: 760px) {
/* Forceer de mobiele weergave indien nodig */
.elementor-section {
flex-direction: column !important;
}
}
}



