
.items-grid {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: stretch;
}

.items-grid__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.items-grid__row {
    display: flex;
    gap: 20px;
    height: 50%;
    align-items: stretch;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    height: 100%;
}

.product-card--column {
    flex-direction: column;
    height: 100%;
}

.product-card--column .product-card {
    height: 50%;
    flex: 1;
}

.wrapper__items-grid{display:flex; flex-direction:column; gap:20px}
.items-grid__col--wide{width: 50%}
.items-grid__col--side {width: 50%;display: flex;flex-direction: row;gap: 20px}
.product-card--half {width: calc((100% - 20px) / 2);height: 100%;}
.product-card--full {width: 100%;height: 50%;}
.product-card--side {width: 50%;height: 100%;}
.product-card__cover {border-radius:10px; display: block;height: 100%;overflow: hidden;}
.product-card__cover img{width: 100%;height: 100%;object-fit: cover;transition: transform 0.3s ease;}
.product-card__title {font-weight: 700;font-size: 22px;line-height: 32px; color: #000000; margin-top:20px}
.product-card__description {font-size: 16px;line-height: 23px;color: #000000;flex-grow: 1;  margin:10px 0}
.product-card--single{width:100%}
.product-card--single .product-card__cover{max-height: 360px;}
@media(max-width:1569px){
	.wrapper__items-grid, .items-grid, .items-grid__col, .items-grid__col--side, .items-grid__row{gap: 15px}
	.product-card--half {width: calc((100% - 15px) / 2)}
	.product-card__title {font-size: 18px;line-height: 28px;margin-top: 15px;}
	.product-card__description {font-size: 14px;line-height: 20px; margin:10px 0}
.product-card--single{width:100%}
.product-card--single .product-card__cover{max-height: 305px;}
}
@media(max-width:1259px) and (min-width:992px){
	.wrapper__items-grid, .items-grid, .items-grid__col, .items-grid__col--side, .items-grid__row{gap: 10px}
	.product-card--half {width: calc((100% - 10px) / 2)}
	.product-card__title {font-size: 15px;line-height: 24px;margin-top: 10px;}
	.product-card__description {font-size: 13px;line-height: 18px; margin:10px 0}
	.product-card--single{width:100%}
	.product-card--single .product-card__cover{max-height: 215px;}
}
@media(max-width:991px){
	.row__product-square{gap:15px}
	.product-card {width: calc((100% - 15px) / 2)}
	.product-card__description {overflow: hidden;min-height: auto;}
	.product-card__cover{height:300px}
}
@media(max-width:767px){
	.product-card__title {font-size: 15px; line-height: 24px; margin-top: 10px;}
	.product-card__description{font-size: 13px;line-height: 18px}
	.product-card__cover{height:250px}
}
@media(max-width:575px){
	.row__product-square{gap:30px}
	.product-card {width:100%}
	.product-card__cover {height: 50vw;}
	.product-card__cover img{object-position:center top}
	.product-card__title{font-size: 16px; line-height: 24px; margin-top: 10px;}
	.product-card__description{font-size: 14px;line-height: 20px}
}