/** Shopify CDN: Minification failed

Line 255:14 Unexpected "{"
Line 255:23 Expected ":"

**/
.blog-articles {
  display: grid;
  grid-gap: var(--layout-space-2);
  column-gap: var(--grid-mobile-horizontal-spacing);
  row-gap: var(--grid-mobile-vertical-spacing);
}

.blog-articles .card-wrapper {
  width: 100%;
}

.banner-logo img {
  height: auto;
}

@media screen and (min-width: 990px) {
  .blog-articles {
    grid-template-columns: 1fr 1fr;
    column-gap: var(--grid-desktop-horizontal-spacing);
    row-gap: var(--grid-desktop-vertical-spacing); 
  }

  .categories {
    margin-top: 110px;
    margin-bottom: -45px;
  }

  .blog-articles--collage > *:nth-child(3n + 1),
  .blog-articles--collage > *:nth-child(3n + 2):last-child {
    grid-column: span 2;
    text-align: center;
  }

  .blog-articles--collage > *:nth-child(3n + 1) .card,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .card {
    text-align: center;
  }

  .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--small .ratio::before,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--small .ratio::before {
    padding-bottom: 22rem;
  }

  .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--medium .ratio::before,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--medium .ratio::before {
    padding-bottom: 44rem;
  }

  .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--large .ratio::before,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--large .ratio::before {
    padding-bottom: 66rem;
  }

  .klaviyo-container {
    .blog-logo, h5, p {
      margin-left: 15px;
    }
    .klaviyo-form {
      button {
        width: 100px !important;
        margin-left: -50px !important;
      }
    }
  }
}

@media screen and (min-width: 990px) {
  .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--small .ratio .ratio::before,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--small .ratio .ratio::before {
    padding-bottom: 27.5rem;
  }

  .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--medium .ratio::before,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--medium .ratio::before {
    padding-bottom: 55rem;
  }

  .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--large .ratio::before,
  .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--large .ratio::before {
    padding-bottom: 82.5rem;
  }
}

 .main-blog {
    background: linear-gradient(#330E65, #8C0CC6);

    .pagination__list li {
      border: 1px solid #fff;
      color: #fff;
    }
      
    li:has(a.pagination__item--current) {
      background: #fff;
      color: #622C82;
      font-weight: bold;
    }

    a.pagination__item--current::after {
      display: none;
    }

    li:has(.pagination__item--prev), li:has(.pagination__item--next) {
      display: none;
    }
  }

  .card__content {
    color: #fff;

    .card__information {
      width: 95%;

      .article-card__info {
        font-size: 12px;
      }
    }

    span img {
      height: 23px;
    }
  } 

  .article--full {
    background: #fff;

    .card__heading .full-unstyled-link {
          color: #622C82;
    }

    .card__content {
          display: flex;
          flex-direction: column;
          justify-content: center;

          .card__information {
            margin-left: auto;
            margin-right: auto;
            width: 95%;
            color: #707070;

            .article-card__info {
              display: flex;
              flex-direction: row;
              font-weight: normal;
              margin: 30px 0;
            }

            .pill.first {
              display: block;
              padding: 8px 16px;
              border-radius: 20px;
              background: #7F51AB;
              color: #fff;
              font-size: 14px;
              text-decoration: none;
              width: 100%;
              text-align: center;
              margin-bottom: 30px;
            }
        
            span {
              margin-right: 15px;
              display: flex;
              align-items: center;
              flex-direction: row;
              flex-wrap: wrap;

              img {
                filter: invert(47%) sepia(0%) saturate(0%) hue-rotate(355deg) brightness(92%) contrast(91%);
                margin-right: 10px; 
              }
            }
          }
        }

  }

  .article--half, .article--third {
    .card__content::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px; 
        background: linear-gradient(
          to right,
          rgba(255, 255, 255, 0.6), 
          rgba(255, 255, 255, 0)
        );
      }

    .card__content {
          display: flex;
          flex-direction: column;
          justify-content: center;

          .blog-tag {
            color: #fff;
            font-size: 16px;
          }

          .card__information {
            margin-left: auto;
            margin-right: auto;
            width: 95%;

            .full-unstyled-link {
              font-size: 25px;
              margin-bottom: 20px;
            }

            .article-card__info {
              display: flex;
              flex-direction: row;
            }        
            span {
              margin-right: 15px;
              display: flex;
              align-items: center;
              flex-direction: row;
              flex-wrap: wrap;

              img {
                margin-right: 10px; 
              }
            }
          }
        }
  }

  @media screen and (min-width: 990px) and (max-width: 1300px) {
    .article--full {
      & .card-wrapper {
        & .card__content {
          & .card__information {
            width: 80% !important;

            .pill.first {
              width: 60% !important;
            }
          }
        }
      }
    }
  }

  @media screen and (min-width: 990px) {
    .section-{{ section.id }}-padding {
      padding-top: var(--padding-sections-desktop);
      padding-bottom: var(--padding-sections-desktop);
    }

    .pagination-wrapper {
      padding: 60px;
    }

    .blog-articles {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-gap: 1.5rem;
    }

    .article--full {
      grid-column: 1 / -1; 
      padding: 50px 0;

      .card-wrapper {
        height: 453px;
        background: #fff;

        .card:not(.ratio) {
          flex-direction: row-reverse;
        }

        .article-card__image-wrapper {
          margin: -50px 0;
        }

        .card__inner, .card__content {
          width: 50%;
        }

        .card__content {
          display: flex;
          flex-direction: column;
          justify-content: center;

          .card__information {
            margin-left: auto;
            margin-right: auto;
            width: 70%;
            color: #707070;

            .article-card__info {
              display: flex;
              flex-direction: row;
              font-size: 18px;
            }

            .pill.first {
              display: block;
              padding: 8px 16px;
              border-radius: 20px;
              background: #7F51AB;
              color: #fff;
              font-size: 14px;
              text-decoration: none;
              width: 40%;
              text-align: center;
              font-weight: bold;
              padding: 20px 0;
              border-radius: 40px;
            }
        
            span {
              margin-right: 15px;
              display: flex;
              align-items: center;
              flex-direction: row;
              flex-wrap: wrap;

              img {
                filter: invert(47%) sepia(0%) saturate(0%) hue-rotate(355deg) brightness(92%) contrast(91%);
                margin-right: 10px; 
              }
            }
          }
        }

        .card__heading .full-unstyled-link {
          color: #622C82;
          font-size: 50px;
        }
      }
    }

    .card-information {
      span {
        margin-right: 15px;
        display: flex;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
      }
    }

    .article--half {
      grid-column: span 6;

      .card__content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem 1.5rem;
        background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
        color: #fff;
        z-index: 2;

        .article-card__info {
          display: flex;
          flex-direction: row;
          font-size: 18px;

          .full-unstyled-link {
            font-size: 25px;
          }

            span {
              margin-right: 15px;
              display: flex;
              align-items: center;
              flex-direction: row;
              flex-wrap: wrap;

              img {
                margin-right: 10px;
              }
            }
        }
      }
    }

    .article--third {
      grid-column: span 4;

      .card__content::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px; /* thickness of the line */
        background: linear-gradient(
          to right,
          rgba(255, 255, 255, 0.6), 
          rgba(255, 255, 255, 0)
        );
      }

      .card__content {
        color: #fff;

        .card__heading {
          margin-bottom: 50px;
        }

        .blog-tag {
          color: #fff;
        }

        .article-card__info {
          display: flex;
          flex-direction: row;
          font-size: 18px;
          
            span {
              margin-right: 15px;
              display: flex;
              align-items: center;
              flex-direction: row;
              flex-wrap: wrap;

              img {
                margin-right: 10px;
              }
            }
        }
      }
    }
  }
.blog-banner {
  color: #fff;
  padding: 60px 20px;
}
.blog-banner .banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: row-reverse;

  p {
    font-size: 25px;
  }
}
.blog-banner .subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.blog-banner h1 {
  font-size: 60px;
  margin: 5px 0;
}
.blog-banner p {
  margin-bottom: 20px;
  font-size: 18px;
}
.categories {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}
.categories .pill {
  padding: 8px 16px;
  border-radius: 13px;
  background: white;
  color: #622C82;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;  
}
.categories .pill:hover {
  background: #9d4edd;
  color: #fff;
}

.blog-tagline {
  margin-left: -10px;
  margin-bottom: -10px;
}

@media only screen and (max-width: 768px) {
  .page-width {
    padding: 0;
  }
  .pagination-wrapper {
      padding: 30px;
  }
  .klaviyo-container {
    margin: 10px;
    .blog-signup {
      margin-top: -50px;
      .klaviyo-form {
        input {
          width: 250px; 
          margin-left: -30px;
        }
        button {
          margin-right: -35px;
        }
      }
    }    
  }
  .blog-banner {
    padding: 30px 0;
    .banner-content {
      flex-direction: column;

      .banner-text {
        h1 {
          font-size: 50px;
        }
        p {
          text-align: center;
        }
        h1 {
          margin-left: 25px;
        }
        .blog-tagline {
          margin-left: 15px;
        }
      }

      .banner-logo {
        padding-bottom: 15px;
      }

      .categories {
        margin-top: 60px;
        padding: 0 30px;
      }
    }
  } 
  .blog-articles {
    row-gap: 0;
    .article--full {
      .card__content {
        .card__information {
          width: 85%;
          align-items: center;

          .article-card__info {
            margin: 30px 0;
            font-size: 13px;
          }

          .blog-tag {
            font-size: 25px;
            margin-right: auto;
          }
          .full-unstyled-link {
            font-size: 50px;
          }
          .pill.first {
            padding: 15px 0;
            width: 90%;
            margin-bottom: 30px;
            font-size: 17px;
            font-weight: bold;
            border-radius: 40px;
          }
        }
      }
    }
    .article--half, .article--third {
      padding: 20px;
    }
  }
}