/** Shopify CDN: Minification failed

Line 93:25 Unexpected "{"
Line 93:34 Expected ":"
Line 93:41 Unexpected "{"

**/


/* CSS from section stylesheet tags */
.blog-featured-articles {
        background-color: var(--background-color);
        color: var(--text-color);
        background-image: var(--background-image);
    }

    .blog-featured-articles .article-card .article-card__excerpt p{
            letter-spacing: 0;
    }

    @media (min-width: 1024px) {
        .blog-featured-articles {
            background-color: var(--background-color-desktop);
            color: var(--text-color-desktop);
        }
        .blog-featured-articles .article-card:nth-of-type(even) {
            padding-left: 146px;
        }

        .blog-featured-articles .article-card:nth-of-type(odd) {
            padding-right: 146px;
        }

        .blog-featured-articles .article-card:nth-of-type(1) {
            grid-column: 1 / -1;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 146px;
            overflow: hidden;
        }

        .blog-featured-articles .article-card:nth-of-type(1) .article-content {
            padding-left: 146px;
        }

        .blog-featured-articles .article-card .article-card__kicker {
            background-color: none;
            border: 1px solid var(--text-color);
        }

        .blog-featured-articles .article-card:nth-of-type(1) .article-card__kicker {
            margin-bottom: 10px
        }

        .blog-featured-articles .article-card:nth-of-type(1) .article-image {
            order: 2;
            width: calc(100% + 146px);
        }

        .blog-featured-articles .article-card h2 {
            font-size: 34px
        }

        .blog-featured-articles .article-card:nth-of-type(3) {
            padding-top: 60px
        }

        .blog-featured-articles .article-card .article-card__excerpt {
            font-size: 18px
        }
    }

     @media (max-width: 768px) {
        .blog-featured-articles .article-card h2 {
            font-size: 25px
        }

        .blog-featured-articles .article-card .article-card__excerpt {
            font-size: 14px
        }
    }
.products-section {
      background-color: var(--background-color);
    }
    .section-heading {
        color: var(--heading-color);
    }
    .bullet-color{ 
      background-color: var(--bullet-color);
    }
    @media (min-width: 768px) {
      .products-section-{{ section.id }} {
        background-color: var(--background-color-desktop);
      }
      .section-heading {
          color: var(--heading-color-desktop);
      }
      .bullet-color{ 
        background-color: var(--bullet-color-desktop);
      }
    }

/* CSS from block stylesheet tags */
.block-body {
        color: var(--text-color);
    }
    @media (min-width: 768px) {
        .block-body {
            color: var(--text-color-desktop);
        }
    }