.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;
	margin-left:25px !important;
}
.post-content p{
	font-size:16px !important;
}
.post-content p:has(img) {
    text-align: center;
}
.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;
}
.post-content table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.post-content th,
.post-content td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid #eaeaea;
}
.post-content th {
    background: #f7f7f7;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.post-content tr:nth-child(even) td {
    background: #fafafa;
}
#main-toc {
	counter-reset: item;
	margin-bottom: 1rem;
}
#main-toc > div {
	counter-increment: item;
	margin-left: 10px;
}#main-toc a::before {
	content: attr(data-number) " ";
	font-weight: 600;
	color: #555;
}

/*#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;
	}
}