.related__product {
  .product__wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product__thumb {
    position: relative;
    overflow: hidden;
    height: 250px; /* You can adjust this value as needed */
  }

  .product__thumb .w-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .product__content-inner {
    flex-grow: 1;
  }
}