.product-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-table .product-child {
    min-height: 175px;
    background-color: #f1f2f4;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 24px 48px 24px 48px;

}

.product-table .product-child .product-name {
    font-size: 21px;
}

.product-table .product-child .button-style {
    display: flex;
    flex-direction: row;
}

.product-table .product-child .button-style>div {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* Tablets (portrait and landscape) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .product-table {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .product-table .product-child {
        min-height: 150px;
    }

    .product-table .product-child .product-name {
        font-size: 16px;
    }
}

/* Mobile devices (portrait and landscape) */
@media only screen and (max-width: 767px) {
    .product-table {
        display: grid;
        grid-template-columns: 1fr;
    }

    .product-table .product-child {
        min-height: 100px;
		padding: 10px 20px 10px 20px;
    }

    .product-table .product-child .product-name {
        font-size: 14px;
    }
}