/* ==================================================
   PÁGINA ARTÍCULO 04: INICIO
================================================== */

body{
	width:100%;
	margin:0;
	background:#272727;
	color:var(--white);
	overflow-x:hidden;
}

.finance-article-page{
	width:100%;
}


/* ==================================================
   ELEMENTOS COMPARTIDOS: REDES SOCIALES
================================================== */

.article-socials{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:18px;
}

.article-social-link{
	width:34px;
	height:34px;
	display:flex;
	align-items:center;
	justify-content:center;
	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);
}

.article-social-share{
	font-size:16px;
}


/* ==================================================
   HERO ARTÍCULO 04: INICIO
================================================== */

.finance-hero{
	width:100%;
	height:620px;
	padding:0 100px;
	overflow:hidden;
	box-sizing:border-box;
	background-image:url("../imgs/Hero-articulo-04.png");
	background-size:105% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.finance-hero-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding-top:90px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
	transform:translateY(85px);
}

.finance-hero-title{
	margin:0;
	font-family:var(--font-title);
	font-weight:var(--extra-bold);
	color:var(--white);
}


/* ==================================================
   PRIMERA LÍNEA: ENTRA DESDE ARRIBA CON OPACIDAD
================================================== */

.finance-hero-title-top{
	display:block;
	font-size:34px;
	line-height:38px;

	opacity:0;
	transform:translate3d(0,-50px,0);

	animation:
		finance-title-top-enter
		.9s
		cubic-bezier(.22,1,.36,1)
		.15s
		forwards;

	will-change:opacity,transform;
}


/* ==================================================
   SEGUNDA LÍNEA: REVELADO CON MÁSCARA
================================================== */

.finance-hero-title-main{
	display:block;
	margin-top:2px;
	font-size:58px;
	line-height:61px;

	/*
	El texto permanece inmóvil en su ubicación.
	Solo se revela de izquierda a derecha.
	*/
	clip-path:inset(0 100% 0 0);

	animation:
		finance-title-main-reveal
		.9s
		cubic-bezier(.65,0,.35,1)
		.85s
		forwards;

	will-change:clip-path;
}


/* ==================================================
   LÍNEA: SE DIBUJA AL MISMO TIEMPO
================================================== */

.finance-hero-line{
	width:650px;
	height:3px;
	margin-top:17px;
	background:var(--white);

	transform:scaleX(0);
	transform-origin:left center;

	animation:
		finance-title-line-draw
		.9s
		cubic-bezier(.65,0,.35,1)
		.85s
		forwards;

	will-change:transform;
}


/* ==================================================
   TEXTO DESCRIPTIVO: APARICIÓN CON OPACIDAD
================================================== */

.finance-hero-subtitle{
	margin:18px 0 0;
	font-family:var(--font-text);
	font-size:13px;
	line-height:21px;
	font-weight:var(--medium);
	letter-spacing:6px;
	color:var(--white);

	opacity:0;

	animation:
		finance-subtitle-fade
		.65s
		ease
		1.75s
		forwards;

	will-change:opacity;
}


/* ==================================================
   ICONOS: SIN ANIMACIÓN
================================================== */

.finance-hero .article-socials{
	margin-top:40px;
}


/* ==================================================
   FOTOGRAMAS DE LAS ANIMACIONES
================================================== */

@keyframes finance-title-top-enter{

	from{
		opacity:0;
		transform:translate3d(0,-50px,0);
	}

	to{
		opacity:1;
		transform:translate3d(0,0,0);
	}

}

@keyframes finance-title-main-reveal{

	from{
		clip-path:inset(0 100% 0 0);
	}

	to{
		clip-path:inset(0 0 0 0);
	}

}

@keyframes finance-title-line-draw{

	from{
		transform:scaleX(0);
	}

	to{
		transform:scaleX(1);
	}

}

@keyframes finance-subtitle-fade{

	from{
		opacity:0;
	}

	to{
		opacity:1;
	}

}


/* ==================================================
   ACCESIBILIDAD
================================================== */

@media(prefers-reduced-motion:reduce){

	.finance-hero-title-top,
	.finance-hero-title-main,
	.finance-hero-line,
	.finance-hero-subtitle{
		opacity:1;
		transform:none;
		clip-path:none;
		animation:none;
	}

}

/* ==================================================
   HERO ARTÍCULO 04: FIN
================================================== */


/* ==================================================
   SECCIÓN 01: INFORMACIÓN Y DATOS: INICIO
================================================== */

.finance-overview{
	width:100%;
	height:700px;
	padding:42px 100px 65px;
	box-sizing:border-box;
	background:var(--red);
	color:var(--white);
}

.finance-overview-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	display:flex;
	flex-direction:column;
	align-items:center;
}


/* ==================================================
   INFORMACIÓN DEL ARTÍCULO
================================================== */

.finance-meta{
	width:100%;
	padding:0 185px;
	box-sizing:border-box;
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
}

.finance-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);
}

.finance-meta-item-right{
	align-items:flex-end;
	text-align:right;
}

.finance-meta-item strong{
	font-weight:var(--medium);
}

.finance-meta-line{
	width:100%;
	height:2px;
	margin-top:22px;
	background:var(--white);
}


/* ==================================================
   TEXTO INTRODUCTORIO
================================================== */

.finance-overview-copy{
	width:100%;
	max-width:700px;
	margin-top:60px;
	text-align:center;
}

.finance-overview-copy p{
	margin:0 0 30px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:26px;
	font-weight:var(--regular);
	color:var(--white);
}

.finance-overview-copy p:last-child{
	margin-bottom:0;
}


/* ==================================================
   CONTENEDOR DE ESTADÍSTICAS
================================================== */

.finance-statistics{
	width:100%;
	max-width:920px;
	margin-top:75px;
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:48px 100px;
}

.finance-statistic{
	display:grid;
	grid-template-columns:auto 1fr;
	align-items:center;
	column-gap:22px;
}


/* ==================================================
   NÚMEROS ANIMADOS
================================================== */

.finance-statistic strong{
	display:block;
	min-width:120px;
	font-family:var(--font-title);
	font-size:55px;
	line-height:57px;
	font-weight:var(--extra-bold);
	font-variant-numeric:tabular-nums;
	white-space:nowrap;
	color:var(--white);
}


/* ==================================================
   DESCRIPCIÓN DE LAS ESTADÍSTICAS
================================================== */

.finance-statistic p{
	margin:0;
	font-family:var(--font-text);
	font-size:13px;
	line-height:19px;
	font-weight:var(--regular);
	color:var(--white);
}

/* ==================================================
   SECCIÓN 01: INFORMACIÓN Y DATOS: FIN
================================================== */


/* ==================================================
   SECCIÓN 02: RESILIENCIA FINANCIERA: INICIO
================================================== */

.finance-resilience{
	width:100%;
	height:720px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-04-01.png");
	background-size:110% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.finance-resilience-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding:72px 0 55px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
}

.finance-resilience-heading{
	width:100%;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	column-gap:20px;
	align-items:start;
}

.finance-resilience-title{
	grid-column:1 / 7;
	margin:0;
	font-family:var(--font-title);
	font-size:36px;
	line-height:40px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

.finance-resilience-intro{
	grid-column:8 / 13;
	margin:0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:25px;
	font-weight:var(--regular);
	color:var(--white);
}

.finance-resilience-concept{
	width:100%;
	max-width:840px;
	margin:80px auto 0;
	display:grid;
	grid-template-columns:1fr auto 1fr;
	align-items:center;
	column-gap:30px;
}

.finance-resilience-concept p{
	margin:0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:20px;
	font-weight:var(--regular);
	text-align:center;
	color:var(--white);
}

.finance-resilience-line{
	width:100%;
	height:2px;
	background:var(--white);
}

.finance-resilience-cards{
	width:100%;
	max-width:980px;
	margin:45px auto 0;
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:55px;
}

.finance-resilience-card{
	width:100%;
	min-height:130px;
	padding:22px 20px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	border-radius:16px;
	text-align:center;
	background:var(--blue);
}

.finance-resilience-icon{
	width:44px;
	height:44px;
	margin-bottom:18px;
	display:block;
	object-fit:contain;
}

.finance-resilience-card p{
	margin:0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:21px;
	font-weight:var(--regular);
	color:var(--white);
}

.finance-resilience-closing{
	width:100%;
	max-width:580px;
	margin:65px auto 0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	text-align:center;
	color:var(--white);
}

/* ==================================================
   SECCIÓN 02: RESILIENCIA FINANCIERA: FIN
================================================== */


/* ==================================================
   SECCIÓN 03: INTELIGENCIA ARTIFICIAL: INICIO
================================================== */

.finance-ai{
	width:100%;
	height:830px;
	padding:0 100px;
	box-sizing:border-box;
	background:var(--red);
	color:var(--white);
}

.finance-ai-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding:65px 0 45px;
	box-sizing:border-box;
}

.finance-ai-title{
	margin:50px;
	font-family:var(--font-title);
	font-size:49px;
	line-height:51px;
	font-weight:var(--extra-bold);
	text-align:center;
	color:var(--white);
}

.finance-ai-title span{
	display:block;
	font-size:29px;
	line-height:33px;
}

.finance-ai-introduction{
	width:100%;
	max-width:720px;
	margin:55px auto 0;
	text-align:center;
}

.finance-ai-introduction p{
	margin:0 0 22px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:25px;
	font-weight:var(--regular);
	color:var(--white);
}

.finance-ai-points{
	width:100%;
	max-width:1000px;
	margin:100px auto 0;
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:100px;
}

.finance-ai-point{
	display:grid;
	grid-template-columns:70px 1fr;
	align-items:center;
	column-gap:20px;
}



.finance-ai-point p{
	margin:0;
	font-family:var(--font-text);
	font-size:13px;
	line-height:20px;
	font-weight:var(--regular);
	color:var(--white);
}

.finance-ai-bottom{
	width:100%;
	margin-top:105px;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	column-gap:20px;
	align-items:center;
}

.finance-ai-copy{
	grid-column:1 / 6;
}

.finance-ai-copy p{
	margin:0 0 25px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:25px;
	font-weight:var(--regular);
	color:var(--white);
}

.finance-ai-copy p:last-child{
	margin-bottom:0;
}

.finance-ai-quote{
	grid-column:7 / 13;
	width:100%;
	max-width:470px;
	justify-self:end;
	text-align:center;
}

.finance-ai-quote-line{
	width:100%;
	height:2px;
	background:var(--white);
}

.finance-ai-quote p{
	margin:18px 0;
	font-family:var(--font-text);
	font-size:32px;
	line-height:20px;
	font-weight:var(--bold);
	color:var(--white);
}

.finance-ai-quote p span{
	display:block;
	margin-top:5px;
	font-size:20px;
	line-height:25px;
	font-weight:var(--regular);
}

.finance-ai-icon{
	width:58px;
	height:58px;
	display:block;
	object-fit:contain;
}

/* ==================================================
   SECCIÓN 03: INTELIGENCIA ARTIFICIAL: FIN
================================================== */


/* ==================================================
   SECCIÓN 04: CONTROL DEL RENDIMIENTO: INICIO
================================================== */

.finance-performance{
	width:100%;
	height:700px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-04-02.png");
	background-size:100% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.finance-performance-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding:65px 0 45px;
	box-sizing:border-box;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	grid-template-rows:auto auto auto;
	column-gap:20px;
	align-content:start;
}

.finance-performance-heading{
	grid-column:1 / 7;
}

.finance-performance-title{
	margin:0;
	min-width:650px;
	font-family:var(--font-title);
	font-size:36px;
	line-height:40px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

.finance-performance-description{
	width:100%;
	max-width:450px;
	margin:30px 0 0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:25px;
	font-weight:var(--regular);
	color:var(--white);
}

.finance-performance-list{
	grid-column:8 / 13;
	padding-top:155px;
}

.finance-performance-intro{
	margin:0 0 30px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

.finance-performance-list ul{
	margin:0;
	padding:0;
	display:flex;
	flex-direction:column;
	gap:25px;
	list-style:none;
}

.finance-performance-list li{
	display:grid;
	grid-template-columns:28px 1fr;
	align-items:start;
	column-gap:18px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

.finance-performance-icon{
	width:30px;
	height:30px;
	display:block;
	object-fit:contain;
}

.finance-performance-closing{
	grid-column:4 / 10;
	margin:70px 0 0;
	align-self:start;
	font-family:var(--font-text);
	font-size:15px;
	line-height:24px;
	font-weight:var(--regular);
	text-align:center;
	color:var(--white);
}

/* ==================================================
   SECCIÓN 04: CONTROL DEL RENDIMIENTO: FIN
================================================== */


/* ==================================================
   SECCIÓN 05: CAPITAL Y RIESGO: INICIO
================================================== */

.finance-capital{
	width:100%;
	height:620px;
	padding:0 100px;
	box-sizing:border-box;
	background:var(--red);
	color:var(--white);
}

.finance-capital-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding:60px 0 40px;
	box-sizing:border-box;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	grid-template-rows:auto auto auto auto;
	column-gap:20px;
	align-content:start;
}

.finance-capital-copy{
	margin:70px 0;
	grid-column:1 / 6;
	grid-row:1;
	padding-top:15px;
	font-size:15px;
	line-height:23px;
}

.finance-capital-title{
	grid-column:7 / 13;
	grid-row:1;
	margin:30px 0;
	font-family:var(--font-title);
	font-size:36px;
	line-height:40px;
	font-weight:var(--extra-bold);
	text-align:right;
	color:var(--white);
}

.finance-capital-prompt{
	grid-column:1 / 11;
	grid-row:2;
	margin:10px 0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--medium);
	color:var(--white);
}

.finance-capital-points{
	grid-column:1 / 11;
	grid-row:3;
	margin-top:0;
	display:flex;
	flex-direction:column;
	gap:18px;
}

.finance-capital-point{
	display:grid;
	grid-template-columns:130px 1fr;
	align-items:center;
	column-gap:25px;
}

.finance-capital-line{
	width:100%;
	height:2px;
	display:block;
	background:var(--white);
}

.finance-capital-point p{
	margin:0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

.finance-capital-closing{
	grid-column:4 / 10;
	grid-row:4;
	margin:65px 0 0;
	align-self:start;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	text-align:center;
	color:var(--white);
}

/* ==================================================
   SECCIÓN 05: CAPITAL Y RIESGO: FIN
================================================== */


/* ==================================================
   SECCIÓN 06: IMAGEN: INICIO
================================================== */

.finance-image-band{
	width:100%;
	height:280px;
	background-image:url("../imgs/articulo-04-03.png");
	background-size:100% auto;
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
}

/* ==================================================
   SECCIÓN 06: IMAGEN: FIN
================================================== */


/* ==================================================
   CIERRE DEL ARTÍCULO: INICIO
================================================== */

.article-closing{
	width:100%;
	height:900px;
	padding:0 100px;
	box-sizing:border-box;
	background:var(--red);
	color:var(--white);
}

.article-closing-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	display:flex;
	flex-direction:column;
	align-items:center;
}

.article-closing-copy{
	width:100%;
	max-width:600px;
	margin-top:75px;
	text-align:center;
}

.article-closing-copy p{
	margin:0 0 24px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:40px;
	font-weight:var(--regular);
	color:var(--white);
}

.article-closing-copy p:last-child{
	margin-bottom:0;
}

.article-closing-line{
	width:100%;
	height:3px;
	margin-top:50px;
	background:var(--white);
}

.article-closing-share{
	width:100%;
	max-width:600px;
	margin-top:45px;
	text-align:center;
}

.article-closing-share p{
	margin:0 0 30px;
	font-family:var(--font-text);
	font-size:16px;
	line-height:26px;
	font-weight:var(--bold);
	color:var(--white);
}

.article-socials-closing{
	margin-top:0;
}

.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-financiera{
	background-image:url("../imgs/Servicios-03-Finanzas.png");
}


.article-related-negocio{
	background-image:url("../imgs/Servicios-02-Negocios.png");
}

.article-related-card-one{
	background-image:url("../imgs/Servicios-03-Finanzas.png");
}

.article-related-card-two{
	background-image:url("../imgs/Servicios-02-Negocios.png");
}

.article-related-card:hover{
	transform:translateY(-4px);
}

/* ==================================================
   CIERRE DEL ARTÍCULO: FIN
================================================== */


/* ==================================================
   ARTÍCULO 04 RESPONSIVE: TABLET
================================================== */

@media(max-width:900px){
	.finance-hero,
	.finance-overview,
	.finance-resilience,
	.finance-ai,
	.finance-performance,
	.finance-capital,
	.article-closing{
		padding-left:40px;
		padding-right:40px;
	}

	.finance-meta{
		padding:0 80px;
	}

	.finance-hero-title-main{
		font-size:49px;
		line-height:52px;
	}

	.finance-resilience-title{
		font-size:35px;
		line-height:38px;
	}

	.finance-ai-title{
		font-size:42px;
		line-height:45px;
	}

	.finance-performance-title{
		font-size:37px;
		line-height:40px;
	}

	.finance-capital-title{
		font-size:39px;
		line-height:42px;
	}
}


/* ==================================================
   ARTÍCULO 04 RESPONSIVE: MÓVIL
================================================== */

@media(max-width:650px){
	.finance-hero,
	.finance-overview,
	.finance-resilience,
	.finance-ai,
	.finance-performance,
	.finance-capital,
	.article-closing{
		height:auto;
		padding-left:20px;
		padding-right:20px;
	}

	.finance-hero{
		min-height:620px;
	}

	.finance-hero-title-top{
		font-size:24px;
		line-height:28px;
	}

	.finance-hero-title-main{
		font-size:39px;
		line-height:42px;
	}

	.finance-hero-line{
		width:100%;
		max-width:360px;
	}

	.finance-hero-subtitle{
		font-size:11px;
		line-height:19px;
		letter-spacing:3px;
	}

	.finance-overview{
		min-height:780px;
		padding-top:50px;
		padding-bottom:70px;
	}

	.finance-meta{
		padding:0;
	}

	.finance-overview-copy{
		margin-top:50px;
	}

	.finance-statistics{
		margin-top:60px;
		grid-template-columns:1fr;
		gap:35px;
	}

	.finance-statistic{
		max-width:350px;
		margin:0 auto;
	}

	.finance-resilience{
		min-height:900px;
		padding-top:75px;
		padding-bottom:75px;
	}

	.finance-resilience-container{
		padding:0;
	}

	.finance-resilience-heading{
		display:flex;
		flex-direction:column;
		gap:40px;
	}

	.finance-resilience-concept{
		grid-template-columns:1fr;
		gap:18px;
	}

	.finance-resilience-cards{
		grid-template-columns:1fr;
		gap:20px;
	}

	.finance-ai{
		min-height:1100px;
		padding-top:80px;
		padding-bottom:80px;
	}

	.finance-ai-container{
		padding:0;
	}

	.finance-ai-title{
		font-size:35px;
		line-height:38px;
	}

	.finance-ai-title span{
		font-size:23px;
		line-height:27px;
	}

	.finance-ai-points{
		grid-template-columns:1fr;
		gap:30px;
	}

	.finance-ai-bottom{
		display:flex;
		flex-direction:column;
		gap:60px;
	}

	.finance-ai-quote{
		max-width:none;
	}

	.finance-performance{
		min-height:900px;
		padding-top:75px;
		padding-bottom:75px;
	}

	.finance-performance-container{
		padding:0;
		display:flex;
		flex-direction:column;
		gap:60px;
	}

	.finance-performance-list{
		padding-top:0;
	}

	.finance-performance-closing{
		margin-top:20px;
	}

	.finance-capital{
		min-height:850px;
		padding-top:75px;
		padding-bottom:75px;
	}

	.finance-capital-container{
		padding:0;
		display:flex;
		flex-direction:column;
	}

	.finance-capital-title{
		order:1;
		font-size:35px;
		line-height:38px;
		text-align:left;
	}

	.finance-capital-copy{
		order:2;
		margin-top:50px;
		padding:0;
	}

	.finance-capital-points{
		order:3;
		margin-top:45px;
	}

	.finance-capital-point{
		grid-template-columns:70px 1fr;
	}

	.finance-capital-closing{
		order:4;
		margin-top:60px;
	}

	.finance-image-band{
		height:190px;
	}

	.article-closing{
		min-height:900px;
		padding-top:80px;
		padding-bottom:60px;
	}

	.article-closing-copy{
		margin-top:0;
	}

	.article-related-grid{
		grid-template-columns:1fr;
		gap:20px;
	}
}

/* ==================================================
   PÁGINA ARTÍCULO 04: FIN
================================================== */