/** paginacao */
.modblog_posts_paging{
	float:left;
	width:100%;
	text-align: center;
}

.modblog_posts_paging .png_links a:nth-child(1),
.modblog_posts_paging .png_links a:nth-last-child(1){
	display:none;
}

.modblog_posts_paging .png_links a{
	margin: 5px;
	font-size: 12px;
	padding: 3px 10px 4px 10px;
	background: var(--cor-principal);
	color: white;
	border: 0px;
	border-radius: 3px;
}

.modblog_posts_paging .png_links a.paging_lnk_inactive:nth-child(1),
.modblog_posts_paging .png_links a.paging_lnk_inactive:nth-child(2),
.modblog_posts_paging .png_links a.paging_lnk_inactive:nth-last-child(1),
.modblog_posts_paging .png_links a.paging_lnk_inactive:nth-last-child(2){
	background-color: #424242;
	color:white;
}

.modblog_load_posts{
	border: 0px;
}

.modblog_post{
	display: flex;
	flex-direction: column;
	border: 0px;
	padding: 0;
	margin-bottom: 40px;
}

.modblog_post .modblog_post_imagem{
	order: 1;
}
.modblog_post .modblog_post_titulo{
	order: 2;
	
	float:left;
	text-align: left;
	color: var(--cor-principal);
	padding: 0 20px;
	padding-top: 40px;
	margin-top: -8px;	
	
	border: 1px solid #e4e4e4;
	border-bottom: 0px;
	background: #f8f8f8;
	
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	
	padding-right: 20px;
}
.modblog_post .modblog_post_subtitulo{
	order: 3;
	
	border: 1px solid #e4e4e4;
	border-top: 0;
	border-bottom: 0;
	background: #f8f8f8;
	padding-left: 20px;
	color: #393939;
	font-weight: 300;
	
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	
	padding-bottom: 0;
	padding-right: 20px;
}
.modblog_post .modblog_post_conteudo{
	order: 4;
	
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	padding: 0;
	height: 95px;
	
	border: 1px solid #e4e4e4;
	border-top: 0;
	border-bottom: 0;
	background: #f8f8f8;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
}
.modblog_post .modblog_post_leiamais{
	order: 5;
	
	border: 1px solid #e4e4e4;
	border-top: 0;
	background: #f8f8f8;
	padding: 20px;
}

.modblog_post .modblog_post_leiamais a{
	background: var(--cor-principal);
	color: white;
	border-radius: 0px;
	text-transform: capitalize;
	font-size: 15px;
}
.modblog_post .modblog_post_leiamais a:after{
	content: '\f105';
	font: var(--fa-font-solid);
	margin-left: 10px;
	font-size: 12px;
	transition: all .3s;
}

.modblog_post .modblog_post_leiamais a:hover:after{
	margin-left: 15px;
}

/** post */
.modblog_detail_post{
	display: flex;
	flex-direction: column;
	padding: 0;
	border: 0px;
}

.modblog_detail_post a{
	color: var(--cor-principal);
}

.modblog_detail_post .modblog_post_imagem{
	order: 1;
}
.modblog_detail_post .modblog_post_titulo{
	order: 2;
	text-align: left;
	border: 1px solid #e4e4e4;
	border-bottom: 0px;
	background: #f8f8f8;
	padding-left: 20px;
	padding-right: 20px;
	color: var(--cor-principal);
}
.modblog_detail_post .modblog_post_subtitulo{
	order: 3;
	
	border: 1px solid #e4e4e4;
	border-top: 0px;
	border-bottom: 0px;
	background: #f8f8f8;
	padding-left: 20px;
	padding-right: 20px;
}
.modblog_detail_post .modblog_post_conteudo{
	order: 4;
	
	border: 1px solid #e4e4e4;
	border-top: 0px;
	background: #f8f8f8;
	padding-left: 20px;
	padding-right: 20px;
}
.modblog_detail_post .modblog_post_info{
	order: 5;	
}
.modblog_detail_post .modblog_post_info .modblog_post_info_categorias{
	width: auto;
}
.modblog_detail_post .modblog_post_perfil{
	order: 6;
}
.modblog_detail_post .modblog_ver_todos{
	order: 7;
}
.modblog_ver_todos a{
	background: var(--cor-principal);
	border-radius: 0px;
	color: white;
}
/** categorias */
.modblog_load_categorias{
	min-height: 0px;
	border: 1px solid #e4e4e4;
}

.modblog_load_categorias .modblog_categoria_titulo{
	background: #f8f8f8;
	margin: 0;
	padding: 20px;	
	position: relative;
	text-align: left;
}
.modblog_load_categorias .modblog_categoria_titulo:before{
	content: '';
	position: absolute;
	bottom: 10px;
	left: 20px;
	width: 30px;
	height: 4px;
	background: var(--cor-principal);
}

.modblog_load_categorias .modblog_categoria_lista a{
	width: calc(100% - 40px);
	padding: 10px 0;
	margin: 0 20px;
	text-decoration: none;
	color: var(--cor-principal);
	border-bottom: 1px solid #e4e4e4;
	text-transform: capitalize;
}
.modblog_load_categorias .modblog_categoria_lista a:last-child{
	border-bottom: 0px;
}

/** blog home lista */
.modules_wrapper.page-home .modblog_load_posts .modblog_post{
	display:none;
}
.modules_wrapper.page-home .modblog_load_posts .modblog_post:nth-child(1),
.modules_wrapper.page-home .modblog_load_posts .modblog_post:nth-child(2),
.modules_wrapper.page-home .modblog_load_posts .modblog_post:nth-child(3){
	display:flex;
}


.modules_wrapper.page-home .modblog_post .modblog_post_imagem{
	overflow:hidden;
	height: 170px;
}
.modules_wrapper.page-home .modblog_post .modblog_post_imagem img{
	width: 100%;
	height: 170px;
	object-fit: cover;
}

.modules_wrapper.page-home .modblog_load_categorias,
.modules_wrapper.page-home .modblog_post .modblog_post_subtitulo{
	display:none;
}
.modules_wrapper.page-home .modblog_post{
	float:left;
	width: calc(33% - 40px);
	margin: 20px;
}
.modules_wrapper.page-home .modblog_posts_paging{
	display: none;
}
.modules_wrapper.page-home .modblog_load_posts .modblog_ver_todos.nofilter{
	display: inline-block;
	width: 100%;
	text-align: center;
}
.modules_wrapper.page-home .modblog_load_posts .modblog_ver_todos.nofilter a{
	display: inline-block;
	float:none;
}