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

@media (max-width: 690px) {
  .wp-block-image {
    float: none !important;
    margin: 0 !important;
    width: 100% !important;
    margin-bottom: var(--theme-content-spacing) !important;
  }

  .wp-block-image img {
    width: 100% !important;
  }
}

.cjBackgroundTriangle {
  position: relative !important;
  overflow: hidden !important;
  /* make sure the ::before doesn’t escape */
}

.stk-block.cjBackgroundTriangle::before {
  content: "" !important;
  position: absolute;
  left: -50vw;
  /* extend left beyond screen edge */
  bottom: 0;
  width: 150vw;
  /* make it wider than the container */
  height: 100%;
  background: rgb(249, 250, 251);
  clip-path: polygon(100% 100%, 0 100%, 100% 10%);
  z-index: 0;
  pointer-events: none;
}