 .product-group {
   display: flex;
    gap: 35px;
    width: 100%;
 }

 .product {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-grow: 1;
    width: 33%;
 }

 .product img {
    flex-grow: 1;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    height: 300px;
 }

  .product a {
     color: var(--wp--preset--color--primary-main);
     text-decoration: underline;
 }