.post-content h2{
	font-size:1.5rem !important;
	font-weight: 500 !important;
	display: flex;
	margin-bottom:0px;
}
.post-content h2 strong{
	font-weight: 500 !important;
}
.post-content h3{
	font-size:18px !important;
	font-weight: 500 !important;
}
.post-content p{
	font-size:16px !important;
}
.post-content {
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif!important;
	counter-reset: h2;
}
.post-content h2 {
	counter-reset: h3;
}
.post-content h2::before {
	counter-increment: h2;
	content: counter(h2) " ";
	font-weight: 500;
	font-size: 3rem;
	color: #25645d;
	padding: 0px 10px 0px 0px;
	float: left;
	margin-top: -7px;
}
.post-content h3::before {
	counter-increment: h3;
	content: counter(h2) "." counter(h3) " ";
	font-weight: 600;
}
#main-toc {
	counter-reset: item;
	margin-bottom: 1rem;
}
#main-toc > div {
	counter-increment: item;
	margin-left: 10px;
}
#main-toc > div a::before {
	content: counter(item) ". ";
	font-weight: 600;
	color: inherit;
}
/* CSS */
#main-toc {
	background: #f9fafb;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	font-family: "Roboto", sans-serif;
}
#main-toc strong {
	display: block;
	font-size: 16px;
	color: #222;
	margin-bottom: 10px;
	position: relative;
	padding-left: 28px;
}
#main-toc strong::before {
	content: "📖";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 16px;
}
#main-toc {
	counter-reset: item;
}
#main-toc > div {
	counter-increment: item;
	margin: 6px 0;
	padding-left: 8px;
	position: relative;
}
#main-toc > div a::before {
	content: counter(item) ". ";
	font-weight: 600;
	color: #555;
}
#main-toc a {
	color: #0069d9;
	text-decoration: none;
	transition: all 0.2s ease;
}
#main-toc a:hover {
	color: #0056b3;
	text-decoration: underline;
}
#main-toc > div:hover {
	background-color: #eef6ff;
	border-radius: 6px;
}
@media (max-width: 576px) {
	.post-content p{
		text-align:justify;
	}
	.post-content h2{
		font-size:1.3rem !important;
		display: flex;
		margin-bottom:0px;
	}
	.post-content h2::before {
		font-size: 4rem;
		margin-top: -10px;
	}
	#main-toc strong {
		font-size: 16px;
	}
	#main-toc a {
		font-size: 14px;
	}
}