/**
 * Landing Page Importer — scoped reset.
 *
 * Neutralizes the active theme's inherited styles inside the landing container
 * so imported designs render as authored. Every selector is scoped to
 * #lpi-landing-page-container (ID specificity) so it outranks theme class rules,
 * while the imported design CSS — also scoped to the same container and loaded
 * AFTER this file — overrides these defaults where it sets them explicitly.
 */

#lpi-landing-page-container {
	all: revert;
	box-sizing: border-box;
	line-height: normal;
}

#lpi-landing-page-container *,
#lpi-landing-page-container *::before,
#lpi-landing-page-container *::after {
	box-sizing: border-box;
}

/* Links: drop theme colours/underlines; the design sets its own. */
#lpi-landing-page-container a {
	color: inherit;
	text-decoration: none;
	background: none;
	box-shadow: none;
}

/* Headings & text blocks: remove theme margins/typography bleed. */
#lpi-landing-page-container h1,
#lpi-landing-page-container h2,
#lpi-landing-page-container h3,
#lpi-landing-page-container h4,
#lpi-landing-page-container h5,
#lpi-landing-page-container h6,
#lpi-landing-page-container p,
#lpi-landing-page-container figure,
#lpi-landing-page-container blockquote {
	margin: 0;
	padding: 0;
	font: inherit;
	color: inherit;
	letter-spacing: normal;
	text-transform: none;
}

/* Lists: remove theme bullets/indentation. */
#lpi-landing-page-container ul,
#lpi-landing-page-container ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Buttons & form controls: strip theme skins so the design's styles apply. */
#lpi-landing-page-container button,
#lpi-landing-page-container input,
#lpi-landing-page-container select,
#lpi-landing-page-container textarea {
	font: inherit;
	color: inherit;
	letter-spacing: normal;
	text-transform: none;
}

#lpi-landing-page-container button {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	text-shadow: none;
}

/* Media: sane responsive defaults. */
#lpi-landing-page-container img,
#lpi-landing-page-container svg,
#lpi-landing-page-container video {
	max-width: 100%;
	height: auto;
}

/* Tables. */
#lpi-landing-page-container table {
	border-collapse: collapse;
}
