/* Landing Page Styles */

/* Hintergrund nur für Landing Page */
body.page-template-template-landing-page {
	background-image: none;
	background-color: var(--ki_gradient-3);
}

/* Entferne das global gesetzte max-width von #page */
body.page-template-template-landing-page #page {
	max-width: none !important;
	padding: 0 !important;
}

/* Header soll weiterhin zentriert bleiben (die alte Begrenzung hier manuell nachbauen) */
body.page-template-template-landing-page header {
	max-width: 72rem; /* Tailwind: max-w-5xl = 72rem */
	margin-left: auto;
	margin-right: auto;
	padding-left: 0.5rem;  /* lg:px-2 */
	padding-right: 0.5rem;
	justify-content: space-between;
	width: 100%;
}

@media (min-width: 1280px) {
	body.page-template-template-landing-page header {
		padding-left: 0;
		padding-right: 0;
	}
}


body.page-template-template-landing-page main,
body.page-template-template-landing-page section,
body.page-template-template-landing-page #content {
	max-width: none !important;
	width: 100%;
}

