/** Shopify CDN: Minification failed

Line 390:23 The "+" operator only works if there is whitespace on both sides

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

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

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

  .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;
  }
}

@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;
  }
}

/* ==== */
.header-feat-article-wrap .heading-with-desc h1 {
  font-size: calc(var(--font-heading-scale) * 6rem);
}
.header-feat-article-wrap .heading-with-desc .short-descrpition {
  max-width: 70rem;
  font-size: 2.2rem;
  line-height: 1.6;
}
.header-feat-article-wrap .heading-with-desc {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
}
.heading-with-desc h1 {
  margin: 0;
}
.feat-article .blog-articles__article .article-card-wrapper {
  width: 100%;
}
.feat-article {
  margin-bottom: 6rem;
}
.feat-article .card {
  flex-direction: row;
  align-items: center;
  background: var(--color-white);
}
.feat-article .blog-articles__article {
  padding: 8rem 0 6rem;
}
.feat-article .card .card__content .card__information {
  grid-row-start: 1;
}
.feat-article .card .card__content {
  padding-left: 5rem;
  padding-right: 5rem;
}
.feat-article .card__information .card__heading {
  font-size: calc(var(--font-heading-scale) * 4rem);
  line-height: normal;
}
.feat-article .card .card__content .card__information .article-card__info {
  letter-spacing: 0.32px;
}
.feat-article .card__information p.article-card__excerpt {
  font-size: 2rem;
  line-height: 1.7;
}
.feat-article .card__content button {
  max-width: 248px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
.feat-article .card__inner.ratio:before {
  padding-bottom: 55.2rem;
}
.feat-article .blog-articles__article .article-card-wrapper:hover a,
.main-blog .blog-articles .article-card-wrapper .card__information a {
  text-decoration: none;
}
.main-blog .blog-articles .article-card-wrapper .card__information a {
  text-decoration: none;
  position: relative;
  width: fit-content;
}
.main-blog .blog-articles .article-card-wrapper .card__information a:after {
  content: "";
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  opacity: 1;
  transition: all 0.3s 0s ease-in-out;
}
.main-blog .blog-articles .article-card-wrapper:hover .card__information a:after {
  width: 100%;
  left: 0;
  right: auto;
}
.main-blog .blog-articles .article-card-wrapper .card__information {
  padding-bottom: 0;
}
.blog-search-filter-wrapper .pagefilters-subtitle {
  font-weight: 600;
  font-size: 2.4rem;
  text-transform: uppercase;
  margin-top: 40px;
}
.btn-filter-wrapper .filter-select-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}
.btn-filter-wrapper .filter-select-wrap .label_wrap {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  min-height: 56px;
  min-width: 213px;
  background: #fff;
  line-height: 1.5625rem;
  color: #454E5D;
  padding: 15px;
  border: 1px solid var(--color-green);
  justify-content: space-between;
  cursor: pointer;
}
.btn-filter-wrapper .filter-select-wrap .label_wrap svg {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
}
.btn-filter-wrapper .filter-select-wrap .label_wrap svg path {
  stroke: var(--color-green);
}
.blog-search-filter-wrapper .field_wrap-item {
    position: relative;
}
.btn-filter-wrapper .filter-select-wrap .filter-select {
  position: absolute;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--color-green);
  background-color: #FFFFFF;
  z-index: 2;
  margin-top: 5px;
}
.btn-filter-wrapper .filter-select-wrap .filter-select li {
  display: block;
  padding: 15px;
  border-bottom: 1px solid var(--color-green);
  cursor: pointer;
  transition: .2s;
  line-height: normal;
}
.btn-filter-wrapper .filter-select-wrap .filter-select li:hover,
.btn-filter-wrapper .filter-select-wrap .filter-select li.active{
  background: var(--color-green);
  color: var(--color-white);
}
.btn-filter-wrapper .filter-select-wrap .filter-select li.active {
    border-bottom: 1px solid #fff;
}
.btn-filter-wrapper .filter-select-wrap .filter-select li:last-child {
    border-bottom: none;
}
.btn-filter-wrapper .filter-select-wrap .filter-select li:first-child {
  border-top: none;
}
.blog-search-filter-wrapper {
  border-top: 1px solid #e7e5dc;
  margin-top: 40px;
}
.blog-search-filter-wrapper .active-remove-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0 40px;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-search-filter-wrapper .active-remove-wrap .active-filters-label {
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 10px 0 0;
  width: 150px;
  font-size: 1.6rem;
}
.active-remove-wrap button.clear-all-filters {
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  color: #111B2C;
  padding: 0;
  letter-spacing: 2px;
  transition: all 0.2s;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  display: flex;
  transition: .2s;
}
.active-remove-wrap button.clear-all-filters:hover {
  color: var(--color-green);
}
.active-remove-wrap button.clear-all-filters::before {
  content: "";
  font-size: 16px;
  margin: 0 8px 0 0;
  vertical-align: middle;
  background-image: url('https://cdn.shopify.com/s/files/1/0850/5940/4102/files/delete-bin-7-fill.svg?v=1736161352');
  background-repeat: no-repeat;
  width: 18px;
  height: 16px;
  display: inline-block;
}
.active-filters {
    flex: 1;
    display: flex;
    align-items: center;
}
.active-filters .active-filters-item {
    flex: 1;
}
.active-filters .active-filters-item ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 5px;
}
.active-filters .active-filters-item ul li {
    background: #ebf7ed;
    border-radius: 16px;
    text-align: center;
    padding: 5px 18px;
    margin: 0;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}
.active-filters .active-filters-item ul li:before {
    content: "";
    margin: 0 4px 0 -4px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2334ac4b"><path d="M11.9997 10.5865L16.9495 5.63672L18.3637 7.05093L13.4139 12.0007L18.3637 16.9504L16.9495 18.3646L11.9997 13.4149L7.04996 18.3646L5.63574 16.9504L10.5855 12.0007L5.63574 7.05093L7.04996 5.63672L11.9997 10.5865Z"></path></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    display: inline-block;
}
.pagefilters-title span.parameter,
.active-filters .active-filters-item ul li:hover {
    color: var(--color-green);
}
.blog-search-filter-wrapper .field:before,
.blog-search-filter-wrapper .field:after {
  content: none;
}
.blog-search-filter-wrapper .field input {
  background: #25252512;
  outline: none;
  box-shadow: none;
  border: none;
}
.blog-search-filter-wrapper .search-wrap {
  margin: 40px 0 40px 0;
}
.blog-search-filter-wrapper .field button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: currentColor;
  cursor: pointer;
  display: flex;
  height: 4.4rem;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.4rem;
  right: var(--inputs-border-width);
  top: var(--inputs-border-width);
}
.blog-search-filter-wrapper .field input {
  background: #25252512;
  outline: none;
  box-shadow: none;
  border: none;
  width: 100%;
  border-radius: var(--inputs-radius);
  height: 4.5rem;
  min-height: calc(var(--inputs-border-width)* 2);
  min-width: calc(7rem +(var(--inputs-border-width)* 2));
  flex-grow: 1;
  text-align: left;
  padding: 1.5rem;
  margin: var(--inputs-border-width);
  transition: box-shadow var(--duration-short) ease;
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.6rem;
  line-height: calc(1 + .5 / var(--font-body-scale));
  letter-spacing: .04rem;
  box-sizing: border-box;
}
.blog-search-filter-wrapper button.apply-filters {
  min-width: 160px;
  background: var(--color-green);
  font-size: 1.6rem;
  letter-spacing: 1.75px;
  min-height: calc(5.5rem + var(--buttons-border-width)* 2);
  transition: .2s;
}
.blog-search-filter-wrapper button.apply-filters:before,
.blog-search-filter-wrapper button.apply-filters:after,
.blog-search-filter-wrapper button.apply-filters:hover:after{
  box-shadow:none;
}
.blog-search-filter-wrapper button.apply-filters:hover {
  background: rgb(var(--color-foreground));
}
.blog-search-filter-wrapper .field {
  max-width: 500px;
}
.article-label {
    background: var(--color-black);
    color: var(--color-white);
    width: fit-content;
    min-width: 80px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.75px;
    padding: 9px 10px 7px;
    font-size: 13px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    line-height: normal;
}
@media screen and (max-width: 1199px) {
  .header-feat-article-wrap .heading-with-desc .short-descrpition {
    font-size: 2rem;
  }
  .header-feat-article-wrap .heading-with-desc h1 {
    font-size: calc(var(--font-heading-scale) * 5rem);
  }
  .feat-article .card__information .card__heading {
    font-size: calc(var(--font-heading-scale) * 3.5rem);
  }
  .feat-article .card__information p.article-card__excerpt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 989px) {
  .header-feat-article-wrap .heading-with-desc .short-descrpition {
    font-size: 1.8rem;
  }
  .header-feat-article-wrap .heading-with-desc h1 {
    font-size: calc(var(--font-heading-scale) * 4rem);
    margin-bottom: 1.2rem;
  }
  .header-feat-article-wrap .heading-with-desc {
    grid-template-columns: 1fr;
  }
  .feat-article .blog-articles__article {
    padding: 6rem 0 6rem;
  }
  .feat-article .card__information .card__heading {
    font-size: calc(var(--font-heading-scale) * 3rem);
  }
  .feat-article .card__information p.article-card__excerpt {
    font-size: 1.6rem;
  }
  .feat-article .card .card__content {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .btn-filter-wrapper .filter-select-wrap .field_wrap-item,
  .btn-filter-wrapper .submit_wrap {
    width: 100%;
  }
  .btn-filter-wrapper .filter-select-wrap {
    flex-direction: column;
  }
  .blog-search-filter-wrapper .pagefilters-subtitle {
    font-size: 2.2rem;
  }
  .blog-search-filter-wrapper .active-remove-wrap {
      padding: 30px 0;
      display: block;
  }
  .active-filters {
      display: block;
  }
  .blog-search-filter-wrapper .active-remove-wrap .active-filters-label {
      padding: 0 0 2px;
      width: auto;
  }
  .active-remove-wrap button.clear-all-filters {
      margin-top: 18px;
  }
  .article-label {
    min-width: 60px;
    padding: 2px 10px;
    font-size: 11px;
  }
}
@media screen and (max-width: 749px) {
  .header-feat-article-wrap .heading-with-desc .short-descrpition {
    font-size: 1.6rem;
  }
  .header-feat-article-wrap .heading-with-desc h1 {
    font-size: calc(var(--font-heading-scale) * 3rem);
  }
  .feat-article .card__information .card__heading {
    font-size: calc(var(--font-heading-scale) * 2.5rem);
  }
  .feat-article .card__information p.article-card__excerpt {
    font-size: 1.5rem;
  }
  .feat-article .card .card__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
  .feat-article .card {
    flex-direction: column;
  }
  .feat-article .blog-articles__article {
    padding: 4rem 0;
  }
  .feat-article .card__content button {
    max-width: 200px;
  }
  .blog-search-filter-wrapper .pagefilters-subtitle {
    font-size: 2rem;
    margin-top: 20px;
  }
  .blog-search-filter-wrapper .search-wrap {
    margin: 25px 0 25px 0;
  }
  .blog-search-filter-wrapper {
    margin-top: 25px;
  }
  .feat-article .card__inner.ratio:before {
      padding-bottom: 35.2rem;
  }
}
