
section.Actualidad, section.Noticias {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 0px auto 0px auto;
	padding: 0px 0px 40px 0px;
	width: 100%;
}

section article {
	align-items: center;
	box-shadow: 6px 6px 6px 5px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	margin: 0px 10px 20px 10px;
	padding: 1vw 1vw 2vw 1vw;
	
}
section.Actualidad article {
	width: 450px;
}
section.Noticias article {
	width: 350px;
}


section article img {
	margin-bottom: 6px;
	width: 100%;
	max-width: 500px;
}

section article h2 {
	color: var(--main-text-negro);
	font-family: 'RobotoCondensed';
	text-align: left;
	margin: 0px;
	width: 100%;
}
section.Actualidad article h2 {
	text-transform: uppercase;
}

section article p {
	color: var(--main-text-gris);
	text-align: left;
	line-height: 1.4em;
	margin: 12px 0px 0px 0px;
}

section article a, section article a:visited {
	background-color: var(--main-back-azul);
	border: 1px solid var(--main-back-azul);
	border-radius: 6px;
	/*box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.6);*/
	color: white;
	cursor: pointer;
	font-size: 1.2em;
	text-align: center;
	text-decoration: none;
	transition:
		background-color 1s,
		color 0.5s,
		transform 0.5s;
	margin: 20px 0px 10px 0px;
	padding: 12px 24px;
	width: 198px;
}
section article a:hover {
	background-color: var(--main-back-grisclaro);
	color: var(--main-text-azul);
	transform: scale(1.1, 1.1);
}





@media only screen and (max-width: 1000px) {
	section.Actualidad article {
		width: 400px;
	}
	section.Noticias article {
		width: 300px;
	}
	
}

@media only screen and (max-width: 900px) {
	section.Actualidad article {
		width: 450px;
	}
	section.Noticias article {
		width: 450px;
	}
	
}

@media only screen and (max-width: 600px) {
	
	article {
		width: calc(100% - 2vw);
	}
}
