/* PPO Indacochea - Hero (mobile-first: Phone -> Tablet 768px -> Desktop 1440px) */

.ppo-hero-row.et_pb_row {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}
.ppo-hero-row > .et_pb_column {
	padding: 0;
}

.ppo-hero {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.ppo-hero__slide {
	display: none;
	position: relative;
	width: 100%;
	min-height: 640px;
	background-size: cover;
	background-position: center;
}
.ppo-hero__slide.is-active {
	display: flex;
	flex-direction: column;
}

.ppo-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 51, 96, 0.55), rgba(0, 51, 96, 0.8));
}

/*
 * Mismo contenedor que el Row del header (1280px, gutter 24px) para que el
 * borde izquierdo del contenido coincida con el logo.
 * Phone: una sola columna apilada.
 */
.ppo-hero__content {
	position: relative;
	z-index: 2;
	flex: 1;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 96px 24px 56px;
	display: flex;
	flex-direction: column;
}

.ppo-hero__title {
	order: 1;
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	color: #FFF5E9;
	font-size: 34px;
	line-height: 1.15;
	margin: 0 0 20px;
}

.ppo-hero__rail {
	order: 2;
	display: flex;
	align-items: center;
	color: #FFF5E9;
	margin-bottom: 16px;
}

.ppo-hero__subtitle {
	order: 3;
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #FFF5E9;
	margin: 0;
}

.ppo-hero__ctas {
	order: 4;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 64px;
	margin-top: auto;
	padding-top: 40px;
}

.ppo-hero__cta {
	font-family: 'Barlow', sans-serif;
	font-size: 16px;
	color: #FFF5E9;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 14px;
}
.ppo-hero__cta svg {
	transition: transform .2s ease;
}
.ppo-hero__cta:hover svg {
	transform: translateX(3px);
}

.ppo-hero__social {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #FFF5E9;
	color: #003360;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ppo-hero__rail-line,
.ppo-hero__scroll,
.ppo-hero__scroll-arrow,
.ppo-hero__arrow {
	display: none;
}

/* Tablet (768px): grilla de 12 columnas */
@media (min-width: 768px) {
	.ppo-hero__slide {
		min-height: 760px;
	}
	.ppo-hero__content {
		display: grid;
		grid-template-columns: repeat(12, minmax(0, 1fr));
		grid-template-rows: auto auto 1fr;
		column-gap: 24px;
		padding: 140px 24px 80px;
	}

	/* Columna 1: chevron izquierdo, a la altura del título */
	.ppo-hero__arrow {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 26px;
		height: 44px;
		padding: 0;
		background: transparent;
		border: none;
		color: #FFF5E9;
		cursor: pointer;
		align-self: center;
	}
	.ppo-hero__arrow--prev {
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
	}

	/* Columna 12: chevron derecho */
	.ppo-hero__arrow--next {
		grid-column: 12;
		grid-row: 1;
		justify-self: end;
	}

	/* Columnas 2-11: texto */
	.ppo-hero__title {
		grid-column: 2 / 12;
		grid-row: 1;
		font-size: 48px;
		max-width: 760px;
		margin-bottom: 0;
	}
	.ppo-hero__subtitle {
		grid-column: 2 / 12;
		grid-row: 2;
		font-size: 18px;
		max-width: 600px;
		margin-top: 56px;
	}
	.ppo-hero__ctas {
		grid-column: 2 / 12;
		grid-row: 3;
		align-self: end;
		margin-top: 0;
		padding-top: 64px;
	}

	/* Columna 1 (debajo del chevron): LinkedIn, línea, SCROLL, flecha */
	.ppo-hero__rail {
		grid-column: 1;
		grid-row: 2 / 4;
		justify-self: start;
		width: 26px;
		flex-direction: column;
		margin: 56px 0 0;
		gap: 12px;
	}
	.ppo-hero__rail-line {
		display: block;
		flex: 1;
		width: 1px;
		min-height: 80px;
		background: #FFF5E9;
		opacity: .8;
	}
	.ppo-hero__scroll {
		display: block;
		writing-mode: vertical-rl;
		transform: rotate(180deg);
		font-family: 'Barlow', sans-serif;
		font-size: 10px;
		letter-spacing: .2em;
		text-transform: uppercase;
	}
	.ppo-hero__scroll-arrow {
		display: block;
	}
}

/* Desktop (1440px) */
@media (min-width: 1440px) {
	.ppo-hero__slide {
		min-height: 860px;
	}
	.ppo-hero__content {
		padding: 180px 24px 96px;
	}
	.ppo-hero__title {
		font-size: 64px;
		max-width: 860px;
	}
	.ppo-hero__subtitle {
		font-size: 19px;
		max-width: 620px;
	}
}
