.equipments-list {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: center;
  gap: 32px;
  margin: 0px auto;
  max-width: 1200px;
}

.product-post {
  width: calc((100% / 3) - 21.5px);
  padding: 12px 24px;
  border: 2px solid #f4f4f4;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  box-shadow: 4px 4px 8px #00000040;
}
.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);
}

.press_inner {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.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: 100%;
    padding: 24px;
    gap: 1.5vw;
  }
  .product-post__img {
    height: auto;
  }
  .product-post__title {
    font-size: max(2vw, 18px);
  }
}
