body * {
	box-sizing: border-box;
}

.container-1366 {
	max-width: 1366px;
	width: 100%;
	margin: 60px auto;
	padding: 0 15px;
}

.single-page .heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 20px;
}

.single-page .heading .title-bc {
	margin-right: 35px;
}

.single-page .heading .title {
	font-size: 2.5rem;
	letter-spacing: 1px;
	margin: 0 0 10px;
}

.single-page .heading .socials-list {
	display: grid;
	grid-gap: 8px;
}

.single-page .heading .socials img {
	display: block;
}

.single-page .post-image {
	width: 100%;
	height: 650px;
	object-fit: cover;
}

.single-page .content {
	margin-top: 40px;
	line-height: 22px;
}

.single-page .content h1,
.single-page .content h2,
.single-page .content h3,
.single-page .content h4,
.single-page .content h5,
.single-page .content h6 {
	font-size: 1.8rem;
}

.single-page .related {
	margin-top: 70px;
}

.single-page .related .related-title {
	text-align: center;
	font-size: 2rem;
	margin: 0 0 30px;
}

.single-page .related .related-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
}

.single-page .related .post img {
	display: block;
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.single-page .related .post .post-title {
	margin: 15px 0;
	font-size: 1.7rem;
}

.single-page .related .post .related-content {
	color: #797979;
	line-height: 22px;
	text-align: justify;
}

.single-page .related .post .read-more {
	color: #00A8C6;
	margin-top: 15px;
	display: block;
}

@media (max-width: 1367px) {
	.single-page .related .post img {
		height: 13vw;
	}
}

@media (max-width: 1023px) {
	.single-page .post-image {
		height: 63vw;
	}
}

@media (max-width: 767px) {
	.single-page .related .related-list {
		grid-template-columns: 1fr;
	}

	.single-page .related .post img {
		height: 35vw;
	}
}

@media (max-width: 600px) {
	.single-page .heading .title {
		font-size: 2rem;
	}

	.single-page .content h1,
	.single-page .content h2,
	.single-page .content h3,
	.single-page .content h4,
	.single-page .content h5,
	.single-page .content h6 {
		font-size: 1.4rem;
	}
}