/**
 * Dining, food menu — one section of the design.
 *
 * The statement and its button on the left, the pictures on the right. Where
 * the file places them becomes a layout here, not offsets.
 */

.custom-dining-menu {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 126px;
	width: 100%;
	padding: 90px calc( 48px + max( 0px, calc( ( 100% - 1440px ) / 2 ) ) ) 132px calc( 48px + max( 0px, calc( ( 100% - 1440px ) / 2 ) ) );
	box-sizing: border-box;

	background-image: radial-gradient(
		1080px 1874px at 20% 41%,
		#faf6ea 0%,
		#ebe4ca 100%
	);
}

.custom-dining-menu__column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	flex: 0 0 auto;
	width: 578px;
	min-height: 580px;
}

.custom-dining-menu__heading {
	margin: 0;
	padding: 0;
	color: inherit;
	text-transform: uppercase;
}

.custom-dining-menu__body {
	margin: 0;
	white-space: pre-wrap;
}

.custom-dining-menu__button,
.custom-dining-menu__button:hover,
.custom-dining-menu__button:focus,
.custom-dining-menu__button:active {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 12px 24px;
	border: 0;
	border-radius: 24px;
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background-color 300ms ease-in-out,
		color 300ms ease-in-out,
		opacity 300ms ease-in-out;
}

/* The pictures, and the dots that say which one is showing.

   The picture starts below the statement beside it, not level with it: the
   file sets it down the page, and the drop belongs to the picture rather than
   to anything it is set against. */
.custom-dining-menu__gallery {
	position: relative;
	flex: 0 0 auto;
	width: 640px;
	height: 548px;
	margin-top: 60px;
	overflow: hidden;
}

/* The box is the carousel's, and it keeps a hand's width above the picture and
   below it. The picture is what stands inside. */
.custom-dining-menu__gallery img {
	position: absolute;
	inset: 28px 0 auto;
	width: 100%;
	height: 492px;
	display: block;
	border-radius: 24px;
	object-fit: cover;
	object-position: center;
}

.custom-dining-menu__gallery .custom-media-empty {
	position: absolute;
	inset: 28px 0 auto;
	height: 492px;
	border-radius: 24px;
}

@media ( prefers-reduced-motion: reduce ) {
	.custom-dining-menu__button {
		transition: none;
	}
}

/* Tablet and mobile — the file draws one of them (11167:8352): the words
   over the picture rather than beside it, 356 across in the middle of a band
   38 deep above and below, the two 24 apart. The picture is 300 deep here
   and its corner 18. Tablet is not drawn; it takes the same figures, and the
   picture is given more depth than 300, which at that width is a strip. */
@media ( max-width: 1024px ) {
	.custom-dining-menu {
		flex-direction: column;
		align-items: center;
		gap: 24px;
		padding: 38px 18px;
	}

	.custom-dining-menu__column {
		align-items: center;
		gap: 24px;
		width: 100%;
		min-height: 0;
	}

	.custom-dining-menu__heading,
	.custom-dining-menu__body {
		width: 100%;
	}

	.custom-dining-menu__button,
	.custom-dining-menu__button:hover,
	.custom-dining-menu__button:focus,
	.custom-dining-menu__button:active {
		margin-top: 0;
		padding: 8px 16px;
		border-radius: 16px;
	}

	.custom-dining-menu__gallery {
		width: 100%;
		height: 300px;
		margin-top: 0;
	}

	.custom-dining-menu__gallery img,
	.custom-dining-menu__gallery .custom-media-empty {
		inset: 0;
		height: 100%;
		border-radius: 18px;
	}
}

@media ( min-width: 768px ) and ( max-width: 1024px ) {
	.custom-dining-menu__gallery {
		height: 500px;
	}
}
