@media (max-width: 720px) {
  .product-card {
    display: flex;
    flex-direction: column;
  }

  .product-cover {
    display: block;
    flex: none;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .product-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px;
    background: #fffaf0;
  }

  .product-body p {
    font-size: 16px;
  }
}
