/**
 * ESPE Posgrados — frontend (explorador + cards + single).
 * Colores alineados con Grados (ucarr) — verde institucional #006739.
 */
:root {
	--espe-pg-primary: #006739;
	--espe-pg-institutional-green: #006739;
	--espe-pg-primary-soft: rgba(0, 103, 57, 0.08);
	--espe-pg-accent: #0d8f52;
	--espe-pg-border: #e5e7eb;
	--espe-pg-muted: #6b7280;
}

.espe-pg-explorador {
	margin: 1.5rem 0;
}

.espe-pg-explorador.is-espe-pg-loading {
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

/* Estadísticas (misma idea que Grados / ucarr-explorador-stats) */
.espe-pg-explorador-stats {
	background: #fff;
	border-bottom: 1px solid var(--espe-pg-border);
	padding: 1rem 1.25rem;
	margin: 0 0 0;
}
.espe-pg-explorador-stats-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	text-align: center;
	box-sizing: border-box;
}
@media (max-width: 768px) {
	.espe-pg-explorador-stats {
		padding: 0.65rem 0.85rem;
	}
	.espe-pg-explorador-stats-inner {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0.4rem 0.35rem;
	}
}
.espe-pg-stat {
	display: block;
	min-width: 0;
}
.espe-pg-stat-value {
	display: block;
	font-size: clamp(1rem, 3.2vw, 1.75rem);
	font-weight: 700;
	color: var(--espe-pg-institutional-green);
	line-height: 1.1;
}
.espe-pg-stat-label {
	display: block;
	font-size: clamp(0.6rem, 2vw, 0.8rem);
	color: var(--espe-pg-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-top: 0.25rem;
}

/* Barra sticky: filtros + resumen (como Grados) */
.espe-pg-explorador-toolbar-wrap {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--espe-pg-border);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	margin: 0 0 1.75rem;
	padding: 1rem 0;
}

.espe-pg-filtros-top.espe-pg-filtros-explorador {
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
}

.espe-pg-filtros-explorador-row {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
	box-sizing: border-box;
	align-items: stretch;
}
@media (min-width: 1024px) {
	.espe-pg-filtros-explorador-row {
		flex-direction: row;
		align-items: center;
		flex-wrap: nowrap;
		gap: 0.65rem;
	}
}

.espe-pg-filtros-search-wrap {
	flex: 1;
	min-width: 0;
}
@media (min-width: 1024px) {
	.espe-pg-filtros-explorador .espe-pg-filtros-search-wrap {
		flex: 0 1 13rem;
		max-width: 16rem;
		min-width: 9rem;
	}
	.espe-pg-filtros-explorador .espe-pg-filtros-selects {
		flex: 1 1 auto;
		min-width: 0;
		flex-wrap: nowrap;
		align-items: center;
	}
}

.espe-pg-filtros-search-field {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	min-height: 2.75rem;
	border: 1px solid var(--espe-pg-border);
	border-radius: 0.5rem;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.espe-pg-filtros-search-field:focus-within {
	border-color: var(--espe-pg-primary);
	box-shadow: 0 0 0 3px rgba(0, 103, 57, 0.15);
}
.espe-pg-filtros-search-icon {
	flex-shrink: 0;
	width: 2.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--espe-pg-muted);
	pointer-events: none;
}
.espe-pg-svg-icon {
	display: block;
	vertical-align: middle;
}
.espe-pg-filtros-search-input {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	max-width: none;
	height: auto;
	min-height: 2.75rem;
	padding: 0.5rem 0.75rem 0.5rem 0;
	margin: 0;
	border: none !important;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 0.875rem;
	line-height: 1.35;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}
.espe-pg-filtros-search-input:focus {
	outline: none;
	box-shadow: none !important;
}

.espe-pg-filtros-selects {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.espe-pg-filtros-clear {
	display: inline-flex;
	align-items: center;
	height: 2.75rem;
	padding: 0 1rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(185, 28, 28, 0.35);
	color: #b91c1c;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s;
	white-space: nowrap;
	box-sizing: border-box;
}
.espe-pg-filtros-clear:hover {
	background: rgba(185, 28, 28, 0.06);
}
@media (max-width: 1023px) {
	.espe-pg-filtro-select-wrap {
		flex: 1 1 auto;
		min-width: min(100%, 10rem);
	}
}

.espe-pg-filtro-select-wrap {
	display: inline-flex;
	align-items: stretch;
	flex-direction: row;
	min-height: 2.75rem;
	border: 1px solid var(--espe-pg-border);
	border-radius: 0.5rem;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.espe-pg-filtro-select-wrap--active {
	border-color: rgba(0, 103, 57, 0.45);
	background: var(--espe-pg-primary-soft);
}
.espe-pg-filtro-select-wrap:focus-within {
	outline: none;
	border-color: var(--espe-pg-primary);
	box-shadow: 0 0 0 3px rgba(0, 103, 57, 0.12);
}
.espe-pg-filtro-select-wrap--active:focus-within {
	border-color: var(--espe-pg-primary);
}
.espe-pg-filtro-select-ico {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.25rem;
	padding-left: 0.5rem;
	color: var(--espe-pg-muted);
	pointer-events: none;
}
.espe-pg-filtro-select-wrap--active .espe-pg-filtro-select-ico {
	color: var(--espe-pg-primary);
}
.espe-pg-filtro-select-chevron {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.75rem;
	padding-right: 0.35rem;
	color: var(--espe-pg-muted);
	pointer-events: none;
}
.espe-pg-filtro-select-wrap--active .espe-pg-filtro-select-chevron {
	color: var(--espe-pg-primary);
}
.espe-pg-filtro-select-native {
	flex: 1 1 auto;
	min-width: 6.5rem;
	max-width: min(12rem, 100%);
	min-height: 2.75rem;
	height: auto;
	align-self: stretch;
	padding: 0.35rem 0.35rem 0.35rem 0;
	margin: 0 !important;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-image: none !important;
	font-size: 0.875rem;
	line-height: 1.35;
	cursor: pointer;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	box-shadow: none !important;
	color: #111827;
	color-scheme: light;
	box-sizing: border-box;
}
.espe-pg-filtro-select-wrap--active .espe-pg-filtro-select-native {
	color: var(--espe-pg-primary);
	font-weight: 600;
}
.espe-pg-filtro-select-native:focus,
.espe-pg-filtro-select-native:focus-visible,
.espe-pg-filtro-select-native:active {
	outline: none !important;
	box-shadow: none !important;
}

/* Explorador: <select> a pantalla completa en el pill (clic en toda la superficie). */
.espe-pg-filtros-top.espe-pg-filtros-explorador .espe-pg-filtro-select-wrap {
	position: relative;
	min-width: 0;
	flex: 1 1 7rem;
}
.espe-pg-filtros-top.espe-pg-filtros-explorador .espe-pg-filtro-select-ico,
.espe-pg-filtros-top.espe-pg-filtros-explorador .espe-pg-filtro-select-chevron {
	position: relative;
	z-index: 2;
}
.espe-pg-filtros-top.espe-pg-filtros-explorador .espe-pg-filtro-select-native {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	flex: none;
	align-self: auto;
	height: 100%;
	z-index: 1;
	padding: 0.35rem 1.85rem 0.35rem 2.35rem;
}

a.espe-pg-explorador-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-height: 2.75rem;
	padding: 0 1rem;
	border-radius: 0.5rem;
	background: var(--espe-pg-primary) !important;
	border: 1px solid var(--espe-pg-primary) !important;
	color: #fff !important;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	box-sizing: border-box;
	align-self: center;
	transition: background 0.15s, border-color 0.15s, opacity 0.15s;
}
a.espe-pg-explorador-cta:hover,
a.espe-pg-explorador-cta:focus {
	background: #005530 !important;
	border-color: #005530 !important;
	color: #fff !important;
	text-decoration: none;
	opacity: 0.95;
}
@media (min-width: 1024px) {
	a.espe-pg-explorador-cta.espe-pg-explorador-cta--end {
		margin-left: auto;
	}
}
@media (max-width: 640px) {
	a.espe-pg-explorador-cta {
		width: 100%;
		white-space: normal;
		text-align: center;
	}
	a.espe-pg-explorador-cta.espe-pg-explorador-cta--end {
		margin-left: 0;
	}
}

.espe-pg-explorador-summary {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0.75rem 1rem 0;
	font-size: 0.875rem;
	color: var(--espe-pg-muted);
	box-sizing: border-box;
}
.espe-pg-explorador-summary-icon {
	display: flex;
	color: var(--espe-pg-muted);
}
.espe-pg-explorador-summary-text strong {
	color: #111827;
	font-weight: 700;
}

.espe-pg-explorador-layout {
	display: grid;
	grid-template-columns: minmax(200px, 260px) 1fr;
	gap: 1.5rem 2rem;
	align-items: start;
}
@media (max-width: 782px) {
	.espe-pg-explorador-layout {
		grid-template-columns: 1fr;
	}
}

.espe-pg-sidebar-nav {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}
.espe-pg-sidebar-link {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.5rem 0.65rem;
	border-radius: 8px;
	text-decoration: none;
	color: #1f2937;
	border: 1px solid transparent;
	transition: background 0.12s ease, border-color 0.12s ease;
	min-width: 0;
}
.espe-pg-sidebar-text {
	flex: 1 1 auto;
	min-width: 0;
}
.espe-pg-sidebar-count {
	margin-left: auto;
	flex-shrink: 0;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--espe-pg-primary);
	line-height: 1;
}
.espe-pg-sidebar-link:hover {
	background: #f9fafb;
	border-color: var(--espe-pg-border);
}
.espe-pg-sidebar-link.is-active {
	background: var(--espe-pg-primary-soft);
	border-color: rgba(0, 103, 57, 0.35);
	color: var(--espe-pg-primary);
	font-weight: 600;
}
.espe-pg-sidebar-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.espe-pg-sidebar-icon .espe-pg-area-icon--svg img {
	max-width: 32px;
	max-height: 32px;
	object-fit: contain;
}
.espe-pg-area-icon--placeholder {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(0, 103, 57, 0.18), rgba(0, 103, 57, 0.06));
}

.espe-pg-area-section {
	margin-bottom: 2.5rem;
}
.espe-pg-area-head {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 1rem;
}
.espe-pg-area-icon-wrap {
	flex-shrink: 0;
}
.espe-pg-area-title {
	margin: 0;
	font-size: 1.35rem;
}
.espe-pg-area-sub {
	margin: 0.15rem 0 0;
	font-size: 0.88rem;
	color: var(--espe-pg-muted);
}

.espe-pg-programas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.1rem 1.25rem;
}

.espe-pg-card {
	height: 100%;
	border: 1px solid var(--espe-pg-border);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.15s ease;
}
.espe-pg-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.espe-pg-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}
.espe-pg-card-thumb img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
}
.espe-pg-card-body {
	padding: 1rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.espe-pg-card-title {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.25;
}
.espe-pg-card-excerpt {
	margin: 0;
	font-size: 0.88rem;
	color: var(--espe-pg-muted);
	line-height: 1.4;
}
.espe-pg-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-top: auto;
	padding-top: 0.35rem;
}
.espe-pg-tag {
	font-size: 0.72rem;
	padding: 0.2rem 0.5rem;
	border-radius: 999px;
	font-weight: 600;
}
.espe-pg-tag--mod {
	background: rgba(0, 103, 57, 0.1);
	color: var(--espe-pg-primary);
}
.espe-pg-tag--campus {
	background: var(--espe-pg-primary-soft);
	color: var(--espe-pg-primary);
}

.espe-pg-explorador-empty,
.espe-pg-explorador-empty--inline {
	color: var(--espe-pg-muted);
	margin: 1rem 0;
}

/* Single programa */
.espe-pg-single-programa {
	max-width: 900px;
	margin: 0 auto;
}
/* Layout Lovable: hero y CTA a ancho completo; cuerpo centrado */
.espe-pg-single-programa--lovable {
	max-width: none;
	margin: 0;
	padding: 0;
	width: 100%;
	box-sizing: border-box;
}
.espe-pg-single-programa--lovable .espe-pg-el-hero {
	border-radius: 0;
	margin: 0 0 2rem;
}
.espe-pg-single-programa__main {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1.25rem 2rem;
	box-sizing: border-box;
}
.espe-pg-single-programa--lovable .espe-pg-el-cta-final {
	border-radius: 0;
	margin: 0;
	width: 100%;
	box-sizing: border-box;
}
.espe-pg-single-programa--elementor {
	max-width: none;
	margin: 0;
}
.espe-pg-single-content--extra {
	margin-top: 1.5rem;
}
.espe-pg-single-title {
	margin-top: 0;
}
.espe-pg-single-meta p {
	margin: 0.35rem 0;
}
.espe-pg-single-block {
	margin: 2rem 0;
}
.espe-pg-single-block h2 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

/* Profesores bloque */
.espe-pg-profesores-title {
	font-size: 1.2rem;
	margin: 2rem 0 1rem;
}
.espe-pg-profesores-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
}
.espe-pg-profesor-card {
	border: 1px solid var(--espe-pg-border);
	border-radius: 10px;
	padding: 1rem;
	text-align: center;
	height: 100%;
	box-sizing: border-box;
}
.espe-pg-profesor-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
}
.espe-pg-profesor-photo img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #bfdbfe;
}
.espe-pg-profesor-photo--empty {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: #f3f4f6;
	border: 3px solid #e5e7eb;
}
.espe-pg-profesor-name {
	font-size: 1rem;
}
.espe-pg-profesor-degree {
	font-size: 0.82rem;
	color: var(--espe-pg-muted);
}
.espe-pg-profesor-mail {
	display: inline-block;
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: var(--espe-pg-primary);
}

.espe-pg-profesor-badge {
	display: inline-block;
	margin-top: 0.15rem;
	font-size: 0.7rem;
	font-weight: 600;
	padding: 0.15rem 0.5rem;
	border-radius: 999px;
	background: #eef2ff;
	color: #4338ca;
}
.espe-pg-profesor-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	justify-content: center;
	margin-top: 0.5rem;
}
.espe-pg-profesor-linkedin {
	font-size: 0.85rem;
	color: #0a66c2;
	text-decoration: none;
}
.espe-pg-profesor-linkedin:hover {
	text-decoration: underline;
}

/* Elementor / shortcodes ficha programa (Lovable-like) */
.espe-pg-el-hero {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	margin: 0 0 2rem;
	padding: 2.25rem 1.75rem;
	background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 55%, #134e4a 100%);
	color: #f8fafc;
	box-sizing: border-box;
}
.espe-pg-el-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--espe-pg-hero-bg, none) center / cover no-repeat;
	opacity: 0.22;
	pointer-events: none;
}
.espe-pg-el-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
}
.espe-pg-el-hero__badge {
	display: inline-block;
	margin: 0 0 0.65rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.25rem 0.6rem;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.espe-pg-el-hero__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.65rem, 4vw, 2.25rem);
	line-height: 1.15;
}
.espe-pg-el-hero__subtitle {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	opacity: 0.92;
	line-height: 1.45;
}
.espe-pg-el-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	margin-bottom: 1.25rem;
}
.espe-pg-el-hero__area {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
}
.espe-pg-el-hero__area .espe-pg-area-icon--svg img {
	filter: brightness(0) invert(1);
	opacity: 0.9;
}
.espe-pg-el-hero__area-name {
	font-weight: 600;
}
.espe-pg-el-tax {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}
.espe-pg-el-tax--list {
	flex-direction: column;
	align-items: flex-start;
}
.espe-pg-el-tax-item .espe-pg-el-tax-name {
	display: inline-block;
	font-size: 0.72rem;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.22);
	font-weight: 600;
}
.espe-pg-el-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}
.espe-pg-el-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.2rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
	box-sizing: border-box;
}
.espe-pg-el-btn--primary {
	background: #fff;
	color: #0f172a;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.espe-pg-el-btn--primary:hover {
	transform: translateY(-1px);
}
.espe-pg-el-btn--ghost {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.55);
}
.espe-pg-el-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
}

.espe-pg-el-info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 1rem;
	margin: 0 0 2rem;
}
.espe-pg-el-info-card {
	border: 1px solid var(--espe-pg-border);
	border-radius: 10px;
	padding: 1rem;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.espe-pg-el-info-card__label {
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--espe-pg-muted);
	font-weight: 700;
}
.espe-pg-el-info-card__value {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: #111827;
	line-height: 1.35;
}

.espe-pg-el-block {
	margin: 2rem 0;
}
.espe-pg-el-block__title {
	font-size: 1.25rem;
	margin: 0 0 0.65rem;
	color: #0f172a;
}
.espe-pg-el-block__body {
	font-size: 0.98rem;
	line-height: 1.6;
	color: #374151;
}
.espe-pg-el-block__body p:first-child {
	margin-top: 0;
}
.espe-pg-el-block__body p:last-child {
	margin-bottom: 0;
}

.espe-pg-el-mv {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}
.espe-pg-el-list {
	margin: 0;
	padding-left: 1.25rem;
	line-height: 1.55;
	color: #374151;
}
.espe-pg-el-list li {
	margin: 0.35rem 0;
}

.espe-pg-el-malla-periodos {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.espe-pg-el-malla-details {
	border: 1px solid var(--espe-pg-border);
	border-radius: 8px;
	padding: 0.35rem 0.75rem;
	background: #fafafa;
}
.espe-pg-el-malla-summary {
	cursor: pointer;
	font-weight: 600;
	color: #1e293b;
}
.espe-pg-el-malla-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 0.65rem;
	font-size: 0.9rem;
}
.espe-pg-el-malla-table th,
.espe-pg-el-malla-table td {
	border-bottom: 1px solid #e5e7eb;
	padding: 0.45rem 0.35rem;
	text-align: left;
}
.espe-pg-el-malla-table th {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--espe-pg-muted);
}

.espe-pg-el-cta-final {
	margin: 2.5rem 0;
	padding: 2rem 1.5rem;
	border-radius: 14px;
	background: linear-gradient(120deg, #eff6ff 0%, #ecfdf5 100%);
	border: 1px solid var(--espe-pg-border);
	text-align: center;
}
.espe-pg-el-cta-final__inner {
	max-width: 560px;
	margin: 0 auto;
}
.espe-pg-el-cta-final__title {
	margin: 0 0 0.5rem;
	font-size: 1.35rem;
	color: #0f172a;
}
.espe-pg-el-cta-final__text {
	color: #374151;
	font-size: 0.98rem;
	line-height: 1.55;
}
.espe-pg-el-cta-final__text p:first-child {
	margin-top: 0;
}
.espe-pg-el-cta-final__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: center;
	margin-top: 1.25rem;
}
.espe-pg-el-cta-final .espe-pg-el-btn--primary {
	background: var(--espe-pg-primary);
	color: #fff;
}
.espe-pg-el-cta-final .espe-pg-el-btn--ghost {
	color: var(--espe-pg-primary);
	border-color: var(--espe-pg-primary);
	background: #fff;
}
