/*********************************************
** Blog 
*********************************************/

#blog {
	padding: 0;
	float: left;
	width: 100%;
}

/* Bloco Inicial */

.blocoInicial {
	float: left;
	width: 100%;
}

/* Listagem */

#blog .listagemDePosts {
	float: left;
	margin: 70px 0;
	width: 100%;
}

#blog .lista_noticias {
	padding: 0;
	margin: 0 0 60px 0;
	float: left;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
}

#blog .listagemDePosts .semResultados {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 18px;
}

/* Descrição da Categoria */

.descricaoCategoria {
	float: left;
	width: 100%;
	margin-bottom: 50px;
}

.descricaoCategoria h2 {
	font-size: 20px;
	margin: 20px 0;
	color: #0F6B49;
	font-weight: bold;
}

.descricaoCategoria h3 {
	font-size: 18px;
	margin: 20px 0;
	color: #0F6B49;
	font-weight: bold;
}

.descricaoCategoria h4 {
	font-size: 16px;
	margin: 20px 0;
	color: #0F6B49;
	font-weight: bold;
}

/* Author */

.bannerAutor {
	float: left;
	width: 100%;
	background-color: #EAECF0;
}

.bannerAutor .container {
	display: flex;
	align-items: center;
}

.bannerAutor h1 {
	float: left;
    width: 100%;
    color: #000;
    margin: 0;
    font-weight: 700;
}

.bannerAutor .profissao {
	float: left;
    width: 100%;
    color: #808080;
    margin: 5px 0 20px 0;
}

.bannerAutor p {
	float: left;
    width: 100%;
    color: #808080;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
	margin: 0;
}

.bannerAutor figure {
	text-align: center;
}

/* Colunistas */

.nossosColunistas {
	float: left;
	width: 100%;
	background: url('../../../uploads/2024/07/bg-colunistas.jpg') top center no-repeat;
    background-size: cover;
	padding: 70px 0 0 0;
}

/* Newsletter */

.boxNewsletter {
	padding: 100px 0;
}

@media (max-width: 768px) {

	#blog .lista_noticias {
		grid-template-columns: repeat(2, 1fr);
    	gap: 50px 30px;
	}

	/* Author */

	.bannerAutor {
		padding: 40px 0 0 0;
	}
	
	.bannerAutor .container {
		flex-direction: column;
	}

	.bannerAutor h1 {
		text-align: center;
	}

	.bannerAutor .profissao {
		text-align: center;
	}

	.bannerAutor p {
		text-align: center;
		font-size: 18px;
    	line-height: 30px;
	}

	.bannerAutor figure {
		margin-top: 20px;
	}

}

@media (max-width: 500px) {

	#blog .lista_noticias {
		grid-template-columns: repeat(1, 1fr);
    	gap: 50px 30px;
	}
	
}