/** Shopify CDN: Minification failed

Line 196:4 Unexpected "{"
Line 196:5 Expected identifier but found "%"
Line 196:35 Unexpected "{"
Line 196:36 Expected identifier but found "%"

**/

.blog-posts__wrapper {
  overflow: hidden;
  padding: 60px 0;
  background-color: var(--background-light);
}

.blog-posts__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
}

.blog-posts__header h2 {
  margin-bottom: 0;
}

.blog-posts__item .ArticleItem__Image {
  aspect-ratio: 268/335;
}

.blog-posts__item .ArticleItem__Image {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.blog-posts__item .ArticleItem__Content {
  padding-right: 10px;
}

.blog-posts__item .ArticleItem__Title {
  margin-top: 20px;
  margin-bottom: 10px;
  color:var(--color--body);
}

.blog-posts__item .ArticleItem__Title a {
  display: block;
  font-family: var(--font--heading--family);
  font-weight: var(--font--heading--weight);
  text-transform: var(--font--heading--uppercase);
  font-weight: var(--font--heading--normal-weight);
  font-size: var(--font--block-heading--size);
  line-height: 1.3333333333em;
}

.blog-posts__item .ArticleItem__Link {
  display: none;
}

.blog-posts__item .ArticleItem__Category {
  display: block;
  padding-top: 5px;
  position: relative;
  padding-left: 11px;
}

.blog-posts__item .ArticleItem__Category:before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  position: absolute;
  top: 14px;
  left: 0;
  background: var(--primary);
  border-radius: 100px;
}

.blog-posts__item .ArticleItem__Excerpt {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  color:var(--color--body);
  margin-bottom: 0;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-posts__item:first-child,
  .blog-posts__item:last-child {
    width: 365px;
  }

  .blog-posts__item:first-child {
    padding-left: 20px;
  }

  .blog-posts__item:last-child {
    padding-right: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .blog-posts__item {
    width: 355px;
    padding: 0 10px;
  }

  .blog-posts__header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-posts__wrapper .Container {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .blog-posts__wrapper {
    padding: 40px 0;
  }

  .blog-posts__item .ArticleItem__Category {
    max-width: fit-content;
    margin: auto;
  }

  .blog-posts__wrapper .flickity-slider {
    margin-left: 0;
  }

  .blog-posts__header {
    margin-bottom: 30px;
    justify-content: center;
  }

  .blog-posts__link {
    margin: 30px auto 0;
    display: block;
    width: fit-content;
    white-space: nowrap;
  }

  .blog-posts__content {
    display: block;
  }

  .blog-posts__item {
    width: 318px;
    padding: 0 5px;
  }

  .blog-posts__item .ArticleItem__Content {
    text-align: center;
    padding: 0 10px;
    opacity: 1;
    transition: opacity 0.5s;
  }

  .blog-posts__item .ArticleItem__Image {
    aspect-ratio: 44/55;
  }

  .blog-posts__item .ArticleItem__Image,
  .blog-posts__item .ArticleItem__ImageWrapper .svg {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: transform 0.5s;
  }

  .blog-posts__item:not(.is-selected) .ArticleItem__Image,
  .blog-posts__item:not(.is-selected) .ArticleItem__ImageWrapper .svg  {
    -webkit-transform: scale(0.844);
    transform: scale(0.844);
    transition: transform 0.5s;
   /* margin-left: -24px;*/
  }

  .blog-posts__item:not(.is-selected) .ArticleItem__Image {
    aspect-ratio: 65/81;
  }

  .blog-posts__item:not(.is-selected) .ArticleItem__Content {
    opacity: 0;
    transition: opacity 0.5s;
  }
}

@media screen and (min-width: 1025px) {
  .blog-posts__content {
    display: flex;
    padding:0 10px;
    {% comment %} margin: 0 -10px; {% endcomment %}
  }

  .blog-posts__item {
    width: 25%;
    padding: 0 10px;
  }
}