/* ==================================================
   PÁGINA ARTÍCULO 02: INICIO
================================================== */

body{
	width:100%;
	margin:0;
	background:#272727;
	color:var(--white);
	overflow-x:hidden;
}

.risk-article-page{
	width:100%;
}


/* ==================================================
   HERO ARTÍCULO 02: INICIO
================================================== */

.risk-hero{
	width:100%;
	height:620px;
	padding:0 100px;
	overflow:hidden;
	box-sizing:border-box;
	background-image:url("../imgs/Hero-articulo-02.png");
	background-size:110% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.risk-hero-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding-top:80px;
	padding-bottom:50px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
}

.risk-hero-title{
	margin:0;
	font-family:var(--font-title);
	font-weight:var(--extra-bold);
	color:var(--white);
}


/* ==================================================
   PRIMERA LÍNEA: ENTRA DESDE ARRIBA
================================================== */

.risk-hero-title-top{
	display:block;
	font-size:36px;
	line-height:39px;

	opacity:0;
	transform:translate3d(0,-55px,0);

	animation:
		risk-title-top-enter
		1s
		cubic-bezier(.22,1,.36,1)
		.15s
		forwards;

	will-change:opacity,transform;
}


/* ==================================================
   SEGUNDA LÍNEA: SOLO OPACIDAD
================================================== */

.risk-hero-title-main{
	display:block;
	margin-top:3px;
	font-size:58px;
	line-height:61px;

	opacity:0;

	animation:
		risk-title-main-fade
		1.1s
		ease
		.65s
		forwards;

	will-change:opacity;
}


/* ==================================================
   TEXTO DESCRIPTIVO: ENTRA DESDE ABAJO
================================================== */

.risk-hero-subtitle{
	margin:20px 0 25px;
	font-family:var(--font-text);
	font-size:13px;
	line-height:22px;
	font-weight:var(--medium);
	letter-spacing:6px;
	color:var(--white);

	opacity:0;
	transform:translate3d(0,35px,0);

	animation:
		risk-subtitle-enter
		.9s
		cubic-bezier(.22,1,.36,1)
		1.05s
		forwards;

	will-change:opacity,transform;
}


/* ==================================================
   ICONOS: SIN ANIMACIÓN
================================================== */

.risk-socials{
	margin-top:100px;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:18px;
}

.risk-social-link{
	width:34px;
	height:34px;
	display:flex;
	align-items:center;
	justify-content:center;
	box-sizing:border-box;
	border:0;
	border-radius:50%;
	font-family:var(--font-text);
	font-size:11px;
	line-height:11px;
	font-weight:var(--bold);
	text-decoration:none;
	color:#272727;
	background:var(--white);
}

.risk-social-share{
	font-size:16px;
}


/* ==================================================
   FOTOGRAMAS
================================================== */

@keyframes risk-title-top-enter{

	from{
		opacity:0;
		transform:translate3d(0,-55px,0);
	}

	to{
		opacity:1;
		transform:translate3d(0,0,0);
	}

}

@keyframes risk-title-main-fade{

	from{
		opacity:0;
	}

	to{
		opacity:1;
	}

}

@keyframes risk-subtitle-enter{

	from{
		opacity:0;
		transform:translate3d(0,35px,0);
	}

	to{
		opacity:1;
		transform:translate3d(0,0,0);
	}

}


/* ==================================================
   ACCESIBILIDAD
================================================== */

@media(prefers-reduced-motion:reduce){

	.risk-hero-title-top,
	.risk-hero-title-main,
	.risk-hero-subtitle{
		opacity:1;
		transform:none;
		animation:none;
	}

}

/* ==================================================
   HERO ARTÍCULO 02: FIN
================================================== */


/* ==================================================
   SECCIÓN 01: DATOS Y RIESGOS: INICIO
================================================== */

.risk-overview{
	width:100%;
	height:600px;
	padding:35px 100px 45px;
	box-sizing:border-box;
	background:var(--red);
	color:var(--white);
}

.risk-overview-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
}

.risk-meta{
	width:100%;
	padding:0 190px;
	box-sizing:border-box;
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
}

.risk-meta-item{
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	font-family:var(--font-text);
	font-size:12px;
	line-height:19px;
	font-weight:var(--regular);
	color:var(--white);
}

.risk-meta-item-right{
	align-items:flex-end;
	text-align:right;
}

.risk-meta-item strong{
	font-weight:var(--medium);
}

.risk-meta-line{
	width:100%;
	height:2px;
	margin-top:20px;
	background:var(--white);
}

.risk-overview-grid{
	width:100%;
	margin-top:55px;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	column-gap:20px;
	align-items:start;
}

.risk-overview-copy{
	grid-column:1 / 7;
	width:100%;
	max-width:540px;
}

.risk-overview-copy p{
	margin:0 0 25px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:25px;
	font-weight:var(--regular);
	color:var(--white);
}

.risk-overview-copy p:last-child{
	margin-bottom:0;
}

.risk-statistics{
	grid-column:8 / 13;
	width:100%;
	display:flex;
	flex-direction:column;
	gap:35px;
}

.risk-statistic{
	width:100%;
	padding:0 0 28px;
	border-bottom:2px solid var(--white);
}

.risk-statistic strong{
	display:block;
	margin:0 0 8px;
	font-family:var(--font-title);
	font-size:64px;
	line-height:64px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

.risk-statistic p{
	width:100%;
	max-width:270px;
	margin:0;
	font-family:var(--font-text);
	font-size:14px;
	line-height:20px;
	font-weight:var(--regular);
	color:var(--white);
}

/* ==================================================
   SECCIÓN 01: DATOS Y RIESGOS: FIN
================================================== */


/* ==================================================
   SECCIÓN 02: RIESGOS EXTERNOS: INICIO
================================================== */

.risk-external{
	width:100%;
	height:560px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-02-01.png");
	background-size:110% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.risk-external-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
}

.risk-external-title{
	margin:0;
	margin-top:40px;
	font-family:var(--font-title);
	font-size:36px;
	line-height:42px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

.risk-external-copy{
	width:100%;
	max-width:710px;
	margin-top:50px;
}

.risk-external-copy p{
	margin:0 0 30px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:25px;
	font-weight:var(--regular);
	color:var(--white);
}

.risk-external-copy p:last-child{
	margin-bottom:0;
}

/* ==================================================
   SECCIÓN 02: RIESGOS EXTERNOS: FIN
================================================== */


/* ==================================================
   SECCIÓN 03: ENTORNO ECONÓMICO: INICIO
================================================== */

.risk-economy{
	width:100%;
	height:560px;
	padding:0;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-02-02.png");
	background-size:110% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
	overflow:hidden;
}

.risk-economy-container{
	position:relative;
	width:100%;
	height:100%;
	margin:0;
}

.risk-economy-images{
	position:absolute;
	top:0;
	left:0;
	width:52%;
	height:100%;
}

.risk-economy-image{
	position:absolute;
	overflow:hidden;
	background-color:transparent;
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
}

.risk-economy-image-one{
	top:45px;
	left:0;
	width:62%;
	height:280px;
	z-index:1;
	background-image:url("../imgs/articulo-02-021.png");
}

.risk-economy-image-two{
	left:22%;
	bottom:45px;
	width:62%;
	height:260px;
	z-index:2;
	background-image:url("../imgs/articulo-02-022.png");
}

.risk-economy-content{
	position:absolute;
	top:50%;
	right:100px;
	width:560px;
	transform:translateY(-50%);
	text-align:right;
	z-index:3;
}

.risk-economy-title{
	width:680px;
	max-width:none;
	margin:0 0 0 -120px;
	font-family:var(--font-title);
	font-size:36px;
	line-height:42px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

.risk-economy-copy{
	width:100%;
	max-width:540px;
	margin-top:35px;
	margin-left:auto;
}

.risk-economy-copy p{
	margin:0 0 22px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:24px;
	font-weight:var(--regular);
	color:var(--white);
}

.risk-economy-copy p:last-child{
	margin-bottom:0;
}

/* ==================================================
   SECCIÓN 03: ENTORNO ECONÓMICO: FIN
================================================== */


/* ==================================================
   SECCIÓN 04: DIRECCIÓN Y RIESGOS: INICIO
================================================== */

.risk-direction{
	width:100%;
	height:560px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-02-03.png");
	background-size:110% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.risk-direction-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	justify-content:center;
}

.risk-direction-title{
	margin:0;
	font-family:var(--font-title);
	font-size:36px;
	line-height:42px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

.risk-direction-copy{
	width:100%;
	max-width:650px;
	margin-top:30px;
}

.risk-direction-copy p{
	margin:0 0 28px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:25px;
	font-weight:var(--regular);
	color:var(--white);
}

.risk-direction-copy p:last-child{
	margin-bottom:0;
}

/* ==================================================
   SECCIÓN 04: DIRECCIÓN Y RIESGOS: FIN
================================================== */


/* ==================================================
   CIERRE DEL ARTÍCULO: INICIO
================================================== */

.risk-closing{
	width:100%;
	height:1030px;
	padding:0 100px;
	box-sizing:border-box;
	background:var(--red);
	color:var(--white);
}

.risk-closing-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	display:flex;
	flex-direction:column;
	align-items:center;
}

.risk-closing-copy{
	width:100%;
	max-width:720px;
	margin-top:100px;
	text-align:center;
}

.risk-closing-copy p{
	margin:0 0 30px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:26px;
	font-weight:var(--regular);
	color:var(--white);
}

.risk-closing-copy p:last-child{
	margin-bottom:0;
}

.risk-closing-line{
	width:100%;
	height:3px;
	margin-top:100px;
	background:var(--white);
}

.risk-closing-share{
	width:100%;
	max-width:760px;
	margin-top:45px;
	text-align:center;
}

.risk-closing-share p{
	margin:0 0 50px;
	font-family:var(--font-text);
	font-size:16px;
	line-height:28px;
	font-weight:var(--bold);
	color:var(--white);
}

.risk-socials-closing{
	margin-top:40px;
}

.article-related{
	width:100%;
	max-width:760px;
	margin-top:80px;
}

.article-related-heading{
	width:100%;
	height:32px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-family:var(--font-text);
	font-size:12px;
	line-height:14px;
	font-weight:var(--medium);
	letter-spacing:6px;
	color:var(--white);
	background:var(--blue);
}

.article-related-grid{
	width:100%;
	margin-top:20px;
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:35px;
}

.article-related-card{
	position:relative;
	width:100%;
	max-width:300px;
	height:90px;
	justify-self:center;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	box-sizing:border-box;
	border-radius:14px;
	font-family:var(--font-title);
	font-size:18px;
	line-height:20px;
	font-weight:var(--extra-bold);
	text-align:center;
	text-decoration:none;
	color:var(--white);
	background-color:transparent;
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
	transition:transform .3s ease;
}

.article-related-card::before{
	content:'';
	position:absolute;
	inset:0;
	background:rgba(182,26,39,.30);
	z-index:1;
}

.article-related-card span{
	position:relative;
	z-index:2;
	font-family:var(--font-title);
	text-align:center;
	color:var(--white);
}

.article-related-negocio{
	background-image:url("../imgs/Servicios-02-Negocios.png");
}

.article-related-financiera{
	background-image:url("../imgs/Servicios-03-Finanzas.png");
}

.article-related-card-one{
	background-image:url("../imgs/Servicios-02-Negocios.png");
}

.article-related-card-two{
	background-image:url("../imgs/Servicios-03-Finanzas.png");
}

.article-related-card:hover{
	transform:translateY(-4px);
}



.risk-related-card:hover{
	transform:translateY(-4px);
}

/* ==================================================
   CIERRE DEL ARTÍCULO: FIN
================================================== */


/* ==================================================
   ARTÍCULO 02 RESPONSIVE: TABLET
================================================== */

@media(max-width:900px){
	.risk-hero,
	.risk-overview,
	.risk-external,
	.risk-direction,
	.risk-closing{
		padding-left:40px;
		padding-right:40px;
	}

	.risk-hero-title-top{
		font-size:31px;
		line-height:34px;
	}

	.risk-hero-title-main{
		font-size:48px;
		line-height:52px;
	}

	.risk-meta{
		padding:0 80px;
	}

	.risk-overview-copy{
		grid-column:1 / 7;
	}

	.risk-statistics{
		grid-column:8 / 13;
	}

	.risk-economy-content{
		right:40px;
		width:430px;
	}

	.risk-economy-title{
		font-size:39px;
		line-height:42px;
	}

	.risk-economy-copy p{
		font-size:14px;
		line-height:23px;
	}
}


/* ==================================================
   ARTÍCULO 02 RESPONSIVE: MÓVIL
================================================== */

@media(max-width:650px){
	.risk-hero,
	.risk-overview,
	.risk-external,
	.risk-economy,
	.risk-direction,
	.risk-closing{
		height:auto;
	}

	.risk-hero{
		min-height:620px;
		padding:0 20px;
	}

	.risk-hero-container{
		padding-top:100px;
		padding-bottom:50px;
	}

	.risk-hero-title-top{
		font-size:23px;
		line-height:27px;
	}

	.risk-hero-title-main{
		font-size:34px;
		line-height:38px;
	}

	.risk-hero-subtitle{
		font-size:11px;
		line-height:19px;
		letter-spacing:3px;
	}

	.risk-hero-subtitle br{
		display:none;
	}

	.risk-socials{
		margin-top:80px;
	}

	.risk-overview{
		min-height:600px;
		padding:50px 20px 70px;
	}

	.risk-meta{
		padding:0;
	}

	.risk-overview-grid{
		margin-top:45px;
		display:flex;
		flex-direction:column;
		gap:50px;
	}

	.risk-overview-copy{
		max-width:none;
	}

	.risk-statistics{
		width:100%;
	}

	.risk-statistic strong{
		font-size:50px;
		line-height:52px;
	}

	.risk-external{
		min-height:560px;
		padding:75px 20px;
	}

	.risk-external-title{
		font-size:34px;
		line-height:37px;
	}

	.risk-external-copy{
		margin-top:45px;
	}

	.risk-economy{
		min-height:850px;
		padding:60px 20px;
	}

	.risk-economy-container{
		display:flex;
		flex-direction:column;
		gap:55px;
	}

	.risk-economy-images{
		position:relative;
		width:100%;
		height:360px;
	}

	.risk-economy-image-one{
		top:0;
		width:75%;
		height:245px;
	}

	.risk-economy-image-two{
		left:25%;
		bottom:0;
		width:75%;
		height:230px;
	}

	.risk-economy-content{
		position:static;
		width:100%;
		transform:none;
		text-align:right;
	}

	.risk-economy-title{
		font-size:34px;
		line-height:37px;
	}

	.risk-direction{
		min-height:560px;
		padding:75px 20px;
	}

	.risk-direction-title{
		font-size:37px;
		line-height:40px;
	}

	.risk-direction-copy{
		margin-top:45px;
	}

	.risk-closing{
		min-height:1030px;
		padding:90px 20px;
	}

	.risk-closing-copy{
		margin-top:0;
	}

	.risk-closing-line{
		margin-top:80px;
	}

	.risk-related{
		margin-top:75px;
	}

	.risk-related-grid{
		grid-template-columns:1fr;
		gap:20px;
	}

	.risk-related-card{
		height:100px;
	}
}

/* ==================================================
   PÁGINA ARTÍCULO 02: FIN
================================================== */