
#noticias {
	padding: 0;
	margin: 0;
}

#noticias a {
	color: red;
	text-decoration: none;
}

.container {
	width: 99%;
	margin: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#noticias .global {
	width: 97%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#noticias article {
	width: 100%;
	margin: .3em;
	height: auto;

	/* border-top: 1px solid #ebdad5; */
	
}

#noticias article img {
	margin: auto;
	margin-left: 0;
	width: 100%;
}

#noticias article a:hover img {
	/*-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	filter: blur(2px);*/

	-webkit-filter: brightness(70%);
	-moz-filter: brightness(70%);
	filter: brightness(70%);
}

#noticias article p { 
	font-size: 1em;
	margin: 0;
	padding: .5;
	padding-top: 0;
	text-align: justify;
	font-family: 'Noto Sans SC', sans-serif;
	color: #000;

	/* border: 2px solid #631e0a; */
}

#noticias article p a {
	font-size: 1.2em;
	color: #492e20;
	font-family: 'Tinos', serif;
}

#noticias article p a:hover {
	color: orange;
	cursor: pointer;
}

#noticias .lateral {
	display: none;
}

/*BANNERS A ESCONDER*/
#noticias #pic_hide {
	width: 100%;
	margin: .3em;
	height: auto;

	background: rgba(255, 255, 255, .0);	
}

#noticias #pic_hide img {
	margin: auto;
	margin-left: 0;
	width: 100%;
}

#noticias #pic_hide a:hover img{
	-webkit-filter: brightness(70%);
	-moz-filter: brightness(70%);
	filter: brightness(70%);
}
/*BANNERS A ESCONDER*/

/* Media Querys MEDIANO ========================================================*/
@media screen and (min-width: 768px) {

	#noticias #pic_hide {
		display: none;
	}

	.container {
		width: 100%;
		margin: auto;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	
	#noticias {
		margin-top: 0;
		margin-bottom: 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}

	#noticias .global {
		width: 75%;
	}

	#noticias article {
		width: 100%;
		height: auto;
		margin: 0;
	}

	#noticias article img {
		width: 100%;
	}

	#noticias .lateral {
		display: block;
		width: 25%;
		height: auto;
		margin: 0;
		padding: 0;
	}

	#noticias .lateral img {
		margin: 0;
		margin-bottom: .2em;
		width: 100%;
		/*border: 1px solid #064C92;*/
	}

	#noticias .lateral img:hover {
		-webkit-filter: brightness(70%);
		-moz-filter: brightness(70%);
		filter: brightness(70%);
		cursor: pointer;
	}

}

/* Media Querys COMPLETO ========================================================*/
@media (min-width: 1120px) {

	#noticias .global {
		width: 78%;
		margin-right: .5em;
	}

	#noticias .lateral {
		width: 21%;
	}

	#noticias article {
		width: 100%;
		height: auto;
		margin: 0;
		/* margin-left: .5em; */
		/* outline: 2px solid #44DAE1; */
	}

	#noticias article img {
		margin: 0;
		padding: 0;
		width: 48%;
	}

	#noticias article p {
		width: 50%;
		float: right;
		padding-top: .7em;
		padding-right: .5em;
		padding-left: .5em;
		margin: 0;
		font-family: 'Noto Sans SC', sans-serif;
	}

	#noticias article p a {
		font-size: 1.2em;
	}

	#noticias article p a:hover {
		color: orange;
	}

}