.lunch-week-menu-container {
	width: 100%;
	min-width: 290px;
}

.lunch-week-title {
	text-align: center;
	font-size: 28px;
	line-height: 28px;
}

.lunch-day-menu-container {
	margin-bottom: 30px;
}

.lunch-container {
    border-radius: 16px;
	max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 8px;
	padding: 18px;
}
.lunch-day {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 10px auto;
	text-align: center;
	width: 100%;
}

.lunch-day h3 {
	font-weight: bold;
	font-size: 22px;
	color: #383838;
	text-align: left;
}
.lunch-day h3 span {
	font-weight: normal;
	font-size: 18px;
	color: #5a5a5a;
}
.lunch-day ul {
	padding: 0;
	width: 100%;
}
.lunch-day ul li {
	list-style: none;
}

.lunch-item-container {
	display: grid;
	grid-template-columns: repeat(2, auto);
	width: 100%;
	min-width: 290px;
}

.lunch-item-container p {
	font-size: 25px;
	line-height: 28px;
	font-weight: 300;
	color: #626262;
}

.lunch-item {
	padding: 4px 0;
}

.lunch-title-row {
	display: flex;
    justify-content: space-between;
	align-items: start;
}
.lunch-title {
	font-weight: 600;
	text-align: left;
	font-size: 15px;
	line-height: 16px;
	margin: 0;
	color: #101010;
}
.lunch-description {
	font-style: italic;
	text-align: left;
	line-height: 16px;
	max-width: 300px;
	font-size: 14px;
	margin: 0;
}
.lunch-price {
	font-weight: 600;
    text-align: right;
    line-height: 16px;
	min-width: 50px;
    margin: 0 0 0 10px;
}