 /* This prevents the Gutenburg columns from breaking between 600-780px. */

@media (max-width: 751px) {
  .wp-block-column {
      flex-basis: 100%!important;
  }
}

@media (max-width: 751px) {
  .wp-block-column:nth-child(2n) {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}

@media (min-width: 752px) {
  .wp-block-column:nth-child(2n) {
    margin-left: 0 !important;
    /* padding-left: 54px !important; - removing, created uneven layout */
  }
}

 /* Targets IE11 */
 /* Known bug with Wordpress */
 /* https://github.com/WordPress/gutenberg/issues/11183 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .wp-block-image .aligncenter {
    display: block !important;
  }
}

.wp-block-separator {
  border: none !important;
}
