.ws-products-row {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.ws-products-row .ws-product {
	flex: 1 1 calc(25% - 40px);
	box-sizing: border-box;
}	
.ws-products-row .ws-product-link {	
	display: block;
	height: 100%;
	border-radius: 0.75rem;
	border: 1px solid #F39300;
	background: #FFF;
	padding: 1rem;
	box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
	transition: box-shadow .3s
}
.ws-products-row .ws-product-image {
	aspect-ratio:1.35;
	position:relative;
	margin-bottom: 1rem;
}
.ws-products-row .ws-product-image  img {
	position: absolute;
	top:0; left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.ws-products-row .ws-product-title {
	color: #0A1229;
	font-size: 1.125rem;
	line-height: 1.2;
	font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
	margin:0
}
.ws-products-row .ws-product-link {
	text-decoration: none;
	color: inherit;
}
.ws-product-link:hover  {
		box-shadow: 0 4px 15px -2px rgba(0, 0, 0, 0.4), 0 2px 6px -2px rgba(0, 0, 0, 0.06);
}
@media (max-width:1199px) and (min-width: 768px) {
	.ws-products-row {
		gap: 20px;
	}
	.ws-products-row .ws-product {
		flex: 1 1 calc(25% - 20px);
		box-sizing: border-box;
	}	
}
@media (max-width:991px) {
	.ws-products-row .ws-product-title {
		font-size: 1rem;
	}
}
@media (max-width:767px) {
	.ws-products-row {
		gap: 20px;
	}
	.ws-products-row .ws-product {
		flex: 1 1 calc(50% - 20px);
		box-sizing: border-box;
	}	
}