.cardblock {
	 display: flex; 
	 flex-direction: column; 
	 align-items: center; 
	 width: 100%; 
	 background: #fff; 
	 overflow: hidden;
}
.cardimg {
	width: 100%; 
	height: 100%; 
	overflow:hidden;
	aspect-ratio: 1 / 1;
	/*max-height: 310px;*/
	max-height: 285px;
}
.cardimg img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	overflow: hidden;
	border: none !important;
}
.cardtitle {
	font-family: "Baskerville", Sans-serif !important;
	font-weight: 600 !important; 
	font-size: 18px !important;
	line-height: 150% !important;
	color: #000;
	margin-top: 12px;
}
.cardtext {
	font-family: "Alegreya Sans", Sans-serif !important;
	font-weight: 400 !important;
	font-size: 17px !important;
	color: #000 !important;
	line-height: 150% !important;
	white-space: normal !important;
	padding: 0 15px;
	margin-bottom: 10px;
}

@media (max-width: 992px) {
	.gridcardsproduct {
		display: grid;
	    grid-template-columns: repeat(1, 1fr) !important;
	}
}