.products__item {
  box-shadow: var(--box-shadow-next);
  border-radius: 6px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 220px;
  transition: transform 250ms;
}
@media(hover: hover) {
  .products__item_link:hover .products__item {
    transform: translateY(-4px);
    transition: transform 125ms;
  }
  .no-animation .products__item_link:hover .products__item {
    transform: unset;
  }
}
.products__item_image {
  padding: 4px;
  padding-bottom: 0;
}
.products__item_image img {
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  height: 119px;
  width: 100%;
}
.products__item_content {
  padding: 16px;
  padding-bottom: 20px;
  text-align: center;
  gap: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.products__item_title {
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
  color: var(--slate-700);
}
.products__item_excerpt {
  font-size: calc(12 / 16 * 1rem);
  line-height: 16px;
  color: var(--slate-600);
  max-width: 188px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media(max-width: 1000px) {
  .products__item {
    height: 240px;
  }
  .products__item_excerpt {
    max-width: unset;
    white-space: unset;
    overflow: unset;
    text-overflow: unset;
  }
}
@media(max-width: 600px) {
  .products__item {
    height: unset;
  }
  .products__item_image img {
    height: unset;
  }
}

