/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* Default: Show desktop container */
[data-device="desktop"] {
    display: block !important;
}

[data-device="mobile"] {
    display: none !important;
}

/* On mobile screens (768px and below): Show mobile, hide desktop */
@media (max-width: 768px) {
    [data-device="desktop"] {
        display: none !important;
    }
    
    [data-device="mobile"] {
        display: block !important;
    }
}

/* On tablet/desktop screens (769px and above): Show desktop, hide mobile */
@media (min-width: 769px) {
    [data-device="desktop"] {
        display: block !important;
    }
    
    [data-device="mobile"] {
        display: none !important;
    }
}
