.more-articles-section {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.more-articles-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.more-articles-card figure {
	margin: 0;
	overflow: hidden;
}

.more-articles-card img {
	display: block;
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: transform 0.5s ease-in-out;
}

.more-articles-card:hover img {
	transform: scale(1.05);
}

.more-articles-card .more-articles-meta {
	display: inline-flex;
	align-items: center;
	padding: 7px 11px;
	margin-top: 12px;
	font-family: "Roboto", sans-serif;
	font-size: 12px;
	font-weight: 500;
	background: #3c8f4e;
	color: #fff;
	text-decoration: none;
	width: fit-content;
}

.more-articles-card .more-articles-title {
	margin-top: 18px;
	font-family: "Roboto", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	color: #000;
	text-decoration: none;
}

.more-articles-card .more-articles-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #3c8f4e;
	text-decoration: none;
	text-transform: capitalize;
}

.more-articles-card .more-articles-link svg {
	transition: transform 0.3s ease-in-out;
}

.more-articles-card .more-articles-link:hover svg {
	transform: translateX(6px);
}

@media (max-width: 767px) {
	.more-articles-card img {
		height: 200px;
	}
}
