.ce_jg_products{
    display: grid;
    row-gap: 1.5rem;
    column-gap: 1.5rem;
}
.ce_jg_products_item{
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    border-radius: 8px;
    border: 1px solid var(--white);
}
.ce_jg_products_item a{
    display: block;
    padding: 2rem;
    background: none;
}
.ce_jg_products_image img{
    margin: 0 auto;
}
.ce_jg_products_image{
    margin-bottom: 2rem;
}
.ce_jg_products_text_name{
    text-transform: uppercase;
    text-align: center;
    font-size: 2rem;
}
p.products_name{
    font-size: 1.8rem;
    line-height: 1.2;
}
.products_category{
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}
.products_name{
    font-weight: 300;
}
.ce_jg_products_image img {
    height: 120px;
    width: 200px;
}    

/* PHONE */
@media only screen and (min-width: 576px) {
    .ce_jg_products{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* TABLET */
@media only screen and (min-width: 768px) {
    .ce_jg_products{
        grid-template-columns: repeat(3, 1fr);
        row-gap: 3rem;
        column-gap: 3rem;
    }
    .ce_jg_products_item a{
        padding: 3rem;
    }
    .ce_jg_products_image{
        margin-bottom: 4rem;
    }
}


/* DESKTOP */
@media only screen and (min-width: 1024px) {
    .ce_jg_products_item a{
        padding: 4rem;
    }
    .ce_jg_products_text_name{
        font-size: 3rem;
    }
    p.products_name{
        font-size: 2.4rem;
    }
    .zubehoer .ce_jg_products{
        grid-template-columns: repeat(4, 1fr);
    }
}

/* DESKTOP XL */
@media only screen and (min-width: 1400px) {
        

}