
.blog_section {
	width: 60%;
	height: fit-content;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
	margin-bottom: 60px;
	background: linear-gradient(180deg, #292929, #242424);
	color: #fff;
	border-radius: 12px;
}

.blog_section_content {
	padding: 25px;
	overflow: hidden;
}

.blog_section_title {
	margin: 0;
	margin-bottom: 40px;
	font-size: 60px;
	font-weight: 600;
}

.blog_article {
	width: auto;
	margin-bottom: 25px;
	background-color: #2B2B2B;
	height: 300px;
	overflow: hidden;
	border-radius: 20px;
	transition: background-color 0.2s;
}

.last {
	margin-bottom: 0;
}

.blog_article:hover {
	background-color: #303030;
	transition: background-color 0.2s;
}

.blog_article_content {
	font-family: roboto;
	padding: 20px;
}

.blog_article_img {
	width: 300px;
	height: 100%;
	margin-right: 25px;
	display: inline-block;
	background-position: center;
	float: left;
}

.blog_article_title {
	margin: 0;
	margin-top: 14px;
	color: #fff;
	font-weight: 500;
}

.blog_article_date {
	color: #ABABAB;
}

.blog_article_stext {
	width: 96%;
	color: #ABABAB;
	font-size: 18px;
}



