.equipments-list {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: center;
  gap: 5vw;
  margin: max(7.5vh, 2.5rem) auto;
}

.product-post {
  width: calc((100% - 10vw) / 3);
  padding: 1vw;
  border: 2px solid #f4f4f4;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
}
.product-post:hover {
  box-shadow: 0 0 22px rgb(0 0 0 / 10%);
}
.product-post:hover .product-post__img img {
  transform-origin: center;
  transform: scale(1.03);
}

.product-post__img {
  display: flex;
  width: 100%;
  overflow: hidden;
  will-change: transform;
  transition: all 0.5s;
  position: relative;
  align-items: center;
  justify-content: center;
}

.product-post__img img {
  max-width: 100%;
  width: 90%;
  height: auto;
  object-fit: cover;
  will-change: transform;
  transition: all 0.5s;
}
.related-products_slider .product-post__img img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height:210px;
  object-fit: cover;
  will-change: transform;
  transition: all 0.5s;
}

.content_part {
  display: flex;
  flex-direction: column;
  gap: 0.5vh;
  align-items: center;
}

.product-post__title {
  font-family: var(--base-font-family);
  font-weight: 700;
  font-size: max(1.25vw, 20px);
  text-align: center;
}

.product-post__price {
  font-size: max(1vw, 16px);
  text-align: center;
}

.equipments-list .equipments-list__item:hover {
  box-shadow: 0 0 22px rgb(0 0 0 / 10%);
}
.equipments-list .equipments-list__item:hover .product-post__title {
  color: #c12126;
}

@media screen and (max-width: 1080px) {
  .product-post,
  .equipments-list__item {
    width: calc((100% - 7.5vw) / 2);
    padding: 3vw;
    gap: 1.5vw;
  }
  .product-post__img {
    height: auto;
  }
  .product-post__title {
    font-size: max(2vw, 18px);
  }
}

@media screen and (max-width: 650px) {
  .equipments-list {
    justify-content: center;
  }
  .product-post,
  .equipments-list__item {
    width: 80%;
  }
  .product-post__title {
    font-size: max(3vw, 22px);
  }

  .product-post__img img {
    width: 100%;
  }
}
@media screen and (min-width: 320px) and (max-width: 768px) and (orientation: landscape) {
  .related-products .product-post__img {
    width: 50%;
  }
}
