
.product {
    width: 400px;
    display: inline-block;
    overflow: hidden;
    padding: 10px;
    height: 340px;
    margin-right: 15px;
    margin-bottom: 15px;
}

.product img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}

.product img.greyed {
    filter: blur(6px) saturate(0);
}

.product .product-title {
    width:100%;
    font-size: 20px;
    text-align: center;
}

.product .type {
    margin-top: 4px;
    text-align: center;
    font-size: 16px;
    color: var(--dark-grey);
}

.product .category {
    text-align: center;
    font-size: 16px;
    color: white;
}

.payware {
    background-color: var(--link-blue);

}

.freeware {
    background-color: var(--free-green);
}

.avlsoon {
    background-color: var(--dark-grey);
}

.product-title a {
    color: var(--dark-grey);
    text-decoration: none;
}

/* RESPONSIVE */

@media screen and (max-width: 1800px) {
    .product {
        width: 350px;
        height: 300px;
    }
}
@media screen and (max-width: 1500px) {
    .product {
        width: 300px;
        height: 280px;
    }
    .product .category {
        font-size: 14px;
    }
}
@media screen and (max-width: 1300px) {
    .product {
        width: 250px;
        padding: 5px;
        height: 220px;
    }
    .product .product-title {
        font-size: 15px;
    }
    .product .category {
        font-size: 12px;
    }
    .product .type {
        font-size: 12px;
    }
}

