
/*----------Seccion Content top----------*/
.section-content-top {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	padding-top: 2px;
}

.destacado-content {
	width: 66%;
	height: 350px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;

	order: 1;
}
.destacado-content a {
	text-decoration: none;
	color: white;
	flex: 0 1 calc(50% - 0px);
}
.destacado-item {
	position: relative;
}
.destacado-img {
	width: 100%;
	height: 350px;
}
.destacado-img figure {
	display: flex;
	align-items: center;
}
.destacado-img img {
	overflow: hidden;
	width: 100%;
	height: 350px;
	object-fit: cover;
}
.destacado-parrafo {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(rgba(128,128,128,.0), rgba(0,0,0,1));
	padding: 50px 5px 10px 5px;
}
.destacado-parrafo .destacado-parrafo-last {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 12px;
}
.destacado-parrafo .destacado-parrafo-last span:first-child {
	border: 2px solid white;
	border-radius: 10px;
	padding: 2px 4px 2px 4px;
	text-transform: uppercase;
	font-size: 12px;
	color: white;
	opacity: .8;
}
.destacado-parrafo .destacado-parrafo-last span:last-child {
	font-size: 12px;
	color: white;
	opacity: .8;
	font-style: italic;
	padding-left: 5px;
}
.destacado-parrafo h2 {
	font-size: 24px;
	letter-spacing: -1px;
	line-height: 25px;
}
.destacado-parrafo-child:hover {
	transform: translateY(-5px);
}

/*===========Publicidad============*/
.publicidad-content {
	width: 32%;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	height: 350px;

	order: 2;
}
.publicidad-content h2 {
	width: 100%;
	height: 40px;
	font-size: 22px;
	padding: 10px 0 0 0;
}
.publicidad-item {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 310px;
}
.publicidad-item .icono {
	position: absolute;
	top: 0;
	right: 0;
	color: black;
	font-size: 20px;
	padding: 4px;
	background: silver;
	cursor: pointer;
	display: none;
}
.publicidad-img {
	width: 100%;
	height: 310px;
}
.publicidad-img img {
	width: 100%;
	height: 310px;
	object-fit: cover;
}

/*===========Radio============*/
.section-content-radio {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-top: 20px;
	padding: 0 10px 0 10px;

	order: 3;
}
.radio-box-inicio {
	position: relative;
	max-width: 320px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px;
	border-radius: 10px;
	background: #ced4da;
	border: 1px solid #808B96;
}
.radio-box-wrap-inicio {
	width: 100%;
	display: flex;
	padding: 2px 5px 10px 5px;
	align-items: center;
}
.radio-box-inicio audio {
	height: 45px;
}

/*----------Seccion Content bottom----------*/
.section-content-bottom {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	padding: 10px 0 20px 0;
}
/*=============Mas Reciente=============*/
.articulo-box {
	width: 66%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.articulo-box h1 {
	width: 100%;
	font-size: 26px;
	opacity: 0.8;
	padding: 10px 0 0 2px;
	border-bottom: 1px solid rgba(255,255,255,0.6);
}
.articulo-box .articulos-item {
	background: white;
	display: flex;
	justify-content: flex-start;
	margin-top: 20px;
	margin-bottom: 5px;
	border-radius: 5px;
	height: 280px;
	overflow: hidden;
}
.articulos-item:hover {
	/* box-shadow: -9px 11px 20px -4px rgba(0,0,0,0.24); */
	border: 1px solid #808B96;
}
.articulos-item .articulos-img {
	width: 45%;
	height: 280px;
	display: flex;
	position: relative;
	border-radius: 5px 0 0 5px;
	overflow: hidden;
}
.articulos-item .articulos-img span {
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 4px 10px 4px 10px;
	background: white;
	color: gray;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}
.articulos-item .articulos-img figure {
	width: 100%;
	height: 100%;
}
.articulos-item .articulos-img a {
	width: 100%;
	height: 100%;
	display: flex;
	overflow: hidden;
}
.articulos-item .articulos-img a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px 0 0 5px;
}
.articulos-item .articulos-img img:hover {
	opacity: .9;
}
.articulos-item .articulos-parrafo {
	width: 55%;
	padding: 10px;
	overflow: hidden;
}
.articulos-item .articulos-parrafo a {
	text-decoration: none;
	color: black;
}
.articulos-item .articulos-parrafo h2 {
	letter-spacing: -1px;
	font-size: 23px;
	transition: color 0.5s linear 0.2s;
}
.articulos-item .articulos-parrafo h2:hover {
	color: red;
}
.articulos-item .articulos-parrafo div {
	margin-top: 5px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.articulos-item .articulos-parrafo div span:first-child {
	border: 2px solid gray;
	border-radius: 10px;
	padding: 2px 4px 2px 4px;
	text-transform: uppercase;
	font-size: 12px;
	opacity: .8;
}
.articulos-item .articulos-parrafo div span:last-child {
	font-size: 12px;
	opacity: .8;
	font-style: italic;
	padding-left: 5px;
}
.articulos-item .articulos-parrafo p {
	padding-top: 10px;
	font-size: 16px;
	opacity: 0.7;
	line-height: 20px;
}

/*==============Lo mas vistos=================*/
.visto-relacionado-box {
	width: 32%;
}
.visto-relacionado-box h2 {
	width: 100%;
	font-size: 20px;
	opacity: 0.8;
	padding: 18px 0 0 2px;
	border-bottom: 1px solid rgba(255,255,255,0.6);
}
.visto-relacionado-item {
	display: flex;
	overflow: hidden;
	justify-content: flex-start;
	width: 100%;
	height: 150px;
	border-top: 4px solid #D35400;
	background: white;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 5px;
}
.visto-relacionado-item:hover {
	border: 1px solid #808B96;
}
.visto-relacionado-img {
	overflow: hidden;
	width: 40%;
	height: 150px;
	position: relative;
}
.visto-relacionado-img figure {
	height: 150px;
}
.visto-relacionado-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.visto-relacionado-img a:hover {
	opacity: .9;
}
.visto-relacionado-parrafo {
	width: 60%;
	padding: 5px;
	position: relative;
}
.visto-relacionado-parrafo a {
	text-decoration: none;
	color: black;
}
.visto-relacionado-parrafo h2:hover {
	color: red;
}
.visto-relacionado-parrafo h3 {
	font-size: 16px;
	width: 100%;
	opacity: .8;
	letter-spacing: -1px;
	line-height: 21px;
	padding: 0 0 5px 0;
}
.visto-relacionado-categoria {
	border: 2px solid gray;
	border-radius: 10px;
	padding: 2px 4px 2px 4px;
	text-transform: uppercase;
	font-size: 12px;
	opacity: .8;
}
.visto-relacionado-fecha {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.6;
	font-size: 12px;
	padding: 5px;
}

/*----------MOSTRAR TODOS DE LA PAGINA----------*/

.mostrarTodos {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 20px;
}

.mostrarTodos a {
	width: 40%;
	text-align: center;
	border-radius: 10px;
	background-color: #5D6D7E;
	padding: 20px;
	color: white;
	text-decoration: none;
	font-size: 20px;
}
.mostrarTodos a:hover {
	font-weight: bold;
}


/*----------  MEDIA QUERY  ----------*/
@media (max-width: 900px){
	.visto-relacionado-categoria {
		display: none;
	}
}

@media (max-width: 800px){
	/*=============Destacado=============*/
	.destacado-content {
		width: 100%;
	}
	.destacado-parrafo {
		padding: 50px 10px 15px 10px;
	}

	/*===========Publicidad============*/
	.publicidad-content {
		margin-top: 15px;
		width: 100%;
		height: 260px;

		order: 3;
	}
	.publicidad-content h2 {
		display: none;
	}
	.publicidad-item {
		height: 260px;
		margin: auto;
		width: 40%;
	}
	.publicidad-item .icono {
		display: block;
	}
	.publicidad-img {
		height: 260px;
	}
	.publicidad-img img {
		height: 280px;
	}

	/*===========Radio============*/
	.section-content-radio {
		order: 2;
	}

	/*----------Seccion Content bottom----------*/
	.section-content-bottom {
		padding: 20px 15px 20px 15px;
	}

	/*=============Mas recientes=============*/
	.articulo-box {
		width: 100%;
	}
	.articulo-box h1 {
		font-size: 26px;
		padding: 20px 0 0 2px;
	}
	.articulos-item .articulos-parrafo h2 {
		font-size: 22px;
	}
	.articulos-item .articulos-parrafo p {
		padding-top: 10px;
	}

	/*=============Mas vistos=============*/
	.visto-relacionado-box {
		width: 100%;
	}
	.visto-relacionado-box h2 {
		padding: 28px 0 0 2px;
	}
	.visto-relacionado-item {
		height: 160px;
	}
	.visto-relacionado-img {
		height: 160px;
	}
	.visto-relacionado-img figure {
		height: 160px;
	}
	.visto-relacionado-parrafo h3 {
		font-size: 18px;
	}
	.visto-relacionado-categoria {
		display: block;
		position: absolute;
	}

}

@media (max-width: 640px){
	/*=============Destacado=============*/
	.destacado-content {
		height: auto;
	}
	.destacado-img {
		height: 300px;
	}
	.destacado-img img {
		height: 300px;
	}
	.destacado-parrafo h2 {
		font-size: 22px;
	}

	/*===========Publicidad============*/
	.publicidad-content {
		height: 240px;
	}

	.publicidad-item {
		height: 240px;
		width: 50%;
	}
	.publicidad-img {
		height: 240px;
	}
	.publicidad-img img {
		height: 240px;
	}

	/*=============Mas recientes=============*/
	.articulo-box .articulos-item {
		height: 250px;
	}
	.articulos-item .articulos-img {
		height: 250px;
	}
	.articulos-item .articulos-parrafo h2 {
		font-size: 20px;
	}
	.articulos-item .articulos-parrafo p {
		padding-top: 2px;
		font-size: 15px;
	}

	/*=============Boton mostrar todo=============*/
	.mostrarTodos a {
		width: 50%;
	}

}

@media (max-width: 480px){
	/*=============Destacado=============*/
	.destacado-content a {
		flex: 0 1 calc(100% - 0px);
	}
	.destacado-img {
		height: 260px;
	}
	.destacado-img img {
		height: 260px;
	}
	.destacado-parrafo {
		padding: 80px 10px 15px 10px;
	}
	.destacado-parrafo h2 {
		font-size: 24px;
	}

	/*===========Publicidad============*/
	.publicidad-content {
		height: 230px;
	}

	.publicidad-item {
		height: 230px;
		width: 70%;
	}
	.publicidad-img {
		height: 230px;
	}
	.publicidad-img img {
		height: 230px;
	}


	/*----------Seccion Content bottom----------*/
	.section-content-bottom {
		padding: 20px 12px 20px 12px;
	}

	/*=============Mas recientes=============*/
	.articulo-box h1 {
		font-size: 24px;
		margin-bottom: 6px;
	}
	.articulo-box .articulos-item {
		flex-wrap: wrap;
		height: 280px;
		margin-top: 6px;
	}
	.articulos-item .articulos-img {
		width: 100%;
		height: 52%;
		border-radius: 5px 5px 0 0;
	}
	.articulos-item .articulos-img span {
		display: block;
		padding-left: 8px;
	}
	.articulos-item .articulos-parrafo {
		width: 100%;
		height: 48%;
		position: relative;
		padding: 7px;
	}
	.articulos-item .articulos-parrafo h2 {
		line-height: 20px;
	}
	.articulos-item .articulos-parrafo div {
		margin-bottom: 5px;
	}
	.articulos-item .articulos-parrafo p {
		padding-top: 0px;
		line-height: 16px;
	}
	.articulos-item .articulos-img a img {
		border-radius: 5px 5px 0 0;
	}
	.articulos-item .articulos-parrafo h2 {
		font-size: 20px;
	}
	.articulos-item .articulos-parrafo .articulo-categoria {
		display: none;
	}
	.articulos-item .articulos-parrafo .articulo-fecha {
		position: absolute;
		bottom: 5px;
		left: 3px;
	}

	/*==============Lo mas vistos=================*/
	.visto-relacionado-item {
		height: 140px;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.visto-relacionado-categoria {
		display: none;	
	}

	/*=============Boton mostrar todo=============*/
	.mostrarTodos a {
		width: 60%;
		padding: 15px;
	}
}

@media (max-width: 420px){
	/*=============Destacado=============*/
	.destacado-img {
		height: 240px;
	}
	.destacado-img img {
		height: 240px;
	}

	/*=============Mas recientes=============*/
	.articulo-box h1 {
		font-size: 22px;
	}
	.articulo-box .articulos-item {
		height: 260px;
	}
	.articulos-item .articulos-parrafo div {
		margin-bottom: 0;
	}
	.articulos-item .articulos-parrafo h2 {
		line-height: 18px;
	}
	.articulos-item .articulos-parrafo p {
		font-size: 14px;
		padding-top: 5px;
		line-height: 16px;
	}
	.articulos-item .articulos-parrafo .articulo-fecha {
		font-size: 12px;
	}

	/*=============Boton mostrar todo=============*/
	.mostrarTodos a {
		width: 80%;
		padding: 12px;
	}
}

@media (max-width: 380px){
	/*=============Destacado=============*/
	.destacado-img {
		height: 220px;
	}
	.destacado-img img {
		height: 220px;
	}

	/*===========Publicidad============*/
	.publicidad-content {
		height: 220px;
	}

	.publicidad-item {
		height: 220px;
		width: 85%;
	}
	.publicidad-img {
		height: 220px;
	}
	.publicidad-img img {
		height: 220px;
	}

	/*=============Mas recientes=============*/
	.articulos-item .articulos-parrafo h2 {
		font-size: 18px;
	}

	/*=============Mas vistos=============*/
	.visto-relacionado-parrafo h3 {
		font-size: 16px;
	}
}