/* ==================================================
   PÁGINA ARTÍCULO 05: INICIO
================================================== */

body{
	width:100%;
	margin:0;
	background:#272727;
	color:var(--white);
	overflow-x:hidden;
}

.commercial-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 05: INICIO
================================================== */

.commercial-hero{
	width:100%;
	height:620px;
	padding:0 100px;
	overflow:hidden;
	box-sizing:border-box;
	background-image:url("../imgs/Hero-articulo-05.png");
	background-size:105% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.commercial-hero-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding:0;
	box-sizing:border-box;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	grid-template-rows:auto auto;
	column-gap:20px;
	row-gap:10px;
	align-content:center;
	transform:translateY(180px);
}

.commercial-hero-content{
	width:100%;
	grid-column:1 / 11;
	grid-row:1;
}

.commercial-hero-title{
	width:max-content;
	max-width:none;
	margin:0;
	overflow:hidden;
	font-family:var(--font-title);
	font-weight:var(--extra-bold);
	color:var(--white);
}

.commercial-hero-title-top,
.commercial-hero-title-main{
	white-space:nowrap;
}


/* ==================================================
   PRIMERA LÍNEA: MÁSCARA DE IZQUIERDA A DERECHA
================================================== */

.commercial-hero-title-top{
	display:block;
	font-size:60px;
	line-height:62px;

	opacity:0;
	clip-path:inset(0 100% 0 0);

	animation:
		commercial-title-top-reveal
		1.1s
		cubic-bezier(.65,0,.35,1)
		.15s
		forwards;

	will-change:opacity,clip-path;
}


/* ==================================================
   SEGUNDA LÍNEA: APARECE DE ABAJO HACIA ARRIBA
================================================== */

.commercial-hero-title-main{
	display:block;
	margin-top:2px;
	font-size:35px;
	line-height:39px;

	opacity:0;
	transform:translate3d(0,45px,0);

	animation:
		commercial-title-main-enter
		.85s
		cubic-bezier(.22,1,.36,1)
		1.05s
		forwards;

	will-change:opacity,transform;
}


/* ==================================================
   TEXTO DESCRIPTIVO: SIN ANIMACIÓN
================================================== */

.commercial-hero-subtitle{
	margin:10px 0 0;
	font-family:var(--font-text);
	font-size:13px;
	line-height:22px;
	font-weight:var(--medium);
	letter-spacing:6px;
	text-transform:uppercase;
	color:var(--white);
}


/* ==================================================
   ICONOS: SIN ANIMACIÓN
================================================== */

.commercial-hero .article-socials{
	grid-column:1 / 11;
	grid-row:2;
	margin:10px 0;
	justify-content:flex-start;
}


/* ==================================================
   FOTOGRAMAS DE LAS ANIMACIONES
================================================== */

@keyframes commercial-title-top-reveal{

	0%{
		opacity:0;
		clip-path:inset(0 100% 0 0);
	}

	15%{
		opacity:1;
	}

	100%{
		opacity:1;
		clip-path:inset(0 0 0 0);
	}

}

@keyframes commercial-title-main-enter{

	from{
		opacity:0;
		transform:translate3d(0,45px,0);
	}

	to{
		opacity:1;
		transform:translate3d(0,0,0);
	}

}


/* ==================================================
   ACCESIBILIDAD
================================================== */

@media(prefers-reduced-motion:reduce){

	.commercial-hero-title-top,
	.commercial-hero-title-main{
		opacity:1;
		transform:none;
		clip-path:none;
		animation:none;
	}

}

/* ==================================================
   HERO ARTÍCULO 05: FIN
================================================== */


/* ==================================================
   SECCIÓN 01: INFORMACIÓN Y DATOS: INICIO
================================================== */

.commercial-overview{
	width:100%;
	height:700px;
	padding:38px 100px 55px;
	box-sizing:border-box;
	background:var(--red);
	color:var(--white);
}

.commercial-overview-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
}

.commercial-meta{
	width:100%;
	padding:0 190px;
	box-sizing:border-box;
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
}

.commercial-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);
}

.commercial-meta-item-right{
	align-items:flex-end;
	text-align:right;
}

.commercial-meta-item strong{
	font-weight:var(--medium);
}

.commercial-meta-line{
	width:100%;
	height:2px;
	margin-top:22px;
	background:var(--white);
}

.commercial-overview-grid{
	width:100%;
	margin-top:95px;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	column-gap:20px;
	align-items:center;
}

.commercial-overview-copy{
	grid-column:1 / 7;
	width:100%;
	max-width:540px;
}

.commercial-overview-copy p{
	margin:0 0 30px;
	max-width:390px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:30px;
	font-weight:var(--regular);
	color:var(--white);
}

.commercial-overview-copy p:last-child{
	margin-bottom:0;
}

.commercial-statistics{
	grid-column:8 / 13;
	width:100%;
	display:flex;
	flex-direction:column;
	gap:70px;
}

.commercial-statistic{
	width:100%;
	display:grid;
	grid-template-columns:95px 125px 1fr;
	align-items:center;
	column-gap:22px;
}

.commercial-statistic-line{
	width:100%;
	height:2px;
	display:block;
	background:var(--white);
}

.commercial-statistic strong{
	display:block;
	font-family:var(--font-title);
	font-size:58px;
	line-height:58px;
	font-weight:var(--extra-bold);
	font-variant-numeric:tabular-nums;
	white-space:nowrap;
	color:var(--white);
}

.commercial-statistic p{
	margin:0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

/* ==================================================
   SECCIÓN 01: INFORMACIÓN Y DATOS: FIN
================================================== */


/* ==================================================
   SECCIÓN 02: EXPERIENCIA DEL CONSUMIDOR: INICIO
================================================== */

.consumer-experience{
	width:100%;
	height:560px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-05-01.png");
	background-size:105% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.consumer-experience-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding:65px 0 50px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
}

.consumer-experience-title{
	margin:0;
	font-family:var(--font-title);
	font-size:48px;
	line-height:50px;
	font-weight:var(--extra-bold);
	text-align:center;
	color:var(--white);
}

.consumer-experience-title span{
	display:block;
	font-size:36px;
	line-height:40px;
}

.consumer-experience-intro{
	width:100%;
	max-width:640px;
	margin:30px auto 0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	text-align:center;
	color:var(--white);
}

.consumer-experience-bottom{
	width:100%;
	margin-top:55px;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	column-gap:20px;
	align-items:start;
}

.consumer-experience-list{
	grid-column:1 / 7;
	width:calc(100% + 100px);
	margin-left:-100px;
}

.consumer-experience-list > p{
	margin:0 0 25px 100px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

.consumer-experience-point{
	width:100%;
	margin-bottom:18px;
	display:grid;
	grid-template-columns:150px 1fr;
	align-items:center;
	column-gap:20px;
}

.consumer-experience-line{
	width:100%;
	height:2px;
	display:block;
	background:var(--white);
}
.consumer-experience-point p{
	margin:0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

.consumer-experience-copy{
	grid-column:9 / 13;
	max-width:350px;
	margin:45px 0 0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	text-align:right;
	color:var(--white);
}

/* ==================================================
   SECCIÓN 02: EXPERIENCIA DEL CONSUMIDOR: FIN
================================================== */


/* ==================================================
   SECCIÓN 03: MODELOS COMERCIALES: INICIO
================================================== */

.commercial-models{
	width:100%;
	height:650px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-05-02.png");
	background-size:105% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.commercial-models-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding:65px 0 45px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
}

.commercial-models-title{
	margin:0;
	font-family:var(--font-title);
	font-size:48px;
	line-height:50px;
	font-weight:var(--extra-bold);
	text-align:center;
	color:var(--white);
}

.commercial-models-title span{
	display:block;
	font-size:36px;
	line-height:40px;
}

.commercial-models-content{
	width:100%;
	margin-top:55px;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	column-gap:20px;
	align-items:start;
}

.commercial-models-copy{
	grid-column:1 / 5;
	width:100%;
	max-width:420px;
}

.commercial-models-copy p{
	margin:0 0 30px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

.commercial-models-list{
	grid-column:7 / 13;
	width:calc(100% + 60px);
	margin-left:50px;
	margin-right:-100px;
	display:flex;
	flex-direction:column;
	gap:22px;
}

.commercial-models-point{
	display:grid;
	grid-template-columns:12px 1fr;
	align-items:start;
	column-gap:20px;
	padding:0 100px 15px 0;
	border-bottom:2px solid var(--white);
}

.commercial-models-point span{
	width:9px;
	height:9px;
	margin-top:7px;
	display:block;
	background:var(--white);
}

.commercial-models-point p{
	margin:0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

.commercial-models-closing{
	width:100%;
	max-width:680px;
	margin:auto auto 0;
	text-align:center;
}

.commercial-models-closing p{
	margin:0 0 20px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

.commercial-models-closing strong{
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--medium);
	color:var(--white);
}

/* ==================================================
   SECCIÓN 03: MODELOS COMERCIALES: FIN
================================================== */


/* ==================================================
   SECCIÓN 04: GESTIÓN DE CANALES: INICIO
================================================== */

.channel-management{
	width:100%;
	height:560px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-05-03.png");
	background-size:105% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.channel-management-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding:65px 0 45px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	align-items:center;
}

.channel-management-heading{
	width:100%;
	display:flex;
	flex-direction:column;
	align-items:center;
}

.channel-management-title-row{
	width:100%;
	display:grid;
	grid-template-columns:140px auto 140px;
	align-items:center;
	justify-content:center;
	column-gap:25px;
}

.channel-management-title-line{
	width:140px;
	height:2px;
	display:block;
	background:var(--white);
}

.channel-management-title{
	margin:0;
	font-family:var(--font-title);
	font-size:48px;
	line-height:50px;
	font-weight:var(--extra-bold);
	text-align:center;
	color:var(--white);
}

.channel-management-subtitle{
	margin:3px 0 0;
	font-family:var(--font-title);
	font-size:36px;
	line-height:40px;
	font-weight:var(--extra-bold);
	text-align:center;
	color:var(--white);
}

.channel-management-title span{
	display:block;
}

.channel-management-intro{
	width:100%;
	max-width:680px;
	margin-top:35px;
	text-align:center;
}

.channel-management-intro p{
	margin:0 0 18px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

.channel-management-grid{
	width:100%;
	max-width:1000px;
	margin-top:45px;
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:85px;
}

.channel-management-item{
	display:grid;
	grid-template-columns:70px 1fr;
	align-items:center;
	column-gap:20px;
}

.channel-management-icon{
	width:64px;
	height:64px;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:50%;
	background:var(--white);
}

.channel-management-icon img{
	width:40px;
	height:40px;
	display:block;
	object-fit:contain;
}

.channel-management-item p{
	margin:0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

.channel-management-closing{
	width:100%;
	max-width:600px;
	margin:auto 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 04: GESTIÓN DE CANALES: FIN
================================================== */


/* ==================================================
   SECCIÓN 05: RELACIÓN CON OTRAS ÁREAS: INICIO
================================================== */

.commercial-areas{
	width:100%;
	height:700px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-05-04.png");
	background-size:105% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.commercial-areas-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding:65px 0 45px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	align-items:center;
}

.commercial-areas-title{
	margin:0;
	font-family:var(--font-title);
	font-size:48px;
	line-height:50px;
	font-weight:var(--extra-bold);
	text-align:center;
	color:var(--white);
}

.commercial-areas-title span{
	display:block;
	font-size:36px;
	line-height:40px;
}

.commercial-areas-intro{
	width:100%;
	max-width:680px;
	margin-top:30px;
	text-align:center;
}

.commercial-areas-intro p{
	margin:0 0 18px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

.commercial-areas-grid{
	width:100%;
	max-width:1080px;
	margin-top:30px;
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:70px;
}

.commercial-area-card{
	width:100%;
	height:160px;
	padding:20px 28px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:15px;
	border-radius:16px;
	text-align:center;
	background:var(--blue);
}

.commercial-area-icon{
	width:55px;
	height:55px;
	flex:0 0 55px;
	display:block;
	object-fit:contain;
}

.commercial-area-card p{
	margin:0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	text-align:center;
	color:var(--white);
}

.commercial-areas-closing{
	width:100%;
	max-width:600px;
	margin:60px 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 05: RELACIÓN CON OTRAS ÁREAS: FIN
================================================== */


/* ==================================================
   SECCIÓN 06: LIDERAZGO COMERCIAL: INICIO
================================================== */

.commercial-leadership{
	width:100%;
	height:600px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-05-05.png");
	background-size:105% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.commercial-leadership-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding:65px 0 50px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	align-items:center;
}

.commercial-leadership-title{
	margin:0;
	font-family:var(--font-title);
	font-size:48px;
	line-height:52px;
	font-weight:var(--extra-bold);
	text-align:center;
	color:var(--white);
}

.commercial-leadership-intro{
	width:100%;
	max-width:730px;
	margin:30px auto 0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	text-align:center;
	color:var(--white);
}

.commercial-leadership-main{
	width:100%;
	max-width:1240px;
	margin-top:55px;
	display:grid;
	grid-template-columns:1fr 1fr;
	align-items:center;
	column-gap:80px;
}

.commercial-leadership-prompt{
	width:calc(100% + 100px);
	margin-left:-100px;
	display:grid;
	grid-template-columns:250px 1fr;
	align-items:center;
	column-gap:25px;
}

.commercial-leadership-prompt-line{
	width:100%;
	height:2px;
	display:block;
	background:var(--white);
}

.commercial-leadership-prompt p{
	margin:0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:23px;
	font-weight:var(--regular);
	color:var(--white);
}

.commercial-leadership-list{
	display:flex;
	flex-direction:column;
	gap:14px;
}

.commercial-leadership-point{
	display:grid;
	grid-template-columns:100px 1fr;
	align-items:center;
	column-gap:20px;
}

.commercial-leadership-point span{
	width:100%;
	height:2px;
	display:block;
	background:var(--white);
}

.commercial-leadership-point strong{
	font-family:var(--font-text);
	font-size:28px;
	line-height:40px;
	font-weight:var(--bold);
	color:var(--white);
}

.commercial-leadership-closing{
	width:100%;
	max-width:580px;
	margin:auto 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 06: LIDERAZGO COMERCIAL: 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:100px;
	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:650px;
	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-comercial{
	background-image:url("../imgs/Servicios-04-Estrategia-Comercial.png");
}

.article-related-branding{
	background-image:url("../imgs/Servicios-01-Branding.png");
}

.article-related-card-one{
	background-image:url("../imgs/Servicios-04-Estrategia-Comercial.png");
}

.article-related-card-two{
	background-image:url("../imgs/Servicios-01-Branding.png");
}

.article-related-card:hover{
	transform:translateY(-4px);
}

/* ==================================================
   CIERRE DEL ARTÍCULO: FIN
================================================== */


/* ==================================================
   ARTÍCULO 05 RESPONSIVE: TABLET
================================================== */

@media(max-width:900px){
	.commercial-hero,
	.commercial-overview,
	.consumer-experience,
	.commercial-models,
	.channel-management,
	.commercial-areas,
	.commercial-leadership,
	.article-closing{
		padding-left:40px;
		padding-right:40px;
	}

	.commercial-hero-title-top{
		font-size:29px;
		line-height:33px;
	}

	.commercial-hero-title-main{
		font-size:48px;
		line-height:51px;
	}

	.commercial-meta{
		padding:0 80px;
	}

	.commercial-statistic{
		grid-template-columns:65px 105px 1fr;
		column-gap:16px;
	}

	.commercial-statistic strong{
		font-size:48px;
		line-height:50px;
	}

	.channel-management-heading{
		grid-template-columns:80px 1fr 80px;
	}

	.commercial-areas-grid{
		grid-template-columns:repeat(2,1fr);
	}

	.commercial-areas{
		height:auto;
		min-height:700px;
		padding-top:65px;
		padding-bottom:55px;
	}

	.commercial-areas-container{
		padding:0;
	}

	.commercial-areas-closing{
		margin-top:45px;
	}
}


/* ==================================================
   ARTÍCULO 05 RESPONSIVE: MÓVIL
================================================== */

@media(max-width:650px){
	.commercial-hero,
	.commercial-overview,
	.consumer-experience,
	.commercial-models,
	.channel-management,
	.commercial-areas,
	.commercial-leadership,
	.article-closing{
		height:auto;
		padding-left:20px;
		padding-right:20px;
	}

	.commercial-hero{
		min-height:610px;
	}

	.commercial-hero-container{
		padding-top:110px;
		padding-bottom:55px;
		display:flex;
		flex-direction:column;
		align-items:flex-start;
		justify-content:flex-end;
	}

	.commercial-hero-title-top{
		font-size:23px;
		line-height:27px;
	}

	.commercial-hero-title-main{
		font-size:37px;
		line-height:40px;
	}

	.commercial-hero-subtitle{
		font-size:11px;
		line-height:19px;
		letter-spacing:3px;
	}

	.commercial-hero-subtitle br{
		display:none;
	}

	.commercial-hero .article-socials{
		margin-top:55px;
		align-self:flex-end;
	}

	.commercial-overview{
		min-height:720px;
		padding-top:45px;
		padding-bottom:70px;
	}

	.commercial-meta{
		padding:0;
	}

	.commercial-overview-grid{
		margin-top:50px;
		display:flex;
		flex-direction:column;
		gap:55px;
	}

	.commercial-statistics{
		width:100%;
	}

	.commercial-statistic{
		grid-template-columns:55px 90px 1fr;
	}

	.commercial-statistic strong{
		font-size:42px;
		line-height:44px;
	}

	.consumer-experience{
		min-height:700px;
		padding-top:70px;
		padding-bottom:70px;
	}

	.consumer-experience-container{
		padding:0;
	}

	.consumer-experience-title{
		font-size:30px;
		line-height:34px;
	}

	.consumer-experience-bottom{
		display:flex;
		flex-direction:column;
		gap:45px;
	}

	.consumer-experience-copy{
		margin:0;
		text-align:left;
	}

	.consumer-experience-point{
		grid-template-columns:60px 1fr;
	}

	.commercial-models{
		min-height:800px;
		padding-top:70px;
		padding-bottom:70px;
	}

	.commercial-models-container{
		padding:0;
	}

	.commercial-models-title{
		font-size:30px;
		line-height:34px;
	}

	.commercial-models-content{
		display:flex;
		flex-direction:column;
		gap:45px;
	}

	.commercial-models-closing{
		margin-top:55px;
	}

	.channel-management{
		min-height:750px;
		padding-top:70px;
		padding-bottom:70px;
	}

	.channel-management-container{
		padding:0;
	}

	.channel-management-heading{
		display:block;
	}

	.channel-management-title-line{
		display:none;
	}

	.channel-management-title{
		font-size:30px;
		line-height:34px;
	}

	.channel-management-grid{
		grid-template-columns:1fr;
		gap:30px;
	}

	.channel-management-closing{
		margin-top:50px;
	}

	.commercial-areas{
		min-height:1100px;
		padding-top:70px;
		padding-bottom:70px;
	}

	.commercial-areas-title{
		font-size:30px;
		line-height:34px;
	}

	.commercial-areas-grid{
		grid-template-columns:1fr;
	}

	.commercial-area-card{
		min-height:210px;
	}

	.commercial-leadership{
		min-height:700px;
		padding-top:70px;
		padding-bottom:70px;
	}

	.commercial-leadership-container{
		padding:0;
	}

	.commercial-leadership-title{
		font-size:30px;
		line-height:34px;
	}

	.commercial-leadership-main{
		grid-template-columns:1fr;
		gap:50px;
	}

	.commercial-leadership-closing{
		margin-top:60px;
	}

	.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;
	}
	
	.consumer-experience-list,
.commercial-models-list{
	width:100%;
	margin-left:0;
	margin-right:0;
}

.consumer-experience-list > p{
	margin-left:0;
}

.consumer-experience-point{
	grid-template-columns:60px 1fr;
}

.commercial-models-point{
	padding-right:0;
}

.channel-management-title-row{
	grid-template-columns:60px auto 60px;
	column-gap:12px;
}

.channel-management-title-line{
	width:60px;
}

.commercial-areas-grid{
	grid-template-columns:1fr;
	gap:20px;
}

.commercial-leadership-prompt{
	width:100%;
	margin-left:0;
	grid-template-columns:80px 1fr;
}

.commercial-hero-title{
	width:100%;
}

.commercial-hero-title-top,
.commercial-hero-title-main{
	white-space:normal;
}

}

/* ==================================================
   PÁGINA ARTÍCULO 05: FIN
================================================== */