/** Shopify CDN: Minification failed

Line 164:3 Expected "}" to go with "{"

**/
:root {
  --article-content-spacing: 120px;
}

@media only screen and (max-width: 768px) {
  :root {
    --article-content-spacing: 56px;
  }
}

.article-featured-image.vertical {
  width: 100%;
  max-width: 688px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.article-featured-image.horizontal {
  width: 100%;
  border-radius: var(--border-radius);
  background-color: var(--color-sage-green);
  overflow: hidden;
}

.article-content {
  padding-top: var(--article-content-spacing);
}

.article-content p {
  text-align: left;
  max-width: 654px;
  margin: 0 auto;
  font-family: 'ppsupply';
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: var(--color-black);
}

.article-content h2 {
  font-family: 'esbuild';
  font-weight: 400;
  font-size: 40px;
  line-height: 38px;
  letter-spacing: -0.03em;
  font-feature-settings: 'ss02' on;
  max-width: 820px;
  margin: 0 auto;
  padding-top: var(--article-content-spacing);
  padding-bottom: 32px;
}

p.horizontal,
p.vertical,
div:not(.article-featured-image).horizontal,
div:not(.article-featured-image).vertical {
  margin: 0 auto;
  margin-top: var(--article-content-spacing);
  margin-bottom: var(--article-content-spacing);
}

p.horizontal:last-of-type,
p.vertical:last-of-type,
div:not(.article-featured-image).horizontal:last-of-type,
div:not(.article-featured-image).vertical:last-of-type {
  margin-bottom: 0;
}

.article-content img {
  width: 100%;
  max-width: 652px;
  border-radius: var(--border-radius);
}

.article-content p+p {
  padding-top: 24px;
}

.article-content .article-image-container {
  padding-top: 0;
}

.article-content .article-image-container+h2 {
  padding-top: 0;
}

.article-content .horizontal,
.article-content .horizontal img {
  width: 100%;
  max-width: 652px;
  border-radius: var(--border-radius);
}

.article-share {
  padding: 10px 24px;
  background-color: var(--color-sage-green);
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 652px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-around;
}

.article-share .btn-text svg .fill {
  fill: var(--color-black);
}

.article-share .btn-text svg .stroke {
  stroke: var(--color-black);
}

.more-articles__articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
}

.more-articles__button.btn {
  display: inline-block;
  background-color: var(--color-sky);
  color: white;
}

.article-content> :last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.blog-articles__article:nth-of-type(4) {
  display: none;
}

@media only screen and (max-width: 768px) {
  .more-articles__button.btn {
    display: block;
  }

  .article-share {
    display: block;
  }

  .article-share .btn-text {
    display: block;
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .more-articles__articles {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-articles__article:nth-of-type(3) {
    display: none;
  }