.lma-menu {
	--lma-menu-accent: #000000;
	--lma-menu-border: #e2e4e7;
	max-width: 960px;
	margin: 0 auto;
	color: #000000;
}

.lma-menu__group + .lma-menu__group {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 2px solid var(--lma-menu-border);
}

.lma-menu__heading {
	margin: 0 0 0.35rem;
	font-size: 1.75rem;
	font-weight: 700;
	color: #000000;
}

.lma-menu__timeframe {
	margin: 0 0 1.25rem;
	font-size: 1rem;
	font-weight: 500;
	color: #000000;
}

.lma-menu__items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.5rem;
}

/* Default: no image — content uses full width */
.lma-menu__item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: start;
	padding: 1.25rem;
	border: 1px solid transparent;
	border-radius: 10px;
	background: #fbdfb3;
	color: #000000;
}

/* Only reserve image column when an image exists */
.lma-menu__item:has(.lma-menu__image) {
	grid-template-columns: 120px 1fr;
}

.lma-menu__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

/* Name / description left (75%), price right (25%) */
.lma-menu__content {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 0.75rem 1.25rem;
	align-items: start;
	width: 100%;
	min-width: 0;
}

.lma-menu__title,
.lma-menu__description,
.lma-menu__note {
	grid-column: 1;
}

.lma-menu__title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	color: #000000;
}

.lma-menu__number {
	margin-right: 0.35rem;
	color: #000000;
}

.lma-menu__description {
	margin: 0 0 0.5rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #000000;
}

.lma-menu__description p {
	color: #000000;
}

.lma-menu__description p:last-child {
	margin-bottom: 0;
}

.lma-menu__note {
	margin: 0 0 0.5rem;
	font-size: 0.875rem;
	font-style: italic;
	color: #000000;
}

.lma-menu__price {
	grid-column: 2;
	grid-row: 1 / -1;
	margin: 0;
	justify-self: end;
	align-self: start;
	text-align: right;
	font-size: 1.1rem;
	font-weight: 700;
	color: #000000;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.lma-menu__item,
	.lma-menu__item:has(.lma-menu__image) {
		grid-template-columns: 1fr;
	}

	.lma-menu__content {
		grid-template-columns: 1fr;
	}

	.lma-menu__price {
		grid-column: 1;
		grid-row: auto;
		justify-self: start;
		text-align: left;
		margin-top: 0.35rem;
	}
}
