.grid{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 53px;
	align-items: stretch;
}

.grid article{
	height: 256px;
	flex: 1;
}

.grid article .menu-card{
	height: 100%;
	display: flex;
	flex-direction: column;
}

.grid article .menu-card div:first-child{
	flex-grow:1;
}


.grid article a{
	position: relative;
	display: flex;
	flex-direction: column;
	box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.15);
	border-radius: 0px 0px 5px 0px;	
	overflow: hidden;
	height: 100%;
}

.grid article a img{
	width: auto;
    height: 100%; 
    object-fit: cover;
    display: block;
}

.grid article a span{	
	background: rgba(231, 233, 241, 1);	
	line-height: 22.63px;		
    display: flex;
    justify-content: flex-end;
	align-items: flex-end;
	height: 32px;
    gap: 8px;
    padding-right: 4px;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.5px;
}

.grid article a span:after{
	content: " ";
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(/wp-content/themes/Divi-Child/images/arrow.png) no-repeat center;
	background-size: cover;
}