/*! 
-------------------------------------------
CUSTOM STYLES
-------------------------------------------
NOTE: PLEASE DO NOT edit base.css.min
      for custom styles use custom.css only
-------------------------------------------
*/


  .productsGrid .card--outstock, .productsGrid .card.not-available {
      filter:none;
 }


 .articlesGrid .card {
  font-size: 15px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  overflow: hidden
}
.articlesGrid .card .card__content {
  padding: 20px
}
.articlesGrid .card .card__image {
  width: 100%;
  margin-bottom: 5px
}
.articlesGrid .card .card__image .card__image_link {
  display: block
}
.articlesGrid .card .card__title {
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 15px
}
.articlesGrid .card .card__title_link {
  text-decoration: none;
  color: inherit
}
.articlesGrid .card .card__title_link:hover {
  color: var(--color-main);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px
}
.articlesGrid .card .card__desc {
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #666
}
.articlesGrid .card .card__rating {
  font-weight: 300;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center
}
.articlesGrid .card .card__more {
  display: flex;
  justify-content: space-between;
  align-items: center
}
.articlesGrid .card .card__more_link {
  text-decoration: none
}
.articlesGrid .card .card__more_link svg {
  transition: all .2s linear;
  margin-left: 5px
}
.articlesGrid .card .card__more_link:hover svg {
  margin-left: 2px
}
.articlesGrid .card .card__date {
  font-size: 14px;
  font-weight: 300
}
.articlesGrid--default {
  display: -ms-grid;
  display: grid;
  gap: 40px 30px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr
}
@media(min-width:576px) {
  .articlesGrid--default {
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr))
  }
}
.articlesGrid--separated .card {
  border: 0;
  border-radius: 0
}
.articlesGrid--separated .card .card__image {
  margin-bottom: 20px
}
.articlesGrid--separated .card .card__content {
  padding: 0
}
.articlesGrid--separated .swiper-slide {
  position: relative
}
.articlesGrid--separated .swiper-slide::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #ebebeb;
  right: calc(clamp(10px,1.25vw,20px)*-1);
  top: 0
}
@media(min-width:992px) {
  .articlesGrid--carousel .swiper-slide {
    max-width: 520px
  }
}
