.single-blog-post-section {
	display: flex;
	flex-direction: column;
	padding: 0 0 40px 0px;
	width: 100%;
}

.single-blog-post-section .single-blog-post-wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
}

.single-blog-post-section .single-blog-post-content {
	color: var(--grey-500);
	background-color: var(--white);
	padding: 10px 20px 10px;
	width: 100%;
}

.single-blog-post-section h1 {
	font-weight: 500;
	font-size: 40px;
	line-height: 48px;
	margin: 0;
	color: var(--grey-900);
}

.single-blog-post-section h2,
.single-blog-post-section h3,
.single-blog-post-section h4,
.single-blog-post-section h5,
.single-blog-post-section h6,
.single-blog-post-section strong,
.single-blog-post-section b {
	color: var(--grey-900);
	font-weight: var(--fw-regular);
}

.single-blog-post-section p {
	margin-bottom: 1rem;
}

.single-blog-post-section h2 {
	margin-block-start: 0.8em;
	margin-block-end: 0.4em;
}

.single-blog-post-section h3 {

	margin-block-start: 1.2em;
	margin-block-end: 0.5em;
}

.single-blog-post-content h4 {
	margin-block-start: 1.2em;
	margin-block-end: 0.5em;
}

.single-blog-post-content h5 {

	margin-block-start: 1.2em;
	margin-block-end: 0.5em;
}

.single-blog-post-content h6 {
	margin-block-start: 1.2em;
	margin-block-end: 0.5em;
}

.single-blog-post-content li {
	line-height: 28px;
}

.single-blog-post-content a {
	color: var(--primary-500);
}

.single-blog-post-section .single-blog-post-content__info {
	display: flex;
	gap: 24px;
	justify-content: flex-start;
	align-items: center;
	margin: 12px 0;
}
.single-blog-post-content__info__date {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
.single-blog-post-content__info__date svg {
	width: 20px;
	height: 20px;
}
.single-blog-post-content__info__date svg * {
	fill: var(--grey-500);
}
.single-blog-post-section .single-blog-post-info-wrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
	max-width: 100%;
}

.single-blog-post-section .single-blog-post-info-wrapper__image {
	width: 100%;
	display: block;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: auto;
	object-fit: cover;
}

@media (max-width: 1275px) {
	.single-blog-post-section {
		max-width: 100%;
	}
	.single-blog-post-section .single-blog-post-info-wrapper {
		width: 100%;
	}
	.single-blog-post-section .featured-img {
		height: 550px;
	}
}
@media (max-width: 992px) {
	.single-blog-post-section {
	}
}

@media (max-width: 768px) {
	.single-blog-post-section h1 {
		font-size: 2rem;
	}
	.single-blog-post-section .single-blog-post-info-wrapper__image {
		height: 450px;
	}
}

@media (max-width: 576px) {
	.single-blog-post-section .single-blog-post-info-wrapper__image {
		height: 350px;
	}
	.single-blog-post-section .single-blog-post-info-wrapper__info {
		padding: 30px;
	}
}

@media (max-width: 440px) {
	.single-blog-post-section .single-blog-post-info-wrapper__image {
		height: 300px;
	}
}
@media (max-width: 380px) {
	.single-blog-post-section h1 {
		font-size: 28px;
		line-height: 32px;
	}
	.single-blog-post-section .single-blog-post-info-wrapper__info {
		padding: 20px;
	}
}
