/** Shopify CDN: Minification failed

Line 115:3 Cannot use type selector "__header" directly after nesting selector "&"
Line 123:3 Cannot use type selector "__title" directly after nesting selector "&"
Line 132:3 Cannot use type selector "__nav" directly after nesting selector "&"
Line 137:3 Cannot use type selector "__nav-button" directly after nesting selector "&"
Line 221:3 Cannot use type selector "__title" directly after nesting selector "&"
Line 228:3 Cannot use type selector "__description" directly after nesting selector "&"
Line 235:3 Cannot use type selector "__image" directly after nesting selector "&"
Line 306:7 Cannot use type selector "--actions" directly after nesting selector "&"
Line 371:5 Cannot use type selector "__header" directly after nesting selector "&"
Line 375:5 Cannot use type selector "__title" directly after nesting selector "&"
... and 4 more hidden warnings

**/
:root {
  --article-padding: 2rem;
  --article-max-width: 1200px;
  --primary-color: #5caa62;
  --text-color: #333;
  --heading-color: #000;
  --border-radius: 0%;
  --transition-timing: 0.3s ease;
  --card-min-height: 355px;
  --grid-gap: 1.25rem;
}

/* Article Content */
.article-content {
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
.article-content .rte {
  line-height: 1.6;
  color: var(--text-color);

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 2.25rem 0;
    font-weight: 600;
    line-height: 1.3;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1rem;
  }

  p {
    margin: 0 0 2.5rem;
    font-size: 0.875rem;
    color: #555;
  }

  ul,
  ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }

  li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }

  blockquote {
    border-left: 0.25rem solid var(--primary-color);
    padding: 1rem 2rem;
    margin: 2rem 0;
    background: #f9f9f9;
    font-style: italic;
  }

  strong {
    font-weight: 700;
    color: var(--heading-color);
  }
  em {
    font-style: italic;
  }

  a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color var(--transition-timing);

    &:hover {
      color: darken(var(--primary-color), 10%);
    }
  }
}

/* Article Products */
.article-products {
  &__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    width: 100%;
  }

  &__title {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.0625rem;
    text-transform: uppercase;
    color: var(--heading-color);
    margin: 0;
  }

  &__nav {
    display: flex;
    gap: 1rem;
  }

  &__nav-button {
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 0;
    cursor: pointer;
    transition: background-color var(--transition-timing);

    &.is-disabled {
      opacity: 0.5;
      cursor: not-allowed;
      pointer-events: none;
    }

    &:hover {
      background: #e8e8e8;
    }

    svg {
      width: 1rem;
      height: 1rem;
    }

    &.js-prev svg {
      transform: rotate(-180deg);
    }
  }
}

/* Product Grid */
.article-products__grid {
  --grid-columns: 6;
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  padding: 0;
  text-align: initial;
  outline: none;

  &.flickity-enabled {
    cursor: grab;
  }

  .productgrid--item {
    position: relative;
    width: calc(
      (100% - (var(--grid-columns) - 1) * var(--grid-gap)) / var(--grid-columns)
    );
    margin-right: var(--grid-gap);
  }

  .flickity-slider--wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + var(--grid-gap));
    height: inherit;
    min-height: 200%;
    padding: 0 calc(var(--grid-gap) / 2);
    margin-left: calc(var(--grid-gap) / -2);
    overflow: hidden;
  }

  .flickity-slider {
    height: inherit;
    pointer-events: auto;
    margin: 1em 0;
  }
}

/* Article Content Block */
.article-content-block {
  margin-bottom: 2.5rem;

  &:last-child {
    margin-bottom: 0;
  }

  &__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--heading-color);
  }

  &__description {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-color);
  }

  &__image {
    margin-top: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;

    img {
      width: 100%;
      height: auto;
      display: block;
    }
  }
}

/* Table of Contents */

.article-table-content__title {
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 33px;
  margin: 0 0 2.5rem;
  text-transform: uppercase;
}

.article-table-content__list {
  display: flex;
  flex-direction: column;
  gap: 1.875em;
}

.article-table-content__item {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 1.5rem;
}

.article-table-content__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-table-content__link {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-table-content__link:hover {
  opacity: 0.8;
}

.article-table-content__item-title {
  font-size: 1.25rem;
  line-height: 1.125rem;
  color: #5caa62;
  margin: 0 0 1.125rem 0;
  text-transform: uppercase;
}

.article-table-content__item-description {
  font-size: 0.875rem;
  line-height: 1.125rem;
}

/* Desktop */
@media screen and (min-width: 1024px) {
  .article-products__grid {
    .productitem {
      &[data-animation="closed=>open"],
      &[data-animation-state="open"] {
        height: var(--open-height);
      }

      &--actions {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
      }

      &[data-animation-state="open"] .productitem--actions {
        opacity: 1;
        visibility: visible;
      }
    }
  }
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .article-products__grid {
    --grid-columns: 3;
    --grid-gap: 0.75rem;
  }
}

/* Mobile */
@media screen and (max-width: 861px) {
  .article-content {
    padding: 0;
  }

  .article-content .rte {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      margin-bottom: 0.625rem;
    }

    p {
      font-size: 0.75rem;
      line-height: 1.25rem;
      margin-bottom: 1.25rem;
    }

    ul,
    ol {
      margin: 0.75rem 0;
      padding-left: 1.5rem;
    }

    li {
      font-size: 0.875rem;
      line-height: 1.25rem;
      margin-bottom: 0.375rem;
    }

    blockquote {
      padding: 0.75rem 1.5rem;
      margin: 1.5rem 0;
      font-size: 0.875rem;
      line-height: 1.25rem;
    }
  }

  .article-products {
    &__header {
      margin-bottom: 1rem;
    }

    &__title {
      font-size: 1.25rem;
      line-height: 1.5rem;
    }

    &__grid {
      --grid-columns: 2;
      gap: 0.5rem;
      margin: 0 -1rem;
      padding: 0 1rem;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;

      &::-webkit-scrollbar {
        display: none;
      }

      .productgrid--item {
        scroll-snap-align: start;
        flex: 0 0 calc(50% - 0.25rem);
        min-width: 150px;
      }
    }
  }

  .article-content-block {
    margin-bottom: 2rem;

    &__title {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }

    &__description {
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    &__image {
      margin-top: 1rem;
    }
  }
}

/* Small Mobile */
@media screen and (max-width: 479px) {
  .article-products__grid {
    .productgrid--item {
      flex: 0 0 calc(60% - 0.25rem);
      min-width: 180px;
    }
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .article--table-content {
    padding: 1rem;
    margin: 1rem 0;
  }

  .article-table-content__title {
    font-size: 1.25rem;
    line-height: 33px;
  }

  .article-table-content__item {
    padding-bottom: 1rem;
  }

  .article-table-content__item-title {
    font-size: 1rem;
    line-height: 1.125rem;
    margin-bottom: 1.125rem;
  }

  .article-table-content__item-description {
    font-size: 14px;
    line-height: 20px;
  }
}
