.novaRestaurantSchoolBenefits {
	--restaurant-school-surface: #f5f5f7;
	--restaurant-school-text: #202020;
	--restaurant-school-accent: #ef7c23;
	--restaurant-school-radius: 24px;
	width: min(1392px, 100%);
	margin: 0 auto;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	box-sizing: border-box;
}

.novaRestaurantSchoolBenefits__header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.novaRestaurantSchoolBenefits__title {
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	font-family: inherit;
	font-size: 48px;
	font-weight: 500;
	line-height: 54px;
	text-transform: uppercase;
	color: var(--restaurant-school-text);
}

.novaRestaurantSchoolBenefits__heading {
	font-weight: 500;
	line-height: 54px;
}

.novaRestaurantSchoolBenefits__accent {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: min(149px, 100%);
	padding: 4px 8px;
	border-radius: 4px;
	background: var(--restaurant-school-accent);
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: var(--restaurant-school-text);
}

.novaRestaurantSchoolBenefits__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
}

.novaRestaurantSchoolCard {
	min-height: 372px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	border-radius: var(--restaurant-school-radius);
	background: var(--restaurant-school-surface);
	color: var(--restaurant-school-text);
	box-sizing: border-box;
}

.novaRestaurantSchoolCard__iconWrap {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 32px;
}

.novaRestaurantSchoolCard__icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
	flex-shrink: 0;
}

.novaRestaurantSchoolCard__body {
	flex: 1;
	width: 100%;
}

.novaRestaurantSchoolCard__title {
	margin: 0 0 16px;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.08;
	color: inherit;
}

.novaRestaurantSchoolCard__description {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
}

.novaRestaurantSchoolCard__description p {
	margin: 0;
}

.novaRestaurantSchoolCard__description p + p {
	margin-top: 10px;
}

@media (max-width: 1200px) {
	.novaRestaurantSchoolBenefits__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.novaRestaurantSchoolBenefits {
		padding: 24px 16px 48px;
	}

	.novaRestaurantSchoolBenefits__grid {
		grid-template-columns: 1fr;
	}

	.novaRestaurantSchoolBenefits__title {
		font-size: 38px;
		line-height: 1.1;
	}

	.novaRestaurantSchoolBenefits__heading {
		line-height: 1.1;
	}

	.novaRestaurantSchoolBenefits__accent {
		font-size: 38px;
		min-width: 0;
	}
}
