/** Shopify CDN: Minification failed

Line 126:13 Expected identifier but found whitespace
Line 126:15 Unexpected "{"
Line 126:24 Expected ":"
Line 127:10 Expected identifier but found whitespace
Line 127:12 Unexpected "{"
Line 127:21 Expected ":"

**/
        .image-bento-item.square{
    aspect-ratio:1/1;
    min-height:auto;
  }

  .image-bento-item.portrait{
    aspect-ratio:4/5;
    min-height:auto;
  }

  .image-bento-item.landscape{
    aspect-ratio:16/9;
    min-height:auto;
  }
    .image-bento-grid{
      display:grid;
      grid-template-columns:1.5fr 1fr;
      gap:15px;
    }


    .image-bento-item.large{
      min-height:380px;
    }

    .image-bento-item.small{
      min-height:380px;
    }

    .image-bento-content{
      position:absolute;
      left:40px;
      bottom:40px;
      z-index:2;
    }

    .image-bento-content .subheading{
      font-size:12px;
      letter-spacing:2px;
      text-transform:uppercase;
      margin-bottom:10px;
    }

    .image-bento-content h3{
      margin:0 0 20px;
    }
    .image-bento-content{
    position:absolute;
    z-index:2;
    max-width:80%;
  }

  /* Top */
  .content-top-left{
    top:40px;
    left:40px;
  }

  .content-top-center{
    top:40px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
  }

  .content-top-right{
    top:40px;
    right:40px;
    text-align:right;
  }

  /* Center */
  .content-center-left{
    top:50%;
    left:40px;
    transform:translateY(-50%);
  }

  .content-center{
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
  }

  .content-center-right{
    top:50%;
    right:40px;
    transform:translateY(-50%);
    text-align:right;
  }

  /* Bottom */
  .content-bottom-left{
    bottom:40px;
    left:40px;
  }

  .content-bottom-center{
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
  }

  .content-bottom-right{
    bottom:40px;
    right:40px;
    text-align:right;
  }


    .image-bento-overlay{
 position:absolute;
  inset:0;
  background: {{ section.settings.overlay_color }};
  opacity: {{ section.settings.overlay_opacity | times: 0.01 }};
  z-index:1;
    }

    .bottom-grid{
      display:grid;
      grid-template-columns:1fr 1.5fr;
      gap:15px;
      margin-top:15px;
    }

    @media screen and (max-width:749px){

  .image-bento-grid,
  .bottom-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:10px;
  }
      .image-bento-item{
        min-width:85%;
        scroll-snap-align:start;
      }

      .image-bento-item.large,
      .image-bento-item.small{
        min-height: 300px;
      }

      .image-bento-content{
        left:20px;
        bottom:20px;
      }
    }