.product .product-list{
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 70px 70px;
    max-width: 1420px;
    padding: 0px 20px;
    width: 100%;
}

.product-element{
    position: relative;
    width: 400px;
}
.product-element-footer {
    box-sizing: border-box;
    gap: 0 30px;
    justify-content: space-between;
    padding: 0 35px;
    width: 100%;
}
.product-element .name{
    color: #298c2b;
    font-family: 'Tahoma';
    font-size: 12px;
    font-weight: bold;
    position: relative;
    text-align: right;
    top: 5px;
}

.product-element .date{
    color: #298c2b;
    flex-shrink: 0;
    font-family: 'Tahoma';
    font-size: 12px;
    font-weight: bold;
    position: relative;
    text-transform: lowercase;
    top: 5px;
} 

.product-element a{
    text-decoration: none;
}

.product-element .article span{
    color: #717171;
    font-family: 'Tahoma';
    font-size: 14px;
    display: inline-block;
    transform: scaleX(0.9);
}

.product-element .image{
    border: 1px solid #d8d8d8;
    border-radius: 45px;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 415px;
    overflow: hidden;
    width: 400px;
}

.product-element .image img{
    height: 100%;
    object-fit: cover;
    transition: 1.2s;
    width: 100%;
}
.product-element .image:hover img{
    transform: scale(1.3);
}

.product-element  .product-element-btn{
    position: absolute;
    top: 195px;
}

@media(max-width: 500px) {
    .product-element{
        width: 100%;
    }

    .product-element .image{
        width: 100%;
    }
}

@media(max-width: 450px) {
    .product-element .image{ height: 400px; }

    .product-element  .product-element-btn{
        position: absolute;
        top: 185px;
    }
}

@media(max-width: 400px) {
    .product-element .image{
        height: 340px;
    }

    .product-element  .product-element-btn{
        position: absolute;
        top: 155px;
    }
}