/*
Theme Name: Divi Child
Theme URI: https://example.com
Description: A child theme for the Divi theme
Author: Phoebe
Author URI: https://example.com
Template: Divi
Version: 1.0.0
*/
/* Force Divi to use tablet styles at 1020px */
@media (max-width: 1020px) {
    /* Override Divi's default tablet styles */
    .et_pb_section, 
    .et_pb_row, 
    .et_pb_column {
        display: block; /* Ensures tablet layout activates */
    }

    /* Add any additional tablet-specific styles here */
}

/* Optional: Reset Divi's default tablet breakpoint (980px) */
@media (max-width: 980px) {
    /* Prevent conflicts with the new breakpoint */
    .et_pb_section, 
    .et_pb_row, 
    .et_pb_column {
        display: block;
    }
}