.bkl-profile {
	clear: both;
	padding: 48px 15px;
	/* Legacy-CSS der Seite arbeitet teils mit font-size: 0 (inline-block-Hack) —
	   feste Basis, damit em/ch-Einheiten funktionieren */
	font-size: 17px;
	line-height: 1.7;
}
.bkl-profile__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(260px, 400px) 1fr;
	gap: 24px 56px;
	align-items: start;
}
.bkl-profile--right .bkl-profile__media {
	order: 2;
}
.bkl-profile__img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.4);
}
.bkl-profile__title {
	margin: 0 0 4px;
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.15;
	letter-spacing: 0.01em;
}
.bkl-profile__subtitle {
	margin: 0 0 20px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	opacity: 0.6;
}
.bkl-profile__text {
	width: 100%;
	max-width: 680px;
	hyphens: manual;
}
.bkl-profile__text p {
	width: auto;
	margin: 0 0 1em;
	font-size: 17px;
	line-height: 1.7;
	hyphens: manual;
	float: none;
}
@media (max-width: 760px) {
	.bkl-profile__inner {
		grid-template-columns: 1fr;
	}
	.bkl-profile--right .bkl-profile__media {
		order: 0;
	}
	.bkl-profile__img {
		max-width: 420px;
	}
}
