.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: 2rem;
	font-weight: 800;
	margin: 1.5rem 0;
	position: relative;
	display: inline-block;
	padding-bottom: 4px;
	padding-bottom: 1rem;
}

.article-content h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, #329c7a 0px, #329c7a 100px, #f0f0f0 100px, #f0f0f0 100%);
	border-radius: 1px;
}

.article-content h3 {
	font-size: 1.5rem;
	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.8rem;
	list-style-type: none;
	position: relative;
}

.article-content ul li::before {
	content: '¤';
	position: absolute;
	left: 0;
	top: -4px;
	color: #307D48;
	font-weight: bold;
	font-size: 1.2rem;
}

.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);
	border-radius: 8px;
	overflow: hidden;
}

.article-content th {
	background: linear-gradient(135deg, #399755, #40a65f);
	border: none;
	padding: 1rem 1.25rem;
	text-align: left;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	color: #e6fbec;
}

.article-content th:first-child {
	border-radius: 8px 0 0 0;
}

.article-content th:last-child {
	border-radius: 0 8px 0 0;
}

.article-content td {
	border: 1px solid #e2e8f0;
	background-color: #fff;
	padding: 1rem 1.25rem;
	text-align: left;
	transition: all 0.3s ease;
}

.article-content tr:hover td {
	background-color: #f8fafc;
}

.article-content tr:nth-child(even) td {
	background-color: #f1f5f9;
}

.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;
}

@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;
	}
}

.article-content2 img {
	width: 100%;
	max-width: 980px;
	margin: 2rem auto;
	height: 200px;
	object-fit: cover;
	display: block;
	box-shadow: 
	0 10px 25px -5px rgba(0, 0, 0, 0.1),
	0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border-radius: 12px 12px 0 0;
	transition: all 0.3s ease;
}

.article-content2 img:hover {
	transform: translateY(-5px);
	box-shadow: 
	0 20px 25px -5px rgba(0, 0, 0, 0.1),
	0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
