.article-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 20px;
	width: 100%;
}

.article-item h2 a:hover{
	color: #597e44;
}


.article-item img {
	width: 150px;
	height: auto;
	display: block;
}

.article-item:nth-child(2) h2 {
	font-family: 'Manrope';
	font-weight: 600;
	font-size: 22px;
	line-height: 30px;
}

.article-item:nth-child(2) p {
	font-family: 'Manrope';
	font-weight: 200;
	font-size: 18px;
	line-height: 30px;
}

.article-post {
	padding: 30px;
}

.article-post p, li {
	font-family: 'Manrope';
	font-weight: 200;
}

.article-post h1, h2, h3, h4, strong {
	font-family: 'Manrope';
	font-weight: 600;
}

.article-post p {
	font-size: 19px;
	text-indent: 50px;
	line-height: 35px;
}

.article-post li {
	font-size: 17px;
	list-style: circle;
}

.article-post p, h2, h3, h4, h5, h6, img {
	margin-bottom: 30px;
}

.article-post li {
	margin: 0 50px 30px;
}

.article-post a {
	font-family: inherit;
	font-weight: 600;
}

.article-post a:hover {
	color: #384431;
	text-decoration: underline;
}

@media (max-width: 640px) {
	
	.article-wrapper {
		flex-direction: column;
		flex-wrap: wrap;
		gap: 0;
	}
	
	.article-item img {
		width: 100%;
		height: auto;
	}
	
	.article-item:nth-child(2) {
		padding: 10px 30px 30px;
	}
}