/** Shopify CDN: Minification failed

Line 13:2 Unexpected ","

**/
.insta-editorial .wrapper-insta {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.5fr 0.8fr 0.8fr;
    gap: 20px;
    align-items: center;
  }

  ,insta-editorial .left, .insta-editorial .right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .insta-editorial .center-left img, .insta-editorial .center-right img,
  .insta-editorial .center-left svg, .insta-editorial .center-right svg ,
  .insta-editorial .img.small img, .insta-editorial .img.small svg ,
  .insta-editorial .img.big img, .insta-editorial .img.big svg {
      height: 280px;
      width: 280px;
      max-width: 100%;
      object-fit: cover;
  }
  .insta-editorial .icon img {
      height: 100%;
      max-width: 100%;
      margin: 0 auto 50px;
  }

  /* CENTER TEXT */
  .insta-editorial .center {
    text-align: center;
  }

  .wrapper-insta .center h2 {
      font-family: var(--font-heading-family);
      font-weight: 600;
      font-size: 28px;
      line-height: 1.5;
      letter-spacing: 0px;
      text-align: center;
      color: var(--color-foreground-heading);
  }

  .insta-editorial .center p {
      margin: 15px auto;
      font-family: var(--font-body-family);
      font-weight: 500;
      font-size: 14px;
      line-height: 1.5;
      letter-spacing: 0px;
      text-align: center;
      text-transform: capitalize;
      width: 80%;
      color: var(--color-foreground);
  }
  .insta-editorial .btn.insta-btn {
      font-family: var(--font-heading-family);
      font-weight: 500;
      font-size: 14px;
      line-height: 1.5;
      letter-spacing: 1px;
      text-align: center;
      margin-top: 15px;
  }
  .insta-editorial .center-left svg, .insta-editorial .center-right svg, .insta-editorial .img.small svg, .img.big svg {
    border: 1px solid;
    background: #dedede;
}

  /* MOBILE */
  @media(max-width: 1000px){
    .wrapper {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px){
    .insta-editorial .wrapper-insta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: center;
    }

    .insta-editorial .center-left, .insta-editorial .center-right,
    .insta-editorial .left, .insta-editorial .right {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
  }