body {
    overflow: unset;
}
 .post-details {
	/* Main layout */
	/* Article section */
	/* Sidebar */
	/* Additional news items */
	/* Responsive */
	padding: 3rem 0px;
}
 .post-details .breadcrumb {
	 background: white;
	 padding: 15px 20px;
	 border-radius: 8px;
	 margin-bottom: 20px;
	 font-size: 14px;
	 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
 .post-details .breadcrumb a {
	 color: #208549;
	 text-decoration: none;
}
 .post-details .breadcrumb a:hover {
	 text-decoration: underline;
}
 .post-details .breadcrumb span {
	 margin: 0 8px;
	 color: #666;
}
 .post-details .main-content {
	 display: grid;
	 grid-template-columns: 2fr 1fr;
	 gap: 30px;
	 align-items: start;
}
 .post-details .article {
	 background: white;
	 border-radius: 12px;
	 padding: 30px;
	 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
 .post-details .article h1 {
	 font-size: 28px;
	 color: #2c3e50;
	 margin-bottom: 25px;
	 line-height: 1.3;
}
 .post-details .table-of-contents {
	 background: #f8f9fa;
	 border: 1px solid #e9ecef;
	 border-radius: 8px;
	 padding: 20px;
	 margin-bottom: 25px;
}
 .post-details .table-of-contents h3 {
	 display: flex;
	 align-items: center;
	 font-size: 16px;
	 color: #495057;
	 margin-bottom: 15px;
	 cursor: pointer;
}
 .post-details .table-of-contents h3::before {
	 content: "📋";
	 margin-right: 8px;
}
 .post-details .toc-list {
	 list-style: none;
}
 .post-details .toc-list li {
	 padding: 8px 0;
	 border-bottom: 1px solid #e9ecef;
}
 .post-details .toc-list li:last-child {
	 border-bottom: none;
}
 .post-details .toc-list a {
	 color: #208549;
	 text-decoration: none;
	 font-size: 14px;
}
 .post-details .toc-list a:hover {
	 text-decoration: underline;
}
 .post-details .article-content {
	 font-size: 16px;
	 line-height: 1.7;
	 color: #444;
}
 .post-details .article-content p {
	 margin-bottom: 7px;
}
 .post-details .sidebar {
	 display: flex;
	 flex-direction: column;
	 gap: 20px;
	 position: sticky;
	 top: 87px;
}
 .post-details .sidebar-section h2 {
	 color: #333;
	 font-size: 20px;
	 margin-bottom: 20px;
	 padding-bottom: 10px;
	 border-bottom: 2px solid #007a48;
	 text-transform: uppercase;
}
 .post-details .news-grid {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 15px;
	 margin-bottom: 20px;
}
 .post-details .news-card {
	 background: white;
	 border-radius: 12px;
	 overflow: hidden;
	 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
	 cursor: pointer;
	 position: relative;
}
 .post-details .news-card:hover {
	 transform: translateY(-5px);
	 box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
 .post-details .news-card img {
	 width: 100%;
	 height: 120px;
	 object-fit: cover;
}
 .post-details .news-card-content {
	 padding: 15px;
}
 .post-details .news-card h3 {
	 font-size: 14px;
	 font-weight: 600;
	 color: #2c3e50;
	 line-height: 1.4;
	 margin-bottom: 8px;
}
 .post-details .news-card p {
	 font-size: 12px;
	 color: #666;
	 line-height: 1.3;
}
 .post-details .green-badge {
	 position: absolute;
	 top: 8px;
	 left: 8px;
	 background: #28a745;
	 color: white;
	 padding: 4px 8px;
	 border-radius: 4px;
	 font-size: 10px;
	 font-weight: bold;
}
 .post-details .red-badge {
	 position: absolute;
	 top: 8px;
	 left: 8px;
	 background: #dc3545;
	 color: white;
	 padding: 4px 8px;
	 border-radius: 4px;
	 font-size: 10px;
	 font-weight: bold;
}
 .post-details .additional-news {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 15px;
}
.post-details .toc-item.h3 {
    padding-left: 20px;
    font-size: 13px;
    color: #666;
}
.post-details .toc-item.h3 a {
    font-size: 13px;
    color: #555;
}
.post-details .toc-item {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}
.post-details .article h2 {
    padding-bottom: 10px;
}

.post-details .article p {
    padding-bottom: 10px;
}
.post-details .article-content h2 {
    color: #2c3e50;
    font-size: 20px;
    margin: 25px 0 15px 0;
    padding-bottom: 8px;
}
.post-details .article-content h3 {
    font-size: 16px;
  
    font-weight: 600;
}
.article-content table {
    margin-bottom: 10px;
}

 @media (max-width: 768px) {
	 .post-details .main-content {
		 grid-template-columns: 1fr;
		 gap: 20px;
	}
	 .post-details .news-grid, .post-details .additional-news {
		 grid-template-columns: 1fr;
	}
	 .post-details .article {
		 padding: 20px;
	}
	 .post-details .article h1 {
		 font-size: 24px;
	}
}
 