#blog_articles_list {
}
#blog_articles_list_container {
}
#blog_articles_list_content {
	flex-direction: column;
}
#blog_articles_list_title  h1{
	font-size: 1.5em;
	font-weight: 500;
	text-align: center;
}
#blog_articles_content_list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	/*border: solid 2px red;*/
}
.blog_articles_article_panel {
	margin: 20px 0 20px 10px;
	display: flex;
	flex-direction: column;
	border-radius: 4px;
	/*border: solid 2px blue;*/
}
.blog_articles_article_panel a {
	text-decoration: none;
}
.blog_articles_article_panel a:hover {
	border-radius: 12px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	transition: all .3s;
}
.blog_articles_article_img {
	display: flex;
	justify-content: center;
	/*border: solid 1px red;*/
}
.blog_articles_article_img img {
	height: 100%;
	width: 100%;
	border-radius: 12px;
	/*border: solid 1px red;*/
}
.blog_articles_article_img img:hover {
	border-radius: 12px 12px 0 0;
}
.blog_article_texts_content {
	padding: 0 10px;
	/*border: solid 1px black;*/
}
.blog_article_title {
	padding: 10px 5px 5px 5px;
	min-height: 120px;
	font-size: 0.8em;
	color: var(--our-grey-color);
	border-bottom: solid 1px var(--primary-color);
	/*border: solid 1px red;*/
}
.blog_article_category_title {
	/*padding: 5px 10px;*/
	margin-bottom: 20px;
	color:  var(--primary-color);
	font-size: 0.8em;
	/*border: solid 1px red;*/
}
.blog_article_texts_content_p {
	display: none;
	/*display: -webkit-box;*/
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color:  var(--our-grey-color);
	/*border: solid 1px blue;*/
}
.blog_article_extra_data_content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.blog_article_author {
	color: var(--our-grey-color);
	font-size: 0.8em;
	text-align: left;
	margin-bottom: 0;
	/*border: solid 1px red;*/
}
.blog_article_date {
	color: var(--our-grey-color);
	font-size: 0.8em;
	text-align: left;
	margin-bottom: 0;
	/*border: solid 1px red;*/
}
@media all and (min-width: 600px) {
	.blog_articles_article_panel {
		width: 45%;
		margin: 10px 10px 10px 10px;
	}
}
@media all and (min-width: 900px) {
	.blog_articles_article_panel {
		width: 46%;
	}
}
@media all and (min-width: 1200px) {
	.blog_articles_article_panel {
		width: 25%;
		margin: 20px 20px 20px 20px;
	}
	.blog_article_texts_content_p {
		width: 95%;
	}
}
@media all and (min-width: 1400px) {
	.blog_article_texts_content_p {
		width: 100%;
	}
}
@media all and (min-width: 1600px) {
	.blog_articles_article_panel {
		width: 22%;
		margin: 18px 18px 40px 18px;
	}
}