.d_blog_container {
	display: block;
	width: 100%;
	color: #5e5e5e;
	padding: 20px;
	background: #fff;
	box-shadow: 0 1px 5px 0 rgb(0 1 1 / 30%);
}
.d_blog_box {
	--d_blogBox-width: calc(100vw - 40px);
	padding: 0 calc((100vw - var(--d_blogBox-width)) / 2);
}

.d_blog_backGround {
	background-color: #d9d9d9;
	padding: 15px 0;
}

.d_blog_container h1 {
	color: #111111;
	font-weight: 800;
	line-height: 1.2;
	font-size: 28px;
	margin-top: 13px;
	margin-bottom: 20px;
}

.d_blog_container h2, .d_blog_container h3, .d_blog_container h4, .d_blog_container h5 {
	color: #111111;
}

.d_singlePost_content p {
	color: #333;
	font-size: 18px;
	line-height: 1.5;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 400;
}

.d_singlePost_content figure {
	margin: 0;
}

.d_singlePost_headerMenu {
	display: flex;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.d_singlePost_featuredImg {
	width: 100%;
	margin-bottom: 30px;
}

.d_singlePost_headerMenu section:not(:last-child), .d_singlePost_headerMenu a {
	margin-right: 8px;
	transition: 0.3s;
}

.d_singlePost_headerMenu a:hover {
	color: #0b0b0b;
}

.d_singlePost_oneHeaderElement {
	color: #818181;
	font-size: 12px;
	display: flex;
	align-items: center;
}

.d_singlePost_oneHeaderElement span {
	margin-left: 7px;
	transition: 0.3s;
}

.d_singlePost_authorBox img {
	border-radius: 50%;
	width: 23px;
	height: 23px;
}

.d_singlePost_oneHeaderElement svg {
	fill: #818181;
	width: 18px;
	height: 18px;
	transition: 0.3s;
}

.d_singlePost_content {
	padding-bottom: 30px;
	border-bottom: 1px solid #d9d9d9;
}

.d_singlePost_aboutAuthor {
	display: flex;
	flex-direction: column;
	padding: 40px 0;
	border-bottom: 1px solid #d9d9d9;
	align-items: flex-start;
	justify-content: flex-start;
}

.d_singlePost_aboutAuthor section {
	display: flex;
	flex-direction: column;
}

.d_singlePost_aboutAuthor span {
	color: #111111;
	font-weight: 800;
	font-size: 20px;
}

.d_singlePost_aboutAuthorAvatar {
	display: flex;
	align-items: center;
}

.d_singlePost_aboutAuthorAvatar img {
	border-radius: 50%;
	margin-right: 20px;
}

.d_singlePost_button {
	color: #fff;
	background: #ee7105;
	transition: 0.3s;
	padding: 5px 11px;
	text-transform: uppercase;
	border-radius: 50px;
	font-size: 10px;
}

.d_singlePost_button:hover {
	background: #0b0b0b;
	color: #ee7105;
}

.d_singlePost_otherPosts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	font-size: 14px;
	padding-top: 30px;
}

.d_singlePost_otherPosts a {
	color: #5e5e5e;
}

.d_singlePost_otherPosts svg {
	width: 10px;
	height: 10px;
	fill: #5e5e5e;
	transition: 0.3s;
}


.d_singlePost_nextPost {
	display: grid;
	align-items: center;
	grid-template-columns: 1.7fr  0.3fr;
}

.d_singlePost_otherPosts section {
	transition: 0.3s;
}

.d_singlePost_previousPost {
	display: grid;
	align-items: center;
	grid-template-columns: 0.3fr 1.7fr;
}

.d_singlePost_previousPost section {
	margin-left: 10px;
}

.d_singlePost_nextPost section {
	text-align: right;
}

.d_singlePost_otherPosts span {
	border-radius: 50%;
	width: 25px;
	height: 25px;
	background: #5e5e5e1a;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

.d_singlePost_nextPost section {
	margin-right: 10px;
}


.d_singlePost_nextPost span {
	transform: rotate(180deg);
}

.d_singlePost_otherPosts a:hover {
	color: #ee7105;
}

.d_singlePost_otherPosts a:hover svg {
	fill: #fff;
}

.d_singlePost_otherPosts a:hover span {
	background: #ee7105;
}

.d_singlePost_arrowBody {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: flex-end;
}

.d_singlePost_content a {
	padding: 0;
	color: #ee7105;
	transition: 1s;
	text-decoration: underline;
}

.d_singlePost_content a:hover{
	text-decoration: none
}
.d_singlePost_content ol, .d_singlePost_content ul {
	margin: 20px 0;
	padding-top: 10px;
	padding-bottom: 10px;
}

.d_singlePost_content h2, .d_singlePost_content h3, .d_singlePost_content h4 {
	padding-top: 20px;
}

.wp-block-image, .size-full{
	text-align: center;
	font-size: 14px
}
.d_singlePost_content p:first-child {
	margin-top: 0;
}
.d_singlePost_addComment {
	cursor: pointer;
}

.d_singlePost_addComment:hover span {
	color: #111111;
}

.d_singlePost_addComment:hover svg {
	fill: #111111;
}

.d_singlePost_desktopName {
	display: none;
}
.d_singlePost_mobileName {
	display: block;
}
@media (min-width: 768px ) {

	.d_blog_box {
		--d_blogBox-width: 740px;
	}

	.d_singlePost_content p {
		font-size: 20px;
	}
	.d_singlePost_mobileName {
		display: none;
	}
	.d_singlePost_desktopName {
		display: block;
	}
	.d_singlePost_previousPost section {
		margin-left: 0;
	}

	.d_singlePost_nextPost section {
		margin-right: 0;
	}


	.d_blog_container h1 {
		font-size: 40px;
	}

	.d_singlePost_aboutAuthor {
		display: grid;
		grid-template-columns: 1fr 4fr;
	}


	.d_blog_container {
		padding: 37px 60px 50px;
	}

	.d_singlePost_content h1 {
		font-size: 33px;
		margin: 25px 0;
		line-height: 1.364;
	}

	.d_singlePost_content figure {
		margin: auto;
	}
}