/* 
Single posts design only 
 */
/* Related Posts */
.related-posts-container {
	margin: 50px 0;
	padding: 0 50px;
}
.related-posts-container h3 {
	display: inline-block;
	margin-bottom: 30px;
	font-size: 25px;
	border-bottom: 3px solid var(--base-4);
	padding-bottom: 10px;
}
.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 25px;
}
.related-post-item {
	text-align: center;
}
.related-post-item a {
	text-decoration: none;
	color: inherit;
	display: block;
}
.related-post-item a:hover{
	color: var(--accent);
}
.related-post-item img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	margin-bottom: 15px;
	border-radius: 8px;
}
.related-post-item p {
	margin: 0;
	padding: 0 5px;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
}
/* Buttons & Links */
.comment-form input[type="submit"] {
	font-size: 14px;
	display: inline-block;
	text-align: center;
}
.single-post .cat-links,
.single-post .comments-link,
.single-post .tags-links {
	display: inline-block;
	margin: 5px 10px 5px 0;
	padding: 6px 12px;
	border: 1px solid var(--base-4);
	border-radius: 20px;
	font-size: 14px;
	background: var(--base-3);
}
.site-main .post-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin: 2em 0;
	padding: 15px 0;
	border-top: 1px solid var(--base-4);
	border-bottom: 1px solid var(--base-4);
}
.site-main .post-navigation .nav-previous,
.site-main .post-navigation .nav-next {
	flex: 1 1 50%;
	text-align: center;
	display: flex;
	align-items: center;
}
.site-main .post-navigation .nav-previous {
	justify-content: flex-start;
	text-align: left;
}
.site-main .post-navigation .nav-next {
	justify-content: flex-end;
	text-align: right;
}
.site-main .post-navigation .nav-previous::before {
	font-family: "icomoon";
	content: "\e903";
	font-size: 18px;
	padding-right: 1em;
}
.site-main .post-navigation .nav-next::after {
	font-family: "icomoon";
	content: "\e902";
	font-size: 18px;
	padding-left: 1em;
}
.site-main .post-navigation .nav-previous .gp-icon,
.site-main .post-navigation .nav-next .gp-icon {
	display: none;
}
.comment .children,
.comment-content {
	border-width: 0 !important;
}
.comment .children li .comment-content,
.comment-content {
	border-bottom-width: 1px !important;
}
/* Social Share */
.ml-social-wrapper {
	margin: 30px 0;
	font-size: 0;
	display: flex;
	flex-wrap: wrap;
}
.ml-social-sharing {
	font-size: 17px;
	margin: 0 5px;
	border-radius: 50px;
	padding: 10px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	border: 1px solid var(--base-4);
}
.ml-social-facebook,
.ml-social-twitter,
.ml-social-linkedin,
.ml-social-whatsapp {
	background:var(--base-3);
}
.ml-social-facebook {
	fill: #3b5998;
}
.ml-social-twitter {
	fill: #0f1419;
}
.ml-social-linkedin {
	fill: #0077b5;
}
.ml-social-whatsapp {
	fill: #25d366;
}
.ml-social-sharing:hover {
	opacity: 0.8;
}
/* Author Box */
.ml-author-box {
	padding: 3% 3% 10px;
	font-size: 0.9em;
	display: flex;
	align-items: center;
	background: var(--base-3);
	border: 1px solid var(--base-4);
}
.ml-author-box .insights-avatar {
	width: 250px;
	border-radius: 100%;
	margin-right: 30px;
}
.ml-author-box .insights-avatar img {
	border-radius: 100%;
}
.author-title {
	margin-bottom: 0.1em;
	font-weight: 600;
	font-size: 17px;
}
.author-description {
	line-height: 1.6em;
	font-size: 14px;
}
.author-links a {
	float: left;
	font-size: 2em;
	line-height: 2em;
	margin-top: -1.5em;
}
/* Responsive Layout */
@media (max-width: 768px) {
	.site-main .post-navigation {
		flex-direction: column;
		gap: 10px;
    }
	.site-main .post-navigation .nav-previous,
	.site-main .post-navigation .nav-next {
		flex: 1 1 100%;
		justify-content: center;
		text-align: center;
    }
	.related-posts-container {
		margin: 50px 0;
		padding: 0 30px;
	}
	.ml-social-sharing {
		padding: 7px 12px;
	}
	.ml-author-box {
		flex-direction: column;
		text-align: center;
		padding: 20px 20px 25px;
		margin-top: 60px;
	}
	.ml-author-box .insights-avatar {
        width: 100%;
        margin: -60px 0 0;
	}
	.ml-author-box .insights-avatar img {
		max-width: 100px;
	}
	.author-links a {
		float: none;
		align-self: center;
	}
	.author-description {
		margin-bottom: -0.1em;
	}
}