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

/* ---------- Estructura compartida ---------- */

/* Mismo contenedor que el header y el hero: 1280px + gutter de 24px */
.et_pb_row.ppo-container {
	width: 100% !important;
	max-width: 1280px !important;
	padding: 0 24px !important;
	margin: 0 auto !important;
	box-sizing: border-box;
}
.et_pb_row.ppo-container > .et_pb_column {
	margin-bottom: 0 !important;
}

.ppo-section-title,
.et_pb_text .ppo-section-title {
	font-family: 'Barlow', sans-serif !important;
	font-weight: 300 !important;
	font-size: 56px !important;
	line-height: 1 !important;
	letter-spacing: -0.01em;
	color: #FFF5E9 !important;
	margin: 0 !important;
	padding: 0 !important;
}
.ppo-section-title::after {
	content: "";
	display: block;
	width: 120px;
	height: 4px;
	margin: 16px 0 0 4px;
	background: #00A7E2;
}

.ppo-section-intro,
.et_pb_text .ppo-section-intro {
	font-family: 'Barlow', sans-serif !important;
	font-weight: 400;
	font-size: 16px !important;
	line-height: 1.5 !important;
	color: #FFF5E9 !important;
	max-width: 720px;
	margin: 28px 0 0 !important;
	padding: 0 !important;
}

/* ---------- Situaciones ---------- */

.et_pb_section.ppo-situaciones {
	background-color: #003360 !important;
	padding: 72px 0 !important;
}

.ppo-sit-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
	margin-top: 48px;
}

.ppo-sit-card {
	display: flex;
	flex-direction: column;
	background: #FFF5E9;
	color: #000000;
}

.ppo-sit-card__media {
	position: relative;
	aspect-ratio: 17 / 10;
	max-height: 200px;
}

.ppo-sit-card__share {
	position: absolute;
	right: 20px;
	bottom: 0;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: #FFFFFF;
	border: 1px solid #000000;
	color: #000000;
	cursor: pointer;
}
.ppo-sit-card__share:hover,
.ppo-sit-card__share.is-copied {
	background: #003360;
	border-color: #003360;
	color: #FFF5E9;
}

.ppo-sit-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 16px 20px 24px;
}

.ppo-sit-card__title,
.et_pb_text .ppo-sit-card__title {
	font-family: 'Barlow', sans-serif !important;
	font-weight: 700 !important;
	font-size: 18px !important;
	line-height: 1.3 !important;
	color: #000000 !important;
	margin: 0 0 12px !important;
	padding: 0 !important;
	max-width: 11.5em;
}

.ppo-sit-card__desc,
.et_pb_text .ppo-sit-card__desc {
	font-family: 'Barlow', sans-serif;
	font-size: 15px !important;
	line-height: 1.45 !important;
	max-width: 22em;
	color: #000000 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.ppo-sit-card__cat {
	margin-top: auto;
	padding-top: 24px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	font-family: 'Barlow', sans-serif;
	font-size: 13px;
	line-height: 1.2;
	color: #000000 !important;
	text-decoration: none;
}
.ppo-sit-card__cat svg {
	transition: transform .2s ease;
}
a.ppo-sit-card__cat:hover svg {
	transform: translateX(3px);
}

.ppo-share-toast {
	position: absolute;
	right: 20px;
	bottom: 34px;
	background: #000000;
	color: #FFFFFF;
	font-family: 'Barlow', sans-serif;
	font-size: 12px;
	padding: 4px 8px;
	white-space: nowrap;
}

/* ---------- Tablet (768px) ---------- */
@media (min-width: 768px) {
	.ppo-section-title,
	.et_pb_text .ppo-section-title {
		font-size: 88px !important;
	}
	.ppo-section-title::after {
		width: 180px;
		height: 5px;
		margin-top: 20px;
	}
	.ppo-section-intro,
	.et_pb_text .ppo-section-intro {
		font-size: 18px !important;
		margin-top: 36px !important;
	}

	.et_pb_section.ppo-situaciones {
		padding: 110px 0 !important;
	}
	.ppo-sit-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 16px;
		margin-top: 80px;
	}
	.ppo-sit-card__media {
		max-height: none;
	}
	.ppo-sit-card__share {
		right: 24px;
		width: 30px;
		height: 30px;
	}
	.ppo-sit-card__body {
		padding: 16px 24px 30px;
	}
	.ppo-sit-card__title,
	.et_pb_text .ppo-sit-card__title {
		font-size: 18px !important;
	}
	.ppo-sit-card__desc,
	.et_pb_text .ppo-sit-card__desc {
		font-size: 14px !important;
		max-width: 21em;
	}
	.ppo-sit-card__cat {
		font-size: 12px;
	}
}

/* 3 columnas desde 1024px: en laptops de 1280/1366 dos columnas quedaban lejos del diseño */
@media (min-width: 1024px) {
	.ppo-sit-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 56px 16px;
	}
}

/* ---------- Desktop (1440px) ---------- */
@media (min-width: 1440px) {
	.ppo-section-title,
	.et_pb_text .ppo-section-title {
		font-size: 120px !important;
	}
	.ppo-section-title::after {
		width: 248px;
		height: 6px;
		margin-top: 22px;
		margin-left: 8px;
	}
	.ppo-section-intro,
	.et_pb_text .ppo-section-intro {
		font-size: 19px !important;
		margin-top: 40px !important;
	}

	.et_pb_section.ppo-situaciones {
		padding: 160px 0 140px !important;
	}
	.ppo-sit-grid {
		margin-top: 160px;
	}
}

/* ---------- Botón de contorno (reutilizable) ---------- */

.ppo-btn-row {
	display: flex;
	justify-content: flex-start;
	margin-top: 48px !important;
}
.ppo-btn,
.et_pb_text .ppo-btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 11px 20px;
	border: 1.5px solid currentColor;
	font-family: 'Barlow', sans-serif;
	font-size: 15px;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease;
}
.ppo-btn::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
	margin-right: 3px;
}
.ppo-btn--light,
.et_pb_text .ppo-btn--light {
	color: #FFF5E9 !important;
}
.ppo-btn--light:hover {
	background: #FFF5E9;
	color: #003360 !important;
}

/* ---------- El equipo ---------- */

.et_pb_section.ppo-equipo {
	position: relative;
	padding: 96px 0 72px !important;
	background-color: #00A7E2 !important;
	background-size: max(165%, 1500px) auto !important;
	background-position: center top !important;
	background-repeat: no-repeat !important;
	background-blend-mode: multiply;
}
.et_pb_section.ppo-equipo::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: max(59.6vw, 541px);
	background: linear-gradient(180deg, rgba(0, 167, 226, 0.3) 0%, rgba(0, 167, 226, 0.55) 55%, #00A7E2 100%);
	pointer-events: none;
}
.et_pb_section.ppo-equipo > .et_pb_row {
	position: relative;
	z-index: 1;
}

/* Título con el medio círculo del logo */
.ppo-section-title--mark::before {
	content: "";
	display: inline-block;
	width: .36em;
	height: .72em;
	margin-right: .45em;
	border-radius: 0 .72em .72em 0;
	background: #FFF5E9;
}
.ppo-section-title--mark::after {
	margin-left: 0 !important;
}
.ppo-section-title--light::after {
	background: #FFF5E9;
}

.ppo-statement,
.et_pb_text .ppo-statement {
	font-family: 'Barlow', sans-serif !important;
	font-weight: 400 !important;
	font-size: 28px !important;
	line-height: 1.15 !important;
	color: #FFF5E9 !important;
	max-width: 13em;
	margin: 120px 0 0 !important;
	padding: 0 !important;
}

.ppo-team-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px 12px;
	margin-top: 56px;
}

.ppo-team-card {
	position: relative;
	color: #FFF5E9;
}
/* Toda la tarjeta lleva al perfil: el enlace del nombre se extiende sobre ella */
.ppo-team-card__name a::after {
	content: "";
	position: absolute;
	inset: 0;
}
.ppo-team-card__photo img {
	transition: transform .4s ease;
}
.ppo-team-card:hover .ppo-team-card__photo img {
	transform: scale(1.03);
}
.ppo-team-card:hover .ppo-team-card__name a,
.ppo-team-card__name a:focus-visible {
	color: #003360;
}
.ppo-team-card__name a:focus-visible {
	outline: none;
}
.ppo-team-card:has(a:focus-visible) {
	outline: 2px solid #FFF5E9;
	outline-offset: 4px;
}
.ppo-team-card__photo {
	aspect-ratio: 392 / 479;
	background: #003360 url('ciclorama.jpg') center / cover no-repeat;
	overflow: hidden;
}
.ppo-team-card__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: grayscale(1);
}
.ppo-team-card__name,
.et_pb_text .ppo-team-card__name {
	font-family: 'Barlow', sans-serif !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 1.25 !important;
	color: #FFF5E9 !important;
	margin: 14px 0 2px !important;
	padding: 0 !important;
}
.ppo-team-card__role,
.ppo-team-card__creds {
	font-family: 'Barlow', sans-serif;
	font-size: 13px;
	line-height: 1.35;
	color: #FFF5E9;
	margin: 0 !important;
	padding: 0 !important;
}
.ppo-team-card__creds {
	margin-top: 10px !important;
}
.ppo-team-card a {
	color: inherit;
	text-decoration: none;
}

@media (min-width: 768px) {
	.et_pb_section.ppo-equipo {
		padding: 140px 0 100px !important;
	}
		.ppo-statement,
	.et_pb_text .ppo-statement {
		font-size: 44px !important;
		margin: 180px 0 0 calc((100% - 264px) / 12 + 24px) !important;
	}
	.ppo-team-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 14px;
		margin-top: 80px;
	}
	.ppo-team-card__name,
	.et_pb_text .ppo-team-card__name {
		font-size: 17px !important;
	}
	.ppo-btn-row {
		justify-content: flex-end;
		margin-top: 72px !important;
	}
}

@media (min-width: 1440px) {
	.et_pb_section.ppo-equipo {
		padding: 250px 0 90px !important;
	}
		.ppo-statement,
	.et_pb_text .ppo-statement {
		font-size: 64px !important;
		margin-top: 280px !important;
	}
	.ppo-team-grid {
		margin-top: 104px;
	}
	.ppo-team-card__name,
	.et_pb_text .ppo-team-card__name {
		font-size: 20px !important;
		margin-top: 18px !important;
	}
	.ppo-team-card__role,
	.ppo-team-card__creds {
		font-size: 14px;
	}
	.ppo-team-card__creds {
		margin-top: 14px !important;
	}
	.ppo-btn-row {
		margin-top: 104px !important;
	}
}

/* ---------- Variantes para fondos claros ---------- */

.ppo-section-title--dark,
.et_pb_text .ppo-section-title--dark {
	color: #003360 !important;
}
.ppo-btn--dark,
.et_pb_text .ppo-btn--dark {
	color: #003360 !important;
}
.ppo-btn--dark:hover {
	background: #003360;
	color: #FFF5E9 !important;
}

/* Título + botón en la misma fila (el botón a la altura de la última línea) */
.ppo-section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px 24px;
}
.ppo-section-head .ppo-section-title,
.et_pb_text .ppo-section-head .ppo-section-title {
	line-height: 1.05 !important;
	font-size: min(56px, 11.5vw) !important;
}
.ppo-section-head .ppo-btn {
	margin-bottom: 28px;
}

/* ---------- Reconocimiento internacional ---------- */

.et_pb_section.ppo-reconocimiento {
	position: relative;
	padding: 72px 0 80px !important;
	background-color: #FFFFFF !important;
	background-size: cover !important;
	background-position: right center !important;
	background-repeat: no-repeat !important;
}
.et_pb_section.ppo-reconocimiento::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.35) 100%);
	pointer-events: none;
}
.et_pb_section.ppo-reconocimiento > .et_pb_row {
	position: relative;
	z-index: 1;
}

.ppo-rank-list {
	display: flex;
	gap: 16px;
	margin: 56px -24px 0;
	padding: 0 24px 8px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.ppo-rank-list::-webkit-scrollbar {
	display: none;
}

.ppo-rank {
	flex: 0 0 100%;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.ppo-rank__logo {
	height: 96px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ppo-rank__logo img {
	max-width: min(100%, 180px);
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}
.ppo-rank-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	list-style: none !important;
	margin: 24px 0 0 !important;
	padding: 0 !important;
}
.ppo-rank-dots li {
	padding: 0 !important;
}
.ppo-rank-dots button {
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	border: 1px solid #003360;
	border-radius: 50%;
	background: none;
	cursor: pointer;
}
.ppo-rank-dots button[aria-current="true"] {
	background: #003360;
}

.ppo-rank__cat,
.et_pb_text .ppo-rank__cat {
	font-family: 'Barlow', sans-serif;
	font-size: 14px !important;
	line-height: 1.3 !important;
	color: #003360 !important;
	margin: 24px 0 0 !important;
	padding: 0 !important;
	max-width: 13em;
}

@media (min-width: 768px) {
	.et_pb_section.ppo-reconocimiento {
		padding: 110px 0 130px !important;
	}
	.ppo-section-head .ppo-section-title,
	.et_pb_text .ppo-section-head .ppo-section-title {
		font-size: 88px !important;
	}
	.ppo-section-head .ppo-btn {
		margin-bottom: 40px;
	}
	.ppo-rank-list {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		margin: 110px 0 0;
		padding: 0;
		overflow: visible;
	}
	.ppo-rank {
		flex: none;
	}
	.ppo-rank-dots {
		display: none;
	}
	.ppo-rank__logo {
		height: 88px;
	}
	.ppo-rank__cat,
	.et_pb_text .ppo-rank__cat {
		font-size: 13px !important;
	}
}

@media (min-width: 1440px) {
	.et_pb_section.ppo-reconocimiento {
		padding: 140px 0 180px !important;
	}
	.ppo-section-head .ppo-section-title,
	.et_pb_text .ppo-section-head .ppo-section-title {
		font-size: 120px !important;
	}
	.ppo-section-head .ppo-btn {
		margin-bottom: 52px;
	}
	.ppo-rank-list {
		margin-top: 160px;
	}
	.ppo-rank__logo {
		height: 125px;
	}
	.ppo-rank__logo img {
		max-width: min(100%, 200px);
	}
	.ppo-rank__cat,
	.et_pb_text .ppo-rank__cat {
		font-size: 15px !important;
		margin-top: 32px !important;
	}
}

/* ---------- Novedades ---------- */

.et_pb_section.ppo-novedades {
	padding: 72px 0 80px !important;
	background-color: #003360 !important;
}

/* Frase destacada sin sangría, pegada al título */
.ppo-statement.ppo-statement--flush,
.et_pb_text .ppo-statement.ppo-statement--flush {
	margin: 40px 0 0 !important;
}

.ppo-news-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 56px 16px;
	margin-top: 56px;
}

.ppo-news-card {
	display: flex;
	flex-direction: column;
	color: #FFF5E9;
}
.ppo-news-card a {
	color: inherit !important;
	text-decoration: none;
}
.ppo-news-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #003360;
}
.ppo-news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: transform .4s ease;
}
.ppo-news-card:hover .ppo-news-card__media img {
	transform: scale(1.03);
}
.et_pb_text .ppo-news-card__cat,
.ppo-news-card__cat {
	font-family: 'Barlow', sans-serif;
	font-size: 13px !important;
	line-height: 1.3 !important;
	margin: 24px 0 0 !important;
	padding: 0 !important;
	color: #FFF5E9 !important;
}
.et_pb_text .ppo-news-card__title,
.ppo-news-card__title {
	font-family: 'Barlow', sans-serif !important;
	font-weight: 400 !important;
	font-size: 20px !important;
	line-height: 1.2 !important;
	margin: 8px 0 0 !important;
	padding: 0 !important;
	color: #FFF5E9 !important;
	max-width: 17em;
}
.ppo-news-card__title a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}
.et_pb_text .ppo-news-card__excerpt,
.ppo-news-card__excerpt {
	font-family: 'Barlow', sans-serif;
	font-size: 15px !important;
	line-height: 1.35 !important;
	margin: 16px 0 0 !important;
	padding: 0 !important;
	color: #FFF5E9 !important;
	max-width: 22em;
}
.ppo-news-card__more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-end;
	margin: 24px 20px 0 0;
	font-family: 'Barlow', sans-serif;
	font-size: 14px;
}
.ppo-news-card__more:hover {
	color: #00A7E2 !important;
}

/* Enlace "Ver las novedades": sin borde, solo texto y chevron */
.ppo-btn--plain,
.et_pb_text .ppo-btn--plain {
	border: 0;
	padding: 0;
	font-size: 17px;
}
.ppo-btn--plain.ppo-btn--light:hover {
	background: none;
	color: #00A7E2 !important;
}

.ppo-news-more {
	display: flex;
	justify-content: flex-end;
	margin-top: 56px;
}

@media (min-width: 768px) {
	.et_pb_section.ppo-novedades {
		padding: 110px 0 110px !important;
	}
	.ppo-statement.ppo-statement--flush,
	.et_pb_text .ppo-statement.ppo-statement--flush {
		margin-top: 48px !important;
	}
	.ppo-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 72px 16px;
		margin-top: 80px;
	}
	.ppo-news-card__media {
		aspect-ratio: 390 / 446;
	}
	/* Subgrid: categoría, título, extracto y "Leer" quedan alineados entre tarjetas */
	.ppo-news-grid {
		row-gap: 0;
	}
	.ppo-news-card {
		display: grid;
		grid-row: span 5;
		grid-template-rows: subgrid;
		align-content: start;
		margin-bottom: 72px;
	}
	.ppo-news-card__title {
		align-self: start;
	}
	.ppo-news-card__more {
		align-self: end;
		justify-self: end;
	}
	/* El enlace arranca en la última columna de la grilla */
	.ppo-news-more {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 16px;
		margin-top: 8px;
	}
	.ppo-news-more .ppo-btn {
		grid-column: -2;
		justify-self: start;
	}
}

@media (min-width: 1024px) {
	.ppo-news-grid,
	.ppo-news-more {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.et_pb_text .ppo-news-card__title,
	.ppo-news-card__title {
		font-size: 20px !important;
	}
	.et_pb_text .ppo-news-card__excerpt,
	.ppo-news-card__excerpt {
		font-size: 14px !important;
	}
}

@media (min-width: 1440px) {
	.et_pb_section.ppo-novedades {
		padding: 160px 0 160px !important;
	}
	.ppo-statement.ppo-statement--flush,
	.et_pb_text .ppo-statement.ppo-statement--flush {
		margin-top: 56px !important;
	}
	.ppo-news-grid {
		margin-top: 136px;
	}
	.et_pb_text .ppo-news-card__cat,
	.ppo-news-card__cat {
		font-size: 13px !important;
		margin-top: 32px !important;
	}
	.et_pb_text .ppo-news-card__title,
	.ppo-news-card__title {
		font-size: 22px !important;
	}
	.et_pb_text .ppo-news-card__excerpt,
	.ppo-news-card__excerpt {
		font-size: 15px !important;
		margin-top: 20px !important;
	}
	.ppo-news-card__more {
		margin-top: 36px;
	}
	.ppo-news-more {
		margin-top: 78px;
	}
	.ppo-btn--plain,
	.et_pb_text .ppo-btn--plain {
		font-size: 18px;
	}
}

/* ---------- Contacto ---------- */

.et_pb_section.ppo-contacto {
	position: relative;
	padding: 96px 0 104px !important;
	background-color: #00A7E2 !important;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}
/* Tinte cian sobre la foto de bokeh */
.et_pb_section.ppo-contacto::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(0, 51, 96, .55) 0%, rgba(0, 167, 226, .62) 50%, rgba(0, 167, 226, .5) 100%);
	pointer-events: none;
}
.et_pb_section.ppo-contacto > .et_pb_row {
	position: relative;
	z-index: 1;
}

.ppo-contact {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	margin-top: 48px;
	color: #FFF5E9;
}
.et_pb_text .ppo-contact__lead,
.ppo-contact__lead {
	font-family: 'Barlow', sans-serif !important;
	font-weight: 400 !important;
	font-size: 32px !important;
	line-height: 1.1 !important;
	color: #FFF5E9 !important;
	margin: 0 !important;
	padding: 0 !important;
}
.et_pb_text .ppo-contact__text,
.ppo-contact__text {
	font-family: 'Barlow', sans-serif;
	font-size: 18px !important;
	line-height: 1.55 !important;
	color: #FFF5E9 !important;
	margin: 12px 0 0 !important;
	padding: 0 !important;
	max-width: 30em;
}
.ppo-contact-direct {
	list-style: none !important;
	margin: 32px 0 0 !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.et_pb_text .ppo-contact-direct li,
.ppo-contact-direct li {
	padding: 0 !important;
	font-family: 'Barlow', sans-serif;
	font-size: 18px !important;
	line-height: 1.55 !important;
}
.ppo-contact-direct a {
	color: #FFF5E9 !important;
	text-decoration: none;
	overflow-wrap: anywhere;
}
.ppo-contact-direct a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

@media (min-width: 768px) {
	.et_pb_section.ppo-contacto {
		padding: 140px 0 150px !important;
	}
	.ppo-contact {
		margin-top: 56px;
	}
	.et_pb_text .ppo-contact__lead,
	.ppo-contact__lead {
		font-size: 44px !important;
	}
	.et_pb_text .ppo-contact__text,
	.ppo-contact__text,
	.et_pb_text .ppo-contact-direct li,
	.ppo-contact-direct li {
		font-size: 20px !important;
	}
}

@media (min-width: 1024px) {
	/* Texto en columnas 1–8, datos directos desde la columna 9 */
	.ppo-contact {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		column-gap: 24px;
	}
	.ppo-contact__lead,
	.ppo-contact__text {
		grid-column: 1 / 9;
	}
	.ppo-contact__direct {
		grid-column: 9 / 13;
		grid-row: 2;
	}
	.ppo-contact-direct {
		margin-top: 12px !important;
	}
}

@media (min-width: 1440px) {
	.et_pb_section.ppo-contacto {
		padding: 230px 0 240px !important;
	}
	.ppo-contact {
		margin-top: 64px;
	}
	.et_pb_text .ppo-contact__lead,
	.ppo-contact__lead {
		font-size: 64px !important;
	}
	.et_pb_text .ppo-contact__text,
	.ppo-contact__text,
	.et_pb_text .ppo-contact-direct li,
	.ppo-contact-direct li {
		font-size: 24px !important;
		line-height: 1.6 !important;
	}
}
