.pdt_card{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    font-family: "Inter";
    font-size:0;
}
.pdt_card *{
    font-family: "Inter";
}

.pdt_infos{
    position: absolute;
    background: linear-gradient(0deg, #313131 -50%, transparent 100%, transparent 100%);
    width: 100%;
    bottom: 0;
    height: 20%;
    padding: 6% 15px 10px 15px;
    box-sizing: border-box;
    min-height: 70px;
    max-height: 100px;
}

.pdt_card .name{
    color: #ffffff;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size:16px;
}
.pdt_card .price{
    color:#fff;
    font-weight:bold;
    font-size:23px;
}
.pdt_card img{
    width: 100%;
    height:auto;
}


@media screen and (max-width:700px){
    .pdt_card .price{
        color:#fff;
        font-weight:bold;
        font-size:19px;
    }
}