

/* Start:/local/templates/marketplace/components/bitrix/catalog.section/marketplace/style.css?1784301269899*/
.mp-product-grid{

display:grid;

grid-template-columns:repeat(4,282px);

gap:32px;

}

.mp-product-card{

width:282px;

height:400px;

}

.mp-product-card__image{

display:block;

width:282px;

height:282px;

border-radius:18px;

overflow:hidden;

background:#f5f5f5;

}

.mp-product-card__image img{

width:100%;

height:100%;

object-fit:cover;

transition:.35s;

display:block;

}

.mp-product-card:hover img{

transform:scale(1.04);

}

.mp-product-card__info{

padding-top:18px;

}

.mp-product-card__title{

display:block;

font-size:18px;

font-weight:600;

line-height:24px;

color:#111;

text-decoration:none;

}

.mp-product-card__price{

margin-top:12px;

font-size:20px;

font-weight:700;

color:#111;

}
.mp-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(282px, 1fr));
    gap: 32px;
}

.mp-product-card {
    width: 100%;
    max-width: 282px;
}
/* End */
/* /local/templates/marketplace/components/bitrix/catalog.section/marketplace/style.css?1784301269899 */
