/* ==========================================================================
   Template: Legal (Impressum / Datenschutz)
   ========================================================================== */

.zw-legal-hero {
	position: relative;
	height: 100vh;
	min-height: 100vh;
	background-color: var(--zw-color-bg-hellgrau);
	overflow: hidden;
}

.zw-legal-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.zw-legal-hero-bg--mobile {
	display: none;
}

.zw-legal-content a {
	overflow-wrap: break-word;
	word-break: break-word;
}

@media (max-width: 767px) {
	.zw-legal-hero {
		height: 60vh;
		min-height: 60vh;
	}

	.zw-legal-hero-bg--desktop {
		display: none;
	}

	.zw-legal-hero-bg--mobile {
		display: block;
	}
}