/* ====================================================================================

	Coming soon page

	The error page's ground and card without its content: warm cream under the flagwave, and one purple rounded card holding a single centred line. No chrome, no links. An inline video can slot into the card beneath the title without relayout.

	@related colors

==================================================================================== */

.soon-page {
	/* @match svh_centering - svh so centring ignores iOS Safari's post-paint toolbar settle; vh line is the fallback where svh is unsupported */
	min-height: 100vh;
	min-height: 100svh;

	background-color: var(--cream-warm);
	background-image: url("../../images/deel-flagwave.gif");
	/* @match flagwave_tile_size - flagwave tile width, same on both breakpoints */
	background-size: 560px auto;
	background-repeat: repeat;
}

.soon {
	display: flex;
	align-items: center;
	justify-content: center;

	/* @match svh_centering - svh so centring ignores iOS Safari's post-paint toolbar settle; vh line is the fallback where svh is unsupported */
	min-height: 100vh;
	min-height: 100svh;
	padding: 48px 18px;
}

.soon__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	width: auto;
	padding: 11px 34px 15px;

	background-color: var(--deel-purple);

	color: var(--cream-warm);
	text-align: center;
}

.soon__title {
	font-size: 25px;
	font-weight: var(--font-weight-bold);
	line-height: 1.1;
}

.soon__video {
	display: block;

	width: 300px;
	max-width: 100%;
	/* attr height reserves the box pre-metadata; auto hands it to aspect-ratio so it can't stretch the card */
	height: auto;
	margin-top: 12px;
	margin-bottom: 6px;
}

/* @media ( min-width: 721px ) {



} */
