/* ========================= */
/* КАРТОЧКИ ТОВАРОВ TILDA */
/* ========================= */

.t-catalog__card{
border-radius:10px;
overflow:hidden;
background:#ffffff;
box-shadow:inset 0 0 20px rgba(0,0,0,0.08);
}

/* изображение */

.t-catalog__card__imgwrapper{
border-radius:10px;
overflow:hidden;
position:relative;
}

/* градиент */

.t-catalog__card__imgwrapper:after{
content:"";
position:absolute;
left:0;
right:0;
bottom:0;
height:120px;
background:linear-gradient(
to top,
rgba(0,0,0,0.08),
rgba(0,0,0,0)
);
pointer-events:none;
}

/* текст карточки */

.t-catalog__card__textwrapper{
padding:14px 12px 16px;
box-sizing:border-box;
}

/* название */

.t-catalog__card__title{
margin-bottom:6px;
line-height:1.35;
}