.article-content {
	line-height: 1.8;
	color: #374151;
	font-size: 16px;
}

.article-content a {
	color: #307D48;
	text-decoration: none;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.article-content a:hover {
	color: #2d6a4f;
	border-bottom-color: #307D48;
}

.article-content h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #33864b;
  margin: 20px 0 10px 0;
  padding-left: 12px;
  border-left: 4px solid #33864b;
}

.article-content h3 {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.6;
	position: relative;
}

.article-content hr {
	margin: 3rem 0;
	border: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.article-content ul {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.article-content ul li {
	margin-bottom: 0.8rem;
	padding-left: 1.3rem;
	list-style-type: none;
	position: relative;
}

.article-content ul li::before {
	content: '\2022';
	position: absolute;
	left: 0;
	top: -9px;
	color: #28683c;
	font-weight: bold;
	font-size: 1.5rem;
}

.article-content ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.article-content ol li {
	margin-bottom: 0.8rem;
	padding-left: 1.8rem;
	list-style-type: none;
	position: relative;
	color: #4b5563;
}

.article-content ol li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: -4px;
	color: #307D48;
	font-weight: bold;
	font-size: 1.2rem;
}

.article-content table {
	width: 100%;
	margin: 2rem auto;
	height: auto;
	overflow-x: auto;
	border-collapse: collapse;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.article-content th {
  background-color: #edffe1;
	color: #33864b;
	border: 1px solid #cacfc5;
	padding: 0.6rem;
	text-align: left;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
}

.article-content td {
	border: 1px solid #cacfc5;
	background-color: #fff;
	padding: 0.6rem;
	text-align: left;
	transition: all 0.3s ease;
}

.article-content tr:hover td {
	background-color: #fafff7;
}

.article-content td p,
.article-content th p {
	text-indent: 0;
	margin: 0;
}

.article-content p {
	margin-bottom: 1.25rem;
	color: #4b5563;
	line-height: 1.8;
}

.article-content p strong {
	color: #2d3748;
	font-weight: 700;
}

.article-content img:not(.grid img) {
	width: 100%;
	max-width: 980px;
	margin: 2rem auto;
	max-height: 750px;
	height: auto;
	display: block;
	box-shadow: 
	0 4px 4px rgba(0,0,0,0.15),
	0 6px 10px rgba(0,0,0,0.1);
	border-radius: 12px 12px 0 0;
	transition: all 0.3s ease;
}

@media (max-width: 768px) {
	.article-content h2 {
		font-size: 1.75rem;
	}
	
	.article-content h3 {
		font-size: 1.35rem;
	}
	
	.article-content ul li,
	.article-content ol li {
		padding-left: 1.5rem;
	}
	
	.article-content table {
		font-size: 0.875rem;
	}
	
	.article-content th,
	.article-content td {
		padding: 0.75rem;
	}
}
