:is(a, button, input, textarea, select, summary):focus-visible {
	outline: 2px solid #007bbd;
	outline-offset: 2px;
}

.input__wrapper {
	width: 100%;
	display: flex;
	gap: 5px;
}

.input__wrapper button {
	margin-bottom: 15px;
	background: none;
	font-size: 150%;
	color: #007bbd;
}

.section--hero {
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;

	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

/* Hintergrundbild im Standard */
.section--hero {
	background-image: var(--bg-landscape);
}

/* Hintergrundbild für Portrait */
@media (orientation: portrait) {
	.section--hero {
		background-image: var(--bg-portrait);
	}
}

.section--blue.section--hero {
	background-image: linear-gradient(to bottom right,#68b3c2, #277882);	
}

/* Freigestelltes Bild: vollständig sichtbar, nie beschnitten */
.hero__foreground {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right;
	z-index: 2;
}

.section--right .hero__foreground {
	object-position: left;
}

.container__wrapper {
	width: 100%;
	position: relative;
	z-index: 3;
	padding: 20px;
	margin-top: 3%;
}
@media (min-width: 1280px) {
	.container__wrapper {
		margin-top: 10%;
		padding: 30px;
		}
	}
.container__wrapper.container--half {
	width: 50%;
	background-color: #007bbd;
	color: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (orientation: portrait) {
	.container__wrapper.container--half {
		width: 100%;
	}
}
.container__wrapper h1 {
	font-size: 50px;
	line-height: 54px;
}

.container__wrapper h2,
.container__wrapper h3 {
	color: #fff;
	font-size: 28px;
	line-height: 30px;
	margin-bottom: 10px;
}

p + .container__wrapper h2 {
	margin-top: 25px;
}

.container__wrapper p:last-child {
    margin-bottom: -12px;
}

@media (min-width: 1920px) {
	.container__wrapper h2,
	.container__wrapper h3 {
		font-size: 42px;
		line-height: 44px;
		margin-bottom: 10px;

	}

	.container__wrapper p {
		font-size: 21px;
		line-height: 26px;
		margin-bottom: 10px;
	}

	.container--full h1 {
		font-size: 65px;
		line-height: 70px;
	}

	.container--full h2,
	.container--full h3 {
		font-size: 48px;
		line-height: 50px;
	}

	.container--full p {
		font-size: 24px;
		line-height: 32px;
	}
}

.section--right .container__wrapper {
	float: right;
}

@media (orientation: portrait) {
	.container__wrapper {
		width: 100%;
	}
}