/*
products-content
    products-section
        products-grid 
            product-card
                product-card-link
                    product-card-thumbnail
                    product-card-header
*/

.products-content {
    display:inline;
}

/*
.products-section {
}
*/

.products-grid {
    display:flex;
    flex-direction: column;
    column-gap: 1%;
    margin-top: 15px;
    margin-bottom: 10px;
}
.product-card {
    display: flex;
    flex-direction: row;
    margin: 10px 0;
    margin-top: 15px;
    margin-bottom: 10px;
    margin-left: 15px;
    margin-right: 10px;
    column-gap: 20px;
    
}

/*
.product-card-link {}

.product-card-thumbnail {}
*/

.product-card-header {
    display:flex;
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 10px;
    margin-left: 15px;
    margin-right: 10px;
}

