.product_pod {
    height: 360px;
}

/* Used to truncate product title to 3 lines */
.clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;     /* number of lines */
  overflow: hidden;
  /* Nice touches */
  hyphens: auto;             /* enable hyphenation */
  word-break: break-word;    /* avoid overflow for long tokens */
}