.products-list{
    display:flex;
    gap: 1.35rem;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}


a.card-wrapper{
    text-decoration: none;
    font-size: 16px;
    font-family: 'DINPro', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;

}

.product-card{
    border-width: 3px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    background-color: #3c4347;
    gap:1rem;
    padding: 0.75rem;
 }
.product-card img{
    border-radius: 14px;
    width: min(220px, 72vw);
    height: auto;
}
span.card-text{
    font-size: 1.25rem;
    color:#ffffff;
    line-height: 1.2;
    display: block;
    text-align: center;

}
span.more{
    display: flex;
    justify-content: space-around;
    border-width: 3px;
    border-radius: 20px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    height: 3rem;
    text-align: center;
    background-color: #3c4347;
    box-shadow: 0px 0px 80px 13px #12131480;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
    align-items: center;
 }
span.more:hover{
    background-color: #ffffff;
    color: #2e3234;
}

@media (min-width: 321px) and (max-width: 479px) {

    .infographics-list
    {grid-gap:1.5rem;}
}
