/* .product-hero {
    background-image: url('../images/product-hero.jpg');
} */

.product-hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 70vh;
    /* aspect-ratio: 9 / 9; */
}


.products-row-3 .card-pro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    background-color: var(--off-white-color);
    width: calc((100% - 4rem) / 3);
}

.products-row-3 .card-pro div {
    padding: 1rem;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.products-row-3 .card-pro figure {
    width: 100%;
    max-height: 300px;
    width: auto;
    object-fit: cover;
}

.products-row-3 figure img {
    width: 100%;
    height: 100%;
}


@media only screen and (max-width : 900px) {
    .products-row-3 .card-pro {
        width: calc((100% - 2rem) / 2);
    }
}


@media only screen and (max-width : 650px) {
    .products-row-3 .card-pro {
        width: 100%;
    }
}

