.tcore-food-menu {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.tcore-food-menu__item {
	min-width: 0;
	overflow: hidden;
	text-align: center;
	transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.tcore-food-menu__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 0.92 / 1;
	overflow: hidden;
}

.tcore-food-menu__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.tcore-food-menu__item:hover .tcore-food-menu__image img {
	transform: scale(1.035);
}

.tcore-food-menu__content {
	padding: 40px 55px 30px 55px;
}

.tcore-food-menu__price {
	margin: 0 0 7px;
	color: #0a0a0a;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.tcore-food-menu__title {
	margin: 0;
	color: #0a0a0a;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.25;
}

.tcore-food-menu__title a,
.tcore-food-menu__category a {
	color: inherit;
	text-decoration: none;
}

.tcore-food-menu__description {
	margin-top: 10px;
	color: #655e56;
	font-size: 14px;
	line-height: 1.6;
}

.tcore-food-menu__category {
	margin-top: 9px;
	color: #9a3d1c;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@media (max-width: 1024px) {
	.tcore-food-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.tcore-food-menu {
		grid-template-columns: 1fr;
	}
}
