.wba-natur-erleben {
	padding: 72px 40px;
}

.wba-natur-erleben__inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	gap: 64px;
	overflow: visible;
	padding-bottom: 32px;
}

.wba-natur-erleben__left {
	flex: 1 1 420px;
	min-width: 0;
}

.wba-natur-erleben__headline {
	font-size: clamp(28px, 3.2vw, 44px);
	font-weight: 700;
	color: var(--wba-green-dark);
	line-height: 1.15;
	margin: 0 0 20px;
}

.wba-natur-erleben__text {
	color: var(--wba-green-mid);
	line-height: 1.75;
	margin: 0 0 36px;
}

.wba-natur-erleben__icons {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 36px;
}

.wba-icon-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wba-icon-item__icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(74, 140, 92, 0.12);
	color: var(--wba-green-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-bottom: 4px;
}

.wba-icon-item__titel {
	font-weight: 700;
	color: var(--wba-green-dark);
	display: block;
	line-height: 1.3;
}

.wba-icon-item__text {
	color: var(--wba-green-mid);
	line-height: 1.5;
}

.wba-natur-erleben__right {
	flex: 0 0 50%;
	position: relative;
	align-self: stretch;
}

.wba-natur-erleben__bild-gross {
	width: 100%;
	height: 100%;
	min-height: 420px;
}

.wba-natur-erleben__bild-gross img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--wba-radius-lg);
	display: block;
}

.wba-natur-erleben__bild-klein {
	position: absolute;
	bottom: -24px;
	left: -5px;
	width: 25%;
	z-index: 2;
}

.wba-natur-erleben__bild-klein img {
	width: 100%;
	height: auto;
	object-fit: unset;
	display: block;
	border-radius: 0;
	box-shadow: none;
	border: none;
}

.wba-natur-erleben__bild-badge {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(29, 61, 42, 0.88);
	color: var(--wba-white);
	padding: 10px 14px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.wba-natur-erleben__bild-badge-icon {
	flex-shrink: 0;
	color: var(--wba-green-bright);
	margin-top: 1px;
}

.wba-natur-erleben__bild-badge p {
	line-height: 1.5;
	margin: 0;
	color: rgba(255,255,255,0.92);
}

@media (max-width: 1024px) {
	.wba-natur-erleben__inner {
		flex-direction: column;
		gap: 40px;
	}
	.wba-natur-erleben__right {
		flex: none;
		width: 100%;
		min-height: 360px;
	}
	.wba-natur-erleben__icons {
		grid-template-columns: repeat(2, 1fr);
	}
	.wba-natur-erleben__bild-klein {
		left: -16px;
		bottom: -16px;
	}
}

@media (max-width: 640px) {
	.wba-natur-erleben {
		padding: 48px 20px;
	}
	.wba-natur-erleben__icons {
		grid-template-columns: 1fr 1fr;
	}
	.wba-natur-erleben__bild-klein {
		width: 65%;
		left: -10px;
	}
}