.products-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.products-section .product {
    background-color: rgba(4, 170, 82, .7);
    padding: 15px;
    flex: 1;
}

.products-section .product .product-image img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.products-section .product .product-title {
    margin-top: 20px;
    color: #ffffff;
}

.products-section .product .product-title a {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 1.625rem;
    color: #ffffff;
    line-height: 28px;
    text-transform: uppercase;
    text-decoration: none;
}

.products-section .product .product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Roboto", sans-serif;
}

.products-section .product .product-price-regular {
    color: #ffffff;
    background-color: #C40000;
    font-size: 30px;
    font-weight: 600;
    display: inline-block;
    padding: 0 8px;
    margin-top: 5px;
}

.products-section .product .product-price-sale {
    color: #000000;
    font-size: 1.563rem;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.products-section .product .product-price-sale:after {
    content: "";
    position: absolute;
    width: 95px;
    height: 4px;
    background-color: #C40000;
    transform: rotate(162deg);
    top: 16px;
    left: 0;
}

.products-section .product .product-description {
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 22px;
    color: #ffffff;
    margin-top: 10px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 75px;
}

.products-section .product .product-description h1, .products-section .product .product-description h2, .products-section .product .product-description h3, .products-section .product .product-description h4, .products-section .product .product-description h5, .products-section .product .product-description p {
    font-size: 16px !important;
    font-family: "Roboto", sans-serif;
    font-weight: 500 !important;
    line-height: 22px !important;
    color: #ffffff;
}

.products-section .product .product-button {
    margin-top: 30px;
    font-size: 1.188rem;
}

.products-section .product .product-button .icon {
    transform: translateY(0px);
}

@media all and (min-width: 670px) {
    .products-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }

    .products-section .product .product-title {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .products-section .product .product-description {
        height: 56px;
    }
}

@media all and (min-width: 768px) {
    .products-section {
        /*grid-template-columns: repeat(3, 1fr);*/
        grid-auto-flow: column;
    }
}
