.ps-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ps-product {
    /*width: 250px;*/
    width: 30.75%;
    background: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .12);
    border: none;
    border-radius: 6px;
    box-sizing: border-box;
    color: rgba(0, 0, 0, .9);
}

.ps-random-product {
    width: 23%;
    background: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .12);
    border: none;
    border-radius: 6px;
    box-sizing: border-box;
    color: rgba(0, 0, 0, .9);
}

/* Mobile */
@media (max-width: 768px) {

    .ps-product {
        width: 98%;
        background: #ffffff;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .12);
        border: none;
        border-radius: 6px;
        box-sizing: border-box;
        color: rgba(0, 0, 0, .9);
    }
    
    .ps-random-product {
        width: 98%;
        background: #ffffff;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .12);
        border: none;
        border-radius: 6px;
        box-sizing: border-box;
        color: rgba(0, 0, 0, .9);
    }
    
}

.ps-product-content {
    padding: 10px 16px 10px 16px;
}

.ps-product img {
    width: 100%;
    height: auto;
    display: block;
}

h3.title {
    line-height: 16px;
}

.ps-product h3 a,
.ps-random-product h3 a{
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 16px;
}

.ps-product-button {
    display: inline-block;
    /*padding: 10px 15px;*/
    text-decoration: none;
    background-color: #3483fa;
    color: #ffffff;
    font-size: 14px;
    font-style: 500;
    border-radius: 5px;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
} 

a:active.ps-product-button , a:hover.ps-product-button  {
    color: #ffffff;
    background: #2968c8;
}
