:root {
	--main-text-color: #333;
}

section.Seccion {
	align-items: center;
	display: flex;
	flex-flow: row nowrap;
	gap: 5vw;
	padding: 0px 5vw;
	height: auto;
	width: calc(100% - 10vw);
}

div.Seccion {
	text-align: justify;
	width: 100%;
}
div.Seccion h1 {
	/* color: #102e63; */
	font-family: Gill;
	font-size: 3.0em;
	text-align: center;
	margin-bottom: 12px;
}
div.Seccion p {
	line-height: 1.6em;
}
		
		
section.Noticia {
	color: var(--main-text-color);
	display: flex;
	flex-flow: row wrap;
	margin: 20px auto 20px auto;
	padding: 0px 5vw;
	width: calc(100% - 10vw);
	max-width: calc(1100px - 10vw);
}

section.Noticia h1 {
	font-family: 'Gill';
	font-size: 2.6rem;
	line-height: 2.6rem;
	text-align: center;
	width: 100%;
}
		
div.DivNoticia {
	width: 100%;
}

div.DivNoticia h1 {
	font-family: 'Gill';
	text-align: center;
	margin: 20px 0px;
	width: 100%;
}

div.DivNoticia h2 {
	font-family: 'RobotoCondensed';
	text-align: left;
	margin: 10px 0px;
	width: 100%;
}

div.DivNoticia h3 {
	text-align: justify;
	/* word-wrap: break-word; */
	/* overflow-wrap: break-word; */
	line-height: 1.4rem;
	margin: 12px 0px 0px 0px;
	width: 100%;
}

div.DivNoticia figure {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
	float: right;
	margin: 0px 0px 6px 20px;
	padding: 0px;
	width: 50%;
	max-width: 500px;
}
div.DivNoticia figure.derecha {
	float: right;
	margin: 12px 0px 6px 20px;
}
div.DivNoticia figure.izquierda {
	float: left;
	margin: 12px 20px 6px 0px;
}

div.DivNoticia figure img {
	width: 100%;
}
div.DivNoticia figure figcaption {
	font-size: 0.8rem;
	margin-top: 4px;
}

div.DivNoticia video {
	float: right;
	margin: 0px 0px 6px 20px;
	padding: 0px;
	width: 50%;
	max-width: 500px;
}


div.DivNoticia p {
	/* color: #737373; */
	color: var(--main-text-color);
	text-align: justify;
	/* word-wrap: break-word; */
	/* overflow-wrap: break-word; */
	line-height: 1.4rem;
	margin: 12px 0px 0px 0px;
	width: 100%;
}

div.DivNoticia sup {
	line-height: 0px;
	
}

div.DivNoticia ul {
	margin: 12px 0px 0px 0px;
	padding-inline-start: 30px;
}

div.DivNoticia li {
	color: var(--main-text-color);
	text-align: justify;
	/* word-wrap: break-word; */
	/* overflow-wrap: break-word; */
	line-height: 1.4rem;
	margin: 6px 0px 0px 0px;
	width: 100%;
}

div.DivNoticia span.Fecha {
	color: var(--main-text-color);
	text-align: left;
	font-size: 0.8rem;
	width: 100%;
}


div.DivNoticia a {
	align-self: flex-end;
	background-color: var(--main-back-azul);
	border-radius: 6px;
	border: 0px;
	/* box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.6); */
	color: white;
	cursor: pointer;
	font-size: 1.2rem;
	text-align: center;
	text-decoration: none;
	margin: 20px 0px 10px 0px;
	padding: 12px 24px;
	width: 200px;
}
		
		
		
section.Botones {
	display: flex;
	flex-flow: row nowrap;
	gap: 10px;
	justify-content: space-evenly;
	margin: 0px auto;
	padding: 0px 5vw 20px 5vw;
	max-width: 960px;
}

a.Boton, a.Boton: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;
	flex-grow: 1;
	font-size: 1.2rem;
	text-align: center;
	text-decoration: none;
	transition:
		background-color 1s,
		color 0.5s;
	margin: 10px 0px;
	padding: 15px 0px;
	max-width: 178px;
}
a.Boton:hover {
	background-color: var(--main-back-grisclaro);
	color: var(--main-text-azul);
}
		
		
		
		
@media only screen and (max-width: 700px) {
	div.DivNoticia figure {
		float: none;
		margin: 0px auto 0px auto;
		padding: 0px;
		width: 100%;
	}
	
	div.DivNoticia figure.derecha, div.DivNoticia figure.izquierda {
		float: none;
		margin: 12px auto 0px auto;
	}
	
	div.DivNoticia video {
		float: none;
		justify-self: center;
		margin: 0px 0px 0px calc((100% - 500px) /2);
		padding: 0px;
		width: 100%;
	}
	
	a.Boton {
		padding: 10px 0px;
		max-width: 150px;
	}
}




@media only screen and (max-width: 600px) {
	div.DivNoticia video {
		margin: 0px 0px 0px 0px;
	}
	a.Boton {
		font-size: 1.0rem;
	}
}