.singleBlog-content {
	scroll-behavior: smooth;
}

.article-meta,
.article-quick-answer,
.article-toc,
.article-takeaways,
.article-faq,
.article-cta,
.related-posts {
	margin: 32px 0;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	padding: 14px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	color: #5f5f5f;
	font-size: 15px;
	line-height: 1.5;
}

.article-meta strong {
	color: #202020;
	font-weight: 700;
}

.article-quick-answer,
.article-takeaways,
.article-cta {
	padding: 24px;
	border: 1px solid rgba(216, 187, 113, 0.42);
	border-radius: 8px;
	background: #fbfaf7;
}

.article-quick-answer h2,
.article-takeaways h2,
.article-faq h2,
.article-toc h2,
.article-cta h2,
.related-posts h2 {
	margin-top: 0;
	margin-bottom: 16px;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.18;
}

.article-quick-answer__content p:last-child,
.article-cta p:last-child {
	margin-bottom: 0;
}

.article-toc {
	padding: 22px 24px;
	border: 1px solid rgba(0, 0, 0, 0.09);
	border-radius: 8px;
	background: #fff;
}

.article-toc ol {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 20px;
}

.article-toc a {
	color: #202020;
	text-decoration: none;
	border-bottom: 1px solid rgba(216, 187, 113, 0.45);
}

.article-toc a:hover,
.article-toc a:focus {
	color: #9d7c35;
}

.article-toc__subitem {
	margin-left: 16px;
	font-size: 0.95em;
}

.article-takeaways ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding-left: 20px;
}

.article-faq {
	display: grid;
	gap: 16px;
}

.article-faq .faq-item {
	padding: 20px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-faq .faq-item:last-child {
	border-bottom: 0;
}

.article-faq h3 {
	margin-top: 0;
	margin-bottom: 8px;
	font-size: clamp(19px, 2.2vw, 24px);
	line-height: 1.25;
}

.article-cta {
	background: #151515;
	color: #fff;
}

.article-cta h2,
.article-cta p {
	color: #fff;
}

.article-cta .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin-top: 8px;
	padding: 12px 22px;
	border-radius: 4px;
	background: #d8bb71;
	color: #111;
	font-weight: 700;
	text-decoration: none;
}

.related-posts__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.related-posts__item {
	min-width: 0;
}

.related-posts__thumb {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	margin-bottom: 12px;
	border-radius: 8px;
	background: #f1f1f1;
}

.related-posts__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.related-posts__item h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
}

.related-posts__item a {
	color: #202020;
	text-decoration: none;
}

.related-posts__item a:hover,
.related-posts__item a:focus {
	color: #9d7c35;
}

@media (max-width: 900px) {
	.related-posts__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.article-meta {
		display: grid;
		gap: 8px;
		font-size: 14px;
	}

	.article-quick-answer,
	.article-toc,
	.article-takeaways,
	.article-cta {
		padding: 18px;
	}

	.related-posts__grid {
		grid-template-columns: 1fr;
	}
}
