.menu-blocks {
	display: flex;
	flex-direction: row;
	gap: 8px;
	flex-wrap: wrap;
	width: 100%;
}
.menu-blocks a {
	display: flex;
	aspect-ratio: 1.5;
	max-width: 33%;
	min-width: 320px;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	border-radius: 4px;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
	background: white;
	padding: 10px 20px;
}
.menu-blocks a .preview {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.menu-blocks a .preview img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 3px;
}
.menu-blocks a .title {
	flex: none;
	height: 54px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
	font-size: 16px;
}