
.categoryListHome{
    padding:50px 0;
    background:var(--back);
}
.categoryList{
    display: flex;
    flex-wrap: wrap;
    gap:calc(10px + 30 * ((100vw - 320px) / (1500 - 320)));
    justify-content: space-evenly;
    align-items: center;
    margin-bottom:calc(10px + 30 * ((100vw - 320px) / (1500 - 320)));
    
}
.categoryList_item{
    width: calc(50% - calc(10px + 30 * ((100vw - 320px) / (1500 - 320))));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background:#fff;
    box-shadow: 0 5px 10px rgba(100, 175, 245, 0.2);
    padding:5px;
    border-radius: 12px;
    /*border: 1px solid var(--textLink);*/
    border: 1px solid rgba(100, 175, 245, 0.2);
    height: 170px;
    display: flex;
    /* justify-content: flex-start; */
    align-items: center;
}
/* на странице каталога */
.mainContent .categoryList_item{width:100%;}

.categoryList_item:hover{
    transform: translateY(-8px);
    /*box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);*/
    box-shadow: 0 15px 35px rgba(100, 175, 245, 0.3);
}


.categoryList_item_name h3{
    color:var(--textLink);
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    margin:0;
}

.categoryList_item:hover .categoryList_item_name h3{
    color:var(--accent);
}

.categoryList_item__Body a{
    display: flex;
    gap:calc(10px + 30 * ((100vw - 320px) / (1500 - 320)));
    justify-content: flex-start;
    align-items: center;
}
.categoryList_item_img{
    border-radius: 10px;
    overflow: hidden;
    margin-left: 10px;
}
.categoryList_item_img img{margin:auto;}
.categoryListHome_title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: calc(17px + 3 * ((100vw - 320px) / (1500 - 320)));
    line-height: 100%;
    letter-spacing: 0;
    color: #545454;
    margin: 10px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: calc(10px + 40 * ((100vw - 320px) / (1500 - 320)));
}

.categoryListHome.mobile .categoryList_item{width: 100%;}
.categoryListHome.mobile{padding:20px calc(10px + 10 * ((100vw - 320px) / (800 - 320)));}
.categoryListHome.mobile .categoryList_item_img{
    margin-left: 1px; 
    max-width: 60px;
}
.categoryListHome.mobile .categoryList_item{height: 100px;}

.categoryList_item__Body{width:100%;}

.categoryList_item_name p{margin-top:10px;}