.product-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 20px;
}

.product-table td {
  width: 33.333%;
  padding: 5px;
  vertical-align: top;
}

.product-table td > p:first-child {
  margin-top: 0;
}

.product-table img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 768px) {
  .product-table,
  .product-table tbody,
  .product-table tr,
  .product-table td {
    display: block;
    width: 100% !important;
  }

  .product-table {
    border-spacing: 0;
  }

  .product-table td {
    margin-bottom: 35px;
  }

  .product-table img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }
}