/* ===== SECTION: Blog Post - Start ===== */
.blog-post-section {
	padding: 0 0 100px 0;
	overflow: visible;
}

/* 3-колоночная сетка: боковые поровну, центр 930px */
.blog-post-section .post-grid {
	display: grid;
	grid-template-columns: 1fr 930px 1fr;
	gap: 0;
	align-items: start;
}

/* Левая колонка — Соцсети */
.blog-post-section .post-sidebar-left {
	padding-top: 5px;
}

.blog-post-section .share-block {
	position: sticky;
	top: calc(var(--header-height) + 20px);
}

.blog-post-section .share-label {
	display: block;
	margin-bottom: 15px;
	color: var(--gray);
}

.blog-post-section .share-block .bg-primary img {
	filter: var(--primary-filter-match);
}

/* Правая колонка — Дата */
.blog-post-section .post-sidebar-right {
	padding-top: 5px;
	justify-self: end;
}

.blog-post-section .post-sidebar-right .post-date {
	position: sticky;
	top: calc(var(--header-height) + 20px);
	color: var(--gray);
	white-space: nowrap;
}

/* Центральная колонка — Контент */
.blog-post-section .post-main .h1 {
	color: var(--black);
	margin-bottom: 30px;
}

/* Post Content */
.blog-post-section .post-content {
	display: flex;
	flex-direction: column;
	gap: var(--blocks-indent);
	color: var(--black);
}

.blog-post-section .post-content h2,
.blog-post-section .post-content h3,
.blog-post-section .post-content h4,
.blog-post-section .post-content h5,
.blog-post-section .post-content h6 {
	color: var(--black);
}

.blog-post-section .post-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-small);
}

.blog-post-section .post-content blockquote {
	padding: 20px 30px;
	background: var(--light-gray);
	border-left: 4px solid var(--primary);
	border-radius: var(--radius-small);
}

.blog-post-section .post-content .wp-block-columns {
	display: flex;
	gap: var(--blocks-indent);
}

/* Моб дата */
.blog-post-section .post-main .post-date {
	color: var(--gray);
	margin-bottom: 15px;
}

/* Моб соцсети */
.blog-post-section .share-block-mob {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.blog-post-section .share-block-mob .bg-primary img {
	filter: var(--primary-filter-match);
}

/* Adaptive 1680px */
@media (max-width: 1680px) {
	.blog-post-section .post-grid {
		grid-template-columns: 1fr 750px 1fr;
	}
}

/* Adaptive 1279px */
@media (max-width: 1279px) {
	time.post-date.mob {
		display: flex;
		margin-bottom: 15px;
	}
	.blog-post-section {
		padding: 0 0 60px 0;
	}

	.blog-post-section .post-grid {
		display: block;
	}

	.blog-post-section .post-main .h1 {
		margin-bottom: 20px;
	}
}
/* ===== SECTION: Blog Post - End ===== */

/* ===== SECTION: Related Posts - Start ===== */
.related-posts-section {
	padding: 60px 0 100px;
}

.related-posts-section .related-header {
	margin-bottom: 20px;
}

/* Adaptive 1680px */
@media (max-width: 1680px) {
	.related-posts-section {
		padding: 50px 0 80px;
	}
}

/* Adaptive 1279px */
@media (max-width: 1279px) {
	.related-posts-section {
		padding: 0px 0 40px;
	}

	.related-posts-section .related-header {
		margin-bottom: 20px;
	}
	.blog-post-section .share-block-mob {
		display: flex;
		justify-content: center;
		flex-direction: column;
		gap: 12px;
		margin-top: 30px;
	}
}
/* ===== SECTION: Related Posts - End ===== */
