.blog-article-page {
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.blog-article-title {
	margin: 0 0 18px;
	color: #111;
	font-size: 46px;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.blog-article-meta {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 0 28px;
}

.blog-article-lesezeit {
	color: #6b6b6b;
	font-size: 14px;
	line-height: 1.4;
}

.blog-article-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.blog-article-author-photo {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #eee;
	background-size: cover;
	background-position: center;
	flex: 0 0 28px;
}

.blog-article-author-name {
	color: #111;
	font-size: 15px;
	line-height: 1.3;
}

.blog-article-hero {
	margin: 0 0 36px;
}

.blog-article-hero img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
	object-fit: cover;
}

.blog-article-hero figcaption {
	margin-top: 10px;
	color: #6b6b6b;
	font-size: 13px;
}

.blog-article-content {
	color: #242424;
	font-size: 18px;
	line-height: 1.75;
}

.blog-article-content p {
	margin: 0 0 1.25em;
}

.blog-article-content h2 {
	margin: 1.6em 0 0.6em;
	color: #111;
	font-size: 32px;
	line-height: 1.25;
}

.blog-article-content h3 {
	margin: 1.4em 0 0.5em;
	color: #111;
	font-size: 24px;
	line-height: 1.3;
}

.blog-article-content img,
.blog-article-content figure img {
	border-radius: 16px;
}

.blog-article .author-infos {
	display: flex;
	gap: 14px;
	width: calc(100% - 40px);
	margin-top: 48px;
	padding: 20px;
	border-radius: 16px;
	background-color: #f7f7f7;
	font-size: 14px;
}

.blog-article .author-infos a {
	text-decoration: none;
}

.blog-article .author-photo {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #eee;
	background-size: cover;
	background-position: center;
}

.blog-article .author-left {
	width: 60px;
	flex: 0 0 60px;
}

.blog-article .author-description {
	width: calc(100% - 60px);
}

.blog-article-related-title {
	margin: 48px 0 18px;
}

.blog-article .related-post-frame {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
}

.blog-article .related-post-frame > a.related-post {
	display: block;
	width: 100%;
	margin: 0;
	overflow: hidden;
	border: 1px solid #eee;
	border-radius: 16px;
	background: #fff;
	color: #111;
	text-decoration: none;
	box-sizing: border-box;
}

.blog-article .related-post-frame .related-post-thumbnail {
	width: 100%;
	aspect-ratio: 1 / 1;
	padding-top: 0;
	margin: 0;
	background-size: cover;
	background-position: center;
	border-radius: 0;
}

.blog-article .related-post-frame .related-post-title {
	margin: 0;
	padding: 14px 16px 18px;
	color: #111;
	font-size: 18px;
	line-height: 1.35;
	text-align: left;
}

.blog-article .lightbox {
	display: none;
	position: fixed;
	z-index: 9999999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
}

.blog-article .lightbox img {
	max-width: 90%;
	max-height: 80%;
	margin-top: 2%;
}

.blog-article .lightbox:target {
	outline: none;
	display: block;
}

@media all and (max-width: 780px) {
	.blog-article-title {
		font-size: 34px;
	}

	.blog-article-content {
		font-size: 17px;
	}

	.blog-article-content h2 {
		font-size: 26px;
	}

	.blog-article .related-post-frame {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media all and (max-width: 480px) {
	.blog-article-title {
		font-size: 28px;
	}

	.blog-article .author-infos {
		display: block;
		width: calc(100% - 32px);
		padding: 16px;
	}

	.blog-article .author-description {
		width: 100%;
		margin-top: 10px;
	}

	.blog-article .related-post-frame {
		grid-template-columns: minmax(0, 1fr);
	}
}
