/**
 * Portada LideraFest 2026.
 *
 * Todos los selectores están encapsulados para no alterar el blog, el área
 * administrativa ni las vistas públicas de Certificados.
 */

body.liderafest-home-page {
	margin: 0;
	background: #fff;
}

body.liderafest-home-page .wp-site-blocks,
body.liderafest-home-page .wp-block-shortcode {
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.liderafest-home-page .wp-site-blocks > *,
body.liderafest-home-page main,
body.liderafest-home-page .entry-content,
body.liderafest-home-page .wp-block-post-content {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.lf-home {
	--lfh-navy: #0d2138;
	--lfh-navy-2: #123754;
	--lfh-teal: #25b8b4;
	--lfh-teal-dark: #128f8d;
	--lfh-coral: #f36b43;
	--lfh-gold: #f2b632;
	--lfh-ink: #172230;
	--lfh-muted: #627080;
	--lfh-line: #dce6ea;
	--lfh-cream: #fffaf3;
	--lfh-mist: #f5f9fa;
	--lfh-white: #fff;
	--lfh-shell: 1320px;
	--lfh-radius: 24px;
	--lfh-shadow: 0 20px 55px rgba(13, 33, 56, 0.1);
	width: 100%;
	color: var(--lfh-ink);
	background: var(--lfh-white);
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow: clip;
	-webkit-font-smoothing: antialiased;
	scroll-margin-top: 104px;
}

.lf-home *,
.lf-home *::before,
.lf-home *::after {
	box-sizing: border-box;
}

.lf-home img,
.lf-home svg {
	display: block;
	max-width: 100%;
}

.lf-home a {
	color: inherit;
	text-decoration: none;
}

.lf-home h1,
.lf-home h2,
.lf-home h3,
.lf-home p,
.lf-home ul {
	margin-top: 0;
	max-width: none;
	word-break: normal;
	overflow-wrap: normal;
	writing-mode: horizontal-tb;
}

.lf-home article,
.lf-home figure {
	max-width: none;
	margin: 0;
}

.lfh-shell {
	width: min(calc(100% - 48px), var(--lfh-shell));
	margin-inline: auto;
}

.lfh-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 12px 18px;
	border-radius: 10px;
	background: var(--lfh-navy);
	color: var(--lfh-white) !important;
	transform: translateY(-180%);
	transition: transform 0.2s ease;
}

.lfh-skip-link:focus {
	transform: translateY(0);
}

.lfh-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(13, 33, 56, 0.08);
	backdrop-filter: blur(14px);
}

body.admin-bar .lfh-header {
	top: 32px;
}

.lfh-header__inner {
	height: 72px;
	min-height: 72px;
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.lfh-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.lfh-brand img {
	width: 150px;
	height: 58px;
	object-fit: contain;
}

.lfh-nav {
	display: flex !important;
	align-items: center;
	gap: 30px;
	font-size: 0.91rem;
	font-weight: 700;
	color: #263342;
}

.lfh-nav > a:not(.lfh-nav__cta) {
	position: relative;
	padding-block: 24px 22px;
}

.lfh-nav > a:not(.lfh-nav__cta)::after {
	content: "";
	position: absolute;
	right: 50%;
	bottom: 15px;
	left: 50%;
	height: 2px;
	border-radius: 2px;
	background: var(--lfh-teal);
	transition: right 0.2s ease, left 0.2s ease;
}

.lfh-nav > a:hover::after,
.lfh-nav > a:focus-visible::after,
.lfh-nav > a.is-current::after {
	right: 0;
	left: 0;
}

.lfh-nav__cta {
	display: inline-flex;
	align-items: center;
	min-height: 43px;
	padding: 10px 21px;
	border-radius: 12px;
	background: var(--lfh-teal);
	color: var(--lfh-white) !important;
	box-shadow: 0 8px 22px rgba(37, 184, 180, 0.24);
	transition: background 0.2s ease, transform 0.2s ease;
}

.lfh-nav__cta:hover,
.lfh-nav__cta:focus-visible {
	background: var(--lfh-teal-dark);
	transform: translateY(-2px);
}

.lfh-menu-toggle {
	display: none !important;
	width: 46px;
	height: 46px;
	padding: 11px;
	border: 1px solid var(--lfh-line);
	border-radius: 12px;
	background: var(--lfh-white);
}

.lfh-menu-toggle > span:not(.screen-reader-text) {
	width: 100%;
	height: 2px;
	margin-block: 4px;
	border-radius: 999px;
	background: var(--lfh-navy);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.lfh-hero {
	position: relative;
	background:
		linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 55%),
		var(--lfh-cream);
	isolation: isolate;
}

.lfh-hero::before,
.lfh-hero::after {
	content: "";
	position: absolute;
	z-index: -1;
	border: 1px solid rgba(242, 182, 50, 0.25);
	border-radius: 50%;
}

.lfh-hero::before {
	width: 480px;
	height: 480px;
	top: -315px;
	left: 20%;
}

.lfh-hero::after {
	width: 760px;
	height: 760px;
	right: -540px;
	bottom: -570px;
}

.lfh-hero__grid {
	min-height: 470px !important;
	display: grid !important;
	grid-template-columns: minmax(350px, 0.82fr) minmax(520px, 1.18fr) !important;
	align-items: center;
	gap: 26px;
	padding-block: 34px 26px;
}

.lfh-hero__copy {
	position: relative;
	z-index: 2;
	min-width: 0;
	padding-block: 0;
}

.lfh-kicker,
.lfh-eyebrow {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 18px;
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.105em;
	text-transform: uppercase;
}

.lfh-kicker {
	padding: 7px 13px;
	border-radius: 999px;
}

.lfh-kicker--gold {
	background: var(--lfh-gold);
	color: var(--lfh-navy);
}

.lfh-eyebrow {
	color: var(--lfh-teal-dark);
}

.lfh-hero h1 {
	margin: 0 0 24px;
	color: var(--lfh-navy);
	font-size: clamp(3.1rem, 4vw, 4rem) !important;
	font-weight: 850;
	line-height: 0.94;
	letter-spacing: -0.065em;
}

.lfh-hero h1 > span {
	display: block;
}

.lfh-dot--teal {
	color: var(--lfh-teal);
}

.lfh-dot--coral {
	color: var(--lfh-coral);
}

.lfh-dot--gold {
	color: var(--lfh-gold);
}

.lfh-hero__lead {
	max-width: 510px;
	margin-bottom: 28px;
	color: #354352;
	font-size: 1.08rem;
	line-height: 1.7;
}

.lfh-actions {
	display: flex !important;
	align-items: center;
	flex-wrap: wrap;
	gap: 22px;
}

.lfh-button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 22px;
	border: 0;
	border-radius: 12px;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lfh-button svg,
.lfh-link-arrow svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfh-button:hover,
.lfh-button:focus-visible {
	transform: translateY(-2px);
}

.lfh-button--primary {
	background: var(--lfh-teal);
	color: var(--lfh-white) !important;
	box-shadow: 0 12px 25px rgba(37, 184, 180, 0.25);
}

.lfh-button--primary:hover,
.lfh-button--primary:focus-visible {
	background: var(--lfh-teal-dark);
	box-shadow: 0 14px 30px rgba(37, 184, 180, 0.3);
}

.lfh-button--coral {
	background: var(--lfh-coral);
	color: var(--lfh-white) !important;
	box-shadow: 0 12px 28px rgba(243, 107, 67, 0.25);
}

.lfh-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--lfh-navy);
	font-size: 0.94rem;
	font-weight: 800;
}

.lfh-link-arrow:hover,
.lfh-link-arrow:focus-visible {
	color: var(--lfh-teal-dark);
}

.lfh-event-meta {
	display: flex !important;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin-top: 34px;
	color: #334151;
	font-size: 0.9rem;
	font-weight: 700;
}

.lfh-event-meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.lfh-event-meta span + span::before {
	content: "";
	width: 4px;
	height: 4px;
	margin-right: 8px;
	border-radius: 50%;
	background: var(--lfh-navy);
	opacity: 0.35;
}

.lfh-event-meta svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: var(--lfh-navy);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfh-hero__visual {
	align-self: center;
	min-width: 0;
}

.lfh-hero__visual img {
	width: 100% !important;
	max-width: none !important;
	height: 390px !important;
	margin: 0 !important;
	border-radius: 24px;
	object-fit: cover !important;
	object-position: center 47%;
	filter: drop-shadow(0 24px 35px rgba(13, 33, 56, 0.11));
}

.lfh-facts {
	position: relative;
	z-index: 3;
	padding-block: 20px;
	border-top: 1px solid rgba(13, 33, 56, 0.08);
	border-bottom: 1px solid rgba(13, 33, 56, 0.08);
	background: var(--lfh-white);
}

.lfh-facts__grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 16px;
}

.lfh-fact {
	min-height: 80px;
	display: flex !important;
	flex-direction: row !important;
	align-items: center;
	gap: 16px;
	margin: 0;
	padding: 14px 18px;
	border: 1px solid var(--lfh-line);
	border-radius: 18px;
	background: var(--lfh-white);
	box-shadow: 0 8px 24px rgba(13, 33, 56, 0.04);
}

.lfh-fact p {
	margin: 0;
	color: var(--lfh-navy);
	font-size: 1rem;
	line-height: 1.23;
}

.lfh-fact strong,
.lfh-fact span {
	display: block;
}

.lfh-fact strong {
	font-weight: 850;
}

.lfh-icon {
	width: 54px;
	height: 54px;
	display: inline-grid;
	flex: 0 0 54px;
	place-items: center;
	border-radius: 50%;
	color: var(--lfh-white);
}

.lfh-icon svg {
	width: 31px;
	height: 31px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfh-icon .lfh-icon-fill,
.lfh-axis__icon .lfh-icon-fill {
	fill: currentColor !important;
	stroke: none !important;
}

.lfh-icon--teal {
	background: var(--lfh-teal);
}

.lfh-icon--coral {
	background: var(--lfh-coral);
}

.lfh-icon--gold {
	background: var(--lfh-gold);
}

.lfh-section {
	padding-block: 56px;
	scroll-margin-top: 104px;
}

.lfh-program,
.lfh-registration {
	scroll-margin-top: 104px;
}

.lfh-about {
	padding-block: 26px 12px;
	background: var(--lfh-white);
}

.lfh-about__grid {
	display: grid !important;
	grid-template-columns: minmax(320px, 0.78fr) minmax(600px, 1.22fr) !important;
	align-items: center;
	gap: 44px;
}

.lfh-section-copy h2,
.lfh-section-heading h2,
.lfh-impact h2,
.lfh-blog h2,
.lfh-registration h2 {
	margin-bottom: 22px;
	color: var(--lfh-navy);
	font-size: clamp(2rem, 2.75vw, 2.75rem);
	font-weight: 850;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.lfh-section-copy > p:last-child {
	margin-bottom: 0;
	color: var(--lfh-muted);
	font-size: 1.02rem;
	line-height: 1.8;
}

.lfh-method {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	align-items: end;
	gap: 18px;
}

.lfh-method-card {
	position: relative;
	min-height: 350px;
	padding: 21px 19px 16px;
	border: 2px solid currentColor;
	border-radius: 18px;
	background: var(--lfh-white);
	overflow: visible;
	transform: rotate(-1.5deg);
}

.lfh-method-card:nth-child(2) {
	transform: translateY(-10px) rotate(0.8deg);
}

.lfh-method-card:nth-child(3) {
	transform: rotate(2deg);
}

.lfh-method-card--teal {
	color: var(--lfh-teal-dark);
	background: #f1fbfb;
}

.lfh-method-card--coral {
	color: #df5732;
	background: #fff6f2;
}

.lfh-method-card--gold {
	color: #cc8700;
	background: #fffaf0;
}

.lfh-method-card__number {
	position: absolute;
	top: 14px;
	right: 16px;
	font-size: 0.73rem;
	font-weight: 900;
	opacity: 0.5;
}

.lfh-method-card h3 {
	margin-bottom: 8px;
	font-size: 1.24rem;
	font-weight: 850;
}

.lfh-method-card p {
	position: relative;
	z-index: 2;
	min-height: 76px;
	margin-bottom: 12px;
	color: #374452;
	font-size: 0.84rem;
	line-height: 1.48;
}

.lfh-method-card__image {
	position: absolute;
	right: 12px;
	bottom: 12px;
	left: 12px;
	width: calc(100% - 24px);
	height: 185px !important;
	border-radius: 14px;
	object-fit: cover;
	object-position: center 45%;
	box-shadow: 0 9px 24px rgba(13, 33, 56, 0.08);
}

.lfh-method-card:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 52%;
	right: -35px;
	z-index: 5;
	width: 42px;
	height: 34px;
	border-top: 2px dashed rgba(64, 82, 98, 0.45);
	border-radius: 50%;
	pointer-events: none;
	transform: rotate(13deg);
}

.lfh-method-card:nth-child(2)::after {
	top: 56%;
	transform: rotate(-13deg);
}

.lfh-axes {
	padding-top: 24px;
	padding-bottom: 54px;
	background: var(--lfh-white);
}

.lfh-axes .lfh-section-heading {
	max-width: 1100px;
	margin-bottom: 34px;
}

.lfh-axes .lfh-eyebrow {
	display: none !important;
}

.lfh-section-heading {
	max-width: 790px;
	margin-bottom: 38px;
}

.lfh-section-heading h2 {
	font-size: clamp(1.9rem, 2.4vw, 2.5rem);
}

.lfh-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.lfh-section-heading--center .lfh-eyebrow {
	margin-inline: auto;
}

.lfh-axes__grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 16px;
}

.lfh-axis {
	min-height: 124px !important;
	display: grid !important;
	grid-template-columns: 68px minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 16px !important;
	padding: 17px 19px !important;
	border: 1px solid;
	border-radius: 15px;
}

.lfh-axis--teal {
	border-color: rgba(37, 184, 180, 0.36);
	background: #effafa;
}

.lfh-axis--coral {
	border-color: rgba(243, 107, 67, 0.33);
	background: #fff3ee;
}

.lfh-axis--gold {
	border-color: rgba(242, 182, 50, 0.42);
	background: #fff9eb;
}

.lfh-axis__icon {
	width: 66px;
	height: 66px;
	display: grid !important;
	place-items: center;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.76);
	color: var(--lfh-teal-dark);
	grid-column: 1 !important;
	grid-row: 1 !important;
}

.lfh-axis__icon svg {
	width: 49px;
	height: 49px;
	fill: none;
	stroke: var(--lfh-teal-dark);
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfh-axis--coral .lfh-axis__icon svg {
	stroke: var(--lfh-coral);
}

.lfh-axis--gold .lfh-axis__icon svg {
	stroke: #da9100;
}

.lfh-axis--coral .lfh-axis__icon {
	color: var(--lfh-coral);
}

.lfh-axis--gold .lfh-axis__icon {
	color: #da9100;
}

.lfh-axis h3 {
	margin-bottom: 4px;
	color: var(--lfh-navy);
	font-size: 1.08rem;
	font-weight: 850;
}

.lfh-axis > div,
.lfh-axis h3,
.lfh-axis p {
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: normal !important;
}

.lfh-axis > div {
	display: block !important;
	align-self: center !important;
	grid-column: 2 !important;
	grid-row: 1 !important;
}

.lfh-axis p {
	margin: 0;
	color: #50606f;
	font-size: 0.86rem;
	line-height: 1.42;
}

.lfh-program {
	position: relative;
	padding-block: 28px 20px;
	background: #001f40;
	color: var(--lfh-white);
	overflow: hidden;
}

.lfh-program__shell {
	width: min(calc(100% - 48px), 1180px);
}

.lfh-section-heading--light h2 {
	color: var(--lfh-white);
}

.lfh-section-heading--light .lfh-eyebrow {
	color: var(--lfh-gold);
}

.lfh-program__heading {
	margin-bottom: 14px;
}

.lfh-program__heading h2 {
	margin: 0;
	font-size: clamp(1.55rem, 2.1vw, 1.9rem);
	line-height: 1.15;
	font-weight: 850;
}

.lfh-program__grid {
	position: relative;
	z-index: 2;
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	gap: 0;
	align-items: stretch;
}

.lfh-program__grid::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 10%;
	right: 10%;
	height: 2px;
	background: rgba(255, 255, 255, 0.72);
	z-index: 0;
}

.lfh-program__line,
.lfh-program__art {
	display: none !important;
}

.lfh-step {
	position: relative;
	z-index: 1;
	min-width: 0;
	min-height: 330px;
	display: flex !important;
	flex-direction: column;
	align-items: center;
	padding: 0 15px;
	text-align: center;
}

.lfh-step:not(:last-child)::before {
	content: "";
	position: absolute;
	top: 18px;
	right: 0;
	bottom: 0;
	width: 1px;
	background: rgba(255, 255, 255, 0.14);
}

.lfh-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 14px;
	right: -4px;
	z-index: 4;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.lfh-step__number {
	position: relative;
	z-index: 3;
	width: 38px;
	height: 38px;
	display: grid;
	flex: 0 0 38px;
	margin: 0 auto 10px;
	place-items: center;
	border: 3px solid rgba(255, 255, 255, 0.82);
	border-radius: 50%;
	background: var(--lfh-teal);
	color: var(--lfh-white);
	font-weight: 900;
	box-shadow: 0 0 0 7px #001f40;
}

.lfh-step:nth-child(2n) .lfh-step__number,
.lfh-step:nth-child(5) .lfh-step__number {
	background: var(--lfh-coral);
}

.lfh-step:nth-child(3) .lfh-step__number {
	background: var(--lfh-gold);
}

.lfh-step__copy {
	width: 100%;
	min-height: 95px;
}

.lfh-step h3 {
	margin: 0 0 4px;
	color: var(--lfh-white);
	font-size: 0.98rem;
	line-height: 1.2;
	font-weight: 850;
}

.lfh-step p {
	max-width: 190px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.76rem;
	line-height: 1.38;
}

.lfh-step__art {
	width: 100%;
	height: 175px;
	margin: auto 0 0;
	overflow: hidden;
}

.lfh-step__art img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}

.lfh-program__action {
	position: relative;
	z-index: 5;
	display: flex !important;
	justify-content: center;
	margin-top: -2px;
}

.lfh-program__action .lfh-button {
	min-height: 44px;
	padding: 11px 30px;
	box-shadow: 0 9px 20px rgba(0, 0, 0, 0.16);
}

.lfh-impact {
	padding-block: 58px;
	background: var(--lfh-white);
}

.lfh-impact__grid {
	display: grid !important;
	grid-template-columns: minmax(330px, 0.72fr) minmax(570px, 1.28fr) !important;
	align-items: center;
	gap: 44px;
}

.lfh-impact h2 {
	font-size: clamp(2rem, 3vw, 3.1rem);
}

.lfh-stats {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 16px;
	margin-top: 30px;
}

.lfh-stats div {
	min-width: 0;
}

.lfh-stats strong {
	display: block;
	margin-bottom: 4px;
	font-size: 2.55rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.05em;
}

.lfh-stats span {
	display: block;
	color: #50606f;
	font-size: 0.86rem;
	line-height: 1.45;
}

.lfh-stats .is-teal {
	color: var(--lfh-teal);
}

.lfh-stats .is-coral {
	color: var(--lfh-coral);
}

.lfh-stats .is-gold {
	color: var(--lfh-gold);
}

.lfh-impact__visual img {
	width: 100% !important;
	max-width: none !important;
	height: 300px !important;
	border-radius: 24px;
	object-fit: cover !important;
	object-position: center 50%;
	box-shadow: var(--lfh-shadow);
}

.lfh-blog {
	padding-block: 58px;
	border-top: 1px solid var(--lfh-line);
	background: #fbfdfd;
}

.lfh-blog__heading {
	display: flex !important;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 34px;
}

.lfh-blog__heading h2 {
	margin-bottom: 0;
	font-size: clamp(2rem, 2.8vw, 2.75rem);
}

.lfh-blog__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) !important;
	grid-template-rows: repeat(2, 190px) !important;
	gap: 14px;
}

.lfh-post-card {
	display: grid !important;
	min-width: 0 !important;
	min-height: 0 !important;
	border: 1px solid var(--lfh-line);
	border-radius: 22px;
	background: var(--lfh-white);
	overflow: hidden;
	box-shadow: 0 12px 34px rgba(13, 33, 56, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lfh-post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--lfh-shadow);
}

.lfh-post-card--featured {
	grid-row: 1 / span 2 !important;
	grid-template-rows: 200px minmax(0, 1fr) !important;
}

.lfh-post-card--compact {
	grid-template-columns: 190px minmax(0, 1fr) !important;
}

.lfh-post-card--featured .lfh-post-card__media {
	grid-row: 1 !important;
}

.lfh-post-card--featured .lfh-post-card__body {
	grid-row: 2 !important;
}

.lfh-post-card--compact .lfh-post-card__media {
	height: 100% !important;
	grid-column: 1 !important;
	grid-row: 1 !important;
}

.lfh-post-card--compact .lfh-post-card__body {
	grid-column: 2 !important;
	grid-row: 1 !important;
}

.lfh-post-card__media {
	width: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	display: block !important;
	background: var(--lfh-cream);
	overflow: hidden;
}

.lfh-post-card__visual,
.lfh-post-card__visual img,
.lfh-post-card__visual__image,
.lfh-post-card__visual__placeholder,
.lfh-post-card__visual__placeholder svg {
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
}

.lfh-post-card__visual img,
.lfh-post-card__visual__image,
.lfh-post-card__media > img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.35s ease;
}

.lfh-post-card:hover .lfh-post-card__visual img,
.lfh-post-card:hover .lfh-post-card__visual__image {
	transform: scale(1.025);
}

.lfh-post-card__body {
	display: flex !important;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	width: 100% !important;
	max-width: none !important;
	padding: 17px 19px;
}

.lfh-post-card__category {
	margin-bottom: 8px;
	color: var(--lfh-teal-dark) !important;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lfh-post-card h3 {
	margin-bottom: 11px;
	color: var(--lfh-navy);
	font-size: 1.16rem;
	font-weight: 850;
	line-height: 1.22;
	letter-spacing: -0.025em;
}

.lfh-post-card--featured h3 {
	font-size: 1.35rem;
}

.lfh-post-card--compact h3 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.lfh-post-card h3 a:hover,
.lfh-post-card h3 a:focus-visible {
	color: var(--lfh-teal-dark);
}

.lfh-post-card__body > p {
	margin-bottom: 18px;
	color: var(--lfh-muted);
	font-size: 0.92rem;
	line-height: 1.65;
}

.lfh-post-card__time {
	margin-top: auto;
	color: #788592;
	font-size: 0.78rem;
}

.lfh-blog__empty {
	padding: 38px;
	border: 1px dashed var(--lfh-line);
	border-radius: 20px;
	background: var(--lfh-white);
	text-align: center;
}

.lfh-blog__empty p {
	margin: 0;
	color: var(--lfh-muted);
}

.lfh-registration {
	position: relative;
	padding-block: 38px 32px;
	background:
		radial-gradient(circle at 14% 45%, rgba(37, 184, 180, 0.14), transparent 29%),
		linear-gradient(125deg, #0d2138, #103554);
	color: var(--lfh-white);
	overflow: hidden;
}

.lfh-registration__shape {
	position: absolute !important;
	display: block !important;
	border-radius: 50%;
	pointer-events: none;
}

.lfh-registration__shape--one {
	width: 250px !important;
	height: 250px !important;
	top: -145px;
	right: -62px;
	background: var(--lfh-coral) !important;
}

.lfh-registration__shape--two {
	display: none !important;
}

.lfh-registration__dots {
	position: absolute;
	display: block !important;
	z-index: 1;
	top: 28%;
	right: 28px;
	width: 74px;
	height: 176px;
	background-image: radial-gradient(circle, rgba(37, 184, 180, 0.95) 2px, transparent 2.5px);
	background-size: 14px 14px;
	pointer-events: none;
}

.lfh-registration__foliage {
	position: absolute;
	display: block !important;
	z-index: 1;
	bottom: -8px;
	width: 190px !important;
	max-width: none !important;
	margin: 0 !important;
	color: var(--lfh-teal);
	pointer-events: none;
}

.lfh-registration__foliage svg {
	width: 100% !important;
	height: auto !important;
}

.lfh-registration__foliage--left {
	left: -12px;
}

.lfh-registration__foliage--right {
	right: 16px;
	transform: scaleX(-1);
}

.lfh-registration__grid {
	position: relative;
	z-index: 2;
	display: grid !important;
	grid-template-columns: minmax(350px, 0.82fr) minmax(540px, 1.18fr) !important;
	align-items: center;
	gap: 40px;
}

.lfh-registration h2 {
	color: var(--lfh-white);
}

.lfh-registration__copy > p:not(.lfh-kicker) {
	max-width: 520px;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1rem;
	line-height: 1.65;
}

.lfh-checklist {
	display: grid !important;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lfh-checklist li {
	display: flex !important;
	align-items: center;
	gap: 11px;
	font-weight: 650;
}

.lfh-checklist svg {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	padding: 4px;
	border-radius: 7px;
	background: var(--lfh-teal);
	fill: none;
	stroke: var(--lfh-white);
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/*
 * Twenty Twenty-Five y algunos bloques guardados añaden reglas de layout
 * después de la hoja del tema hijo. Estas restricciones mantienen cada
 * componente dentro de su propia cuadrícula y evitan columnas comprimidas.
 */
.lfh-hero__grid > *,
.lfh-facts__grid > *,
.lfh-about__grid > *,
.lfh-method > *,
.lfh-axes__grid > *,
.lfh-program__grid > *,
.lfh-impact__grid > *,
.lfh-blog__grid > *,
.lfh-registration__grid > *,
.lfh-footer__grid > * {
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	margin-inline: 0 !important;
}

.lfh-hero__visual,
.lfh-impact__visual,
.lfh-registration__form {
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
}

.lfh-footer {
	padding-top: 54px;
	background: #071a2d;
	color: rgba(255, 255, 255, 0.76);
}

.lfh-footer__grid {
	display: grid !important;
	grid-template-columns: 1.4fr 0.65fr 0.85fr !important;
	gap: 60px;
	padding-bottom: 45px;
}

.lfh-footer__brand img {
	width: 175px;
	height: 72px;
	margin-bottom: 16px;
	padding: 5px 8px;
	border-radius: 12px;
	background: #fff;
	object-fit: contain;
}

.lfh-footer__brand p {
	max-width: 340px;
	margin: 0;
	font-size: 0.83rem;
	line-height: 1.65;
}

.lfh-footer__social {
	display: flex !important;
	gap: 9px;
	margin-top: 17px;
}

.lfh-footer__social a {
	width: 34px;
	height: 34px;
	display: grid !important;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 50%;
	color: var(--lfh-white);
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lfh-footer__social a:hover,
.lfh-footer__social a:focus-visible {
	border-color: var(--lfh-teal);
	color: var(--lfh-teal);
	transform: translateY(-2px);
}

.lfh-footer__social svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.lfh-footer__social svg .is-fill {
	fill: currentColor;
	stroke: none;
}

.lfh-footer h2 {
	margin-bottom: 16px;
	color: var(--lfh-white);
	font-size: 0.88rem;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.lfh-footer ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.84rem;
}

.lfh-footer a:hover,
.lfh-footer a:focus-visible {
	color: var(--lfh-teal);
}

.lfh-footer__contact li {
	display: flex;
	align-items: center;
	gap: 9px;
}

.lfh-footer__contact svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--lfh-teal);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfh-footer__bottom {
	min-height: 68px;
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.72rem;
}

.lfh-footer__bottom p {
	margin: 0;
}

.lfh-footer__bottom p:last-child {
	display: flex;
	gap: 10px;
}

@media (max-width: 1100px) {
	.lfh-nav {
		gap: 20px;
	}

	.lfh-hero__grid {
		grid-template-columns: minmax(340px, 0.88fr) minmax(470px, 1.12fr) !important;
	}

	.lfh-about__grid,
	.lfh-impact__grid {
		gap: 42px;
	}

	.lfh-registration__grid {
		gap: 48px;
	}
}

@media (max-width: 960px) {
	.lfh-shell {
		width: min(calc(100% - 36px), var(--lfh-shell));
	}

	.lfh-menu-toggle {
		display: block !important;
	}

	.lfh-nav {
		position: absolute;
		top: calc(100% + 1px);
		right: 18px;
		left: 18px;
		display: none !important;
		align-items: stretch;
		gap: 0;
		padding: 12px;
		border: 1px solid var(--lfh-line);
		border-radius: 16px;
		background: #fff;
		box-shadow: var(--lfh-shadow);
	}

	.lfh-nav.is-open {
		display: grid !important;
	}

	.lfh-nav > a:not(.lfh-nav__cta) {
		padding: 13px 12px;
	}

	.lfh-nav > a:not(.lfh-nav__cta)::after {
		display: none;
	}

	.lfh-nav__cta {
		margin-top: 6px;
	}

	.lfh-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.lfh-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
		opacity: 0;
	}

	.lfh-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.lfh-hero__grid {
		grid-template-columns: 1fr !important;
		padding-top: 45px;
	}

	.lfh-hero__copy {
		max-width: 700px;
		margin-inline: auto;
		text-align: center;
	}

	.lfh-hero__lead {
		margin-inline: auto;
	}

	.lfh-actions,
	.lfh-event-meta {
		justify-content: center;
	}

	.lfh-hero__visual img {
		width: min(760px, 100%) !important;
		height: 390px !important;
		margin-inline: auto !important;
	}

	.lfh-facts__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.lfh-about__grid,
	.lfh-impact__grid,
	.lfh-registration__grid {
		grid-template-columns: 1fr !important;
	}

	.lfh-section-copy,
	.lfh-impact__copy,
	.lfh-registration__copy {
		max-width: 720px;
	}

	.lfh-axes__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.lfh-program__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.lfh-program__line {
		display: none;
	}

	.lfh-step {
		min-height: 0;
		padding: 20px;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.04);
	}

	.lfh-step:last-child {
		grid-column: 1 / -1;
		max-width: 50%;
		justify-self: center;
	}

	.lfh-program__art {
		height: 220px;
		margin-top: 24px;
	}

	.lfh-blog__grid {
		grid-template-columns: 1fr !important;
		grid-template-rows: auto !important;
	}

	.lfh-post-card--featured {
		grid-row: auto !important;
		grid-template-rows: 300px auto !important;
	}

	.lfh-post-card--compact {
		min-height: 218px;
	}

	.lfh-registration__copy {
		text-align: center;
		justify-self: center;
	}

	.lfh-registration__copy > p {
		margin-inline: auto;
	}

	.lfh-checklist {
		width: fit-content;
		margin-inline: auto;
		text-align: left;
	}

}

@media (max-width: 680px) {
	.lfh-shell {
		width: min(calc(100% - 28px), var(--lfh-shell));
	}

	.lfh-header__inner {
		min-height: 72px;
	}

	.lfh-brand img {
		width: 132px;
		height: 50px;
	}

	.lfh-hero__grid {
		min-height: 0;
		grid-template-columns: 1fr !important;
		padding-block: 30px 16px;
	}

	.lfh-hero h1 {
		font-size: clamp(2.8rem, 15vw, 4rem) !important;
	}

	.lfh-hero__visual img {
		height: 250px !important;
	}

	.lfh-hero__lead {
		font-size: 1rem;
	}

	.lfh-actions {
		flex-direction: column !important;
	}

	.lfh-button--primary,
	.lfh-actions .lfh-link-arrow {
		width: 100%;
		justify-content: center;
	}

	.lfh-event-meta {
		align-items: flex-start;
		flex-direction: column;
		width: fit-content;
		margin-inline: auto;
	}

	.lfh-event-meta span + span::before {
		display: none;
	}

	.lfh-facts__grid {
		grid-template-columns: 1fr !important;
		gap: 11px;
	}

	.lfh-fact {
		min-height: 78px;
	}

	.lfh-section {
		padding-block: 54px;
	}

	.lfh-section-copy h2,
	.lfh-section-heading h2,
	.lfh-impact h2,
	.lfh-blog h2,
	.lfh-registration h2 {
		font-size: clamp(2rem, 10vw, 2.75rem);
	}

	.lfh-method {
		grid-template-columns: 1fr !important;
	}

	.lfh-method-card,
	.lfh-method-card:nth-child(2),
	.lfh-method-card:nth-child(3) {
		min-height: 350px;
		transform: none;
	}

	.lfh-method-card::after {
		display: none;
	}

	.lfh-axes {
		padding-top: 18px;
	}

	.lfh-axes__grid {
		grid-template-columns: 1fr !important;
	}

	.lfh-axis {
		grid-template-columns: 52px minmax(0, 1fr) !important;
		padding: 20px;
	}

	.lfh-axis__icon {
		width: 54px;
		height: 54px;
	}

	.lfh-axis__icon svg {
		width: 36px;
		height: 36px;
	}

	.lfh-program {
		padding-block: 70px;
	}

	.lfh-program__grid {
		grid-template-columns: 1fr !important;
	}

	.lfh-program__art {
		height: auto;
		aspect-ratio: 3 / 1;
		margin-top: 18px;
	}

	.lfh-step:last-child {
		grid-column: auto;
		max-width: none;
	}

	.lfh-stats {
		gap: 8px;
	}

	.lfh-stats strong {
		font-size: 2rem;
	}

	.lfh-blog__heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.lfh-post-card--compact {
		grid-template-columns: 1fr !important;
		grid-template-rows: 190px auto !important;
		min-height: 0;
	}

	.lfh-post-card--compact .lfh-post-card__media {
		min-height: 190px !important;
		grid-column: 1 !important;
		grid-row: 1 !important;
	}

	.lfh-post-card--compact .lfh-post-card__body {
		grid-column: 1 !important;
		grid-row: 2 !important;
	}

	.lfh-registration {
		padding-block: 48px;
	}

	.lfh-registration__foliage {
		width: 130px !important;
		opacity: 0.7;
	}

	.lfh-registration__dots {
		right: 4px;
		opacity: 0.5;
	}

	.lfh-footer__grid {
		grid-template-columns: 1fr !important;
		gap: 34px;
	}

	.lfh-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 22px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .lfh-header {
		top: 46px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lf-home *,
	.lf-home *::before,
	.lf-home *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
	}
}


/* 3.5.0 — fidelidad del bloque «Más que un evento». */
.lf-home .lfh-fact .lfh-icon {
	width: 48px !important;
	height: 48px !important;
	flex: 0 0 48px !important;
	box-shadow: 0 5px 14px rgba(13, 33, 56, 0.10);
}

.lf-home .lfh-fact .lfh-icon svg {
	width: 27px !important;
	height: 27px !important;
	stroke-width: 2.15 !important;
}

.lf-home .lfh-fact .lfh-icon .lfh-icon-fill {
	fill: currentColor !important;
	stroke: none !important;
}

/* La ilustración forma parte del flujo: nunca puede invadir títulos o texto. */
.lf-home .lfh-method-card {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	min-height: 350px !important;
	padding: 20px 16px 14px !important;
}

.lf-home .lfh-method-card h3,
.lf-home .lfh-method-card p {
	position: relative !important;
	z-index: 2 !important;
	flex: 0 0 auto !important;
}

.lf-home .lfh-method-card h3 {
	margin: 0 0 7px !important;
}

.lf-home .lfh-method-card p {
	min-height: 0 !important;
	margin: 0 0 14px !important;
}

.lf-home .lfh-method-card__image {
	position: static !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	height: 178px !important;
	min-height: 178px !important;
	margin: auto 0 0 !important;
	border-radius: 13px !important;
	object-fit: cover !important;
	object-position: center center !important;
	z-index: 1 !important;
}

@media (max-width: 720px) {
	.lf-home .lfh-method-card,
	.lf-home .lfh-method-card:nth-child(2),
	.lf-home .lfh-method-card:nth-child(3) {
		min-height: 0 !important;
	}

	.lf-home .lfh-method-card__image {
		height: auto !important;
		min-height: 0 !important;
		aspect-ratio: 4 / 3;
	}
}

/* 3.5.1 — centrado real de los pictogramas dentro de sus círculos. */
.lf-home .lfh-fact > .lfh-icon {
	display: grid !important;
	place-items: center !important;
	align-items: center !important;
	justify-items: center !important;
	padding: 0 !important;
	line-height: 0 !important;
	overflow: hidden;
}

.lf-home .lfh-fact > .lfh-icon > svg {
	display: block !important;
	position: static !important;
	inset: auto !important;
	margin: 0 !important;
	transform: none !important;
	align-self: center !important;
	justify-self: center !important;
}


/* Programa vivencial 3.5.2: composición fiel al render y responsive. */
@media (max-width: 960px) {
	.lfh-program {
		padding-block: 44px 34px;
	}

	.lfh-program__shell {
		width: min(calc(100% - 36px), 760px);
	}

	.lfh-program__heading {
		margin-bottom: 22px;
	}

	.lfh-program__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 16px;
	}

	.lfh-program__grid::before,
	.lfh-step::before,
	.lfh-step::after {
		display: none !important;
	}

	.lfh-step {
		min-height: 330px;
		padding: 18px 16px 0;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.035);
	}

	.lfh-step:last-child {
		grid-column: 1 / -1;
		width: calc(50% - 8px);
		max-width: none;
		justify-self: center;
	}

	.lfh-step__copy {
		min-height: 82px;
	}

	.lfh-step__art {
		height: 190px;
	}

	.lfh-program__action {
		margin-top: 20px;
	}
}

@media (max-width: 680px) {
	.lfh-program {
		padding-block: 42px 30px;
	}

	.lfh-program__shell {
		width: min(calc(100% - 28px), 520px);
	}

	.lfh-program__heading h2 {
		font-size: clamp(1.75rem, 8vw, 2.2rem);
	}

	.lfh-program__grid {
		grid-template-columns: 1fr !important;
	}

	.lfh-step,
	.lfh-step:last-child {
		grid-column: auto;
		width: 100%;
		max-width: none;
		min-height: 340px;
	}

	.lfh-step__art {
		height: 205px;
	}

	.lfh-program__action .lfh-button {
		width: 100%;
		justify-content: center;
	}
}

/* 3.5.3 — bloque de seis ejes reconstruido según el render aprobado. */
.lf-home .lfh-axes {
	padding-block: 42px 58px !important;
	background: #ffffff !important;
}

.lf-home .lfh-axes > .lfh-shell {
	width: min(calc(100% - 48px), 1320px) !important;
}

.lf-home .lfh-axes .lfh-section-heading {
	max-width: none !important;
	margin: 0 0 30px !important;
}

.lf-home .lfh-axes .lfh-section-heading h2 {
	margin: 0 !important;
	color: #0d2138 !important;
	font-size: clamp(1.75rem, 2vw, 2rem) !important;
	font-weight: 850 !important;
	line-height: 1.15 !important;
	letter-spacing: -0.035em !important;
}

.lf-home .lfh-axes__grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	column-gap: 16px !important;
	row-gap: 14px !important;
}

.lf-home .lfh-axis {
	display: grid !important;
	grid-template-columns: 108px minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 0 !important;
	min-height: 142px !important;
	padding: 18px 22px 18px 18px !important;
	border-width: 1px !important;
	border-style: solid !important;
	border-radius: 15px !important;
	box-shadow: inset 0 0 24px rgba(255,255,255,.42) !important;
}

.lf-home .lfh-axis--teal {
	border-color: #98dcda !important;
	background: linear-gradient(110deg, #effafa 0%, #eaf8f8 100%) !important;
}

.lf-home .lfh-axis--coral {
	border-color: #f7ad99 !important;
	background: linear-gradient(110deg, #fff4ef 0%, #fff1ec 100%) !important;
}

.lf-home .lfh-axis--gold {
	border-color: #efc76a !important;
	background: linear-gradient(110deg, #fff9eb 0%, #fff6e3 100%) !important;
}

.lf-home .lfh-axis__icon {
	display: grid !important;
	place-items: center !important;
	width: 90px !important;
	height: 90px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #0b9d9b !important;
	line-height: 0 !important;
}

.lf-home .lfh-axis--coral .lfh-axis__icon {
	color: #f36b43 !important;
}

.lf-home .lfh-axis--gold .lfh-axis__icon {
	color: #efa400 !important;
}

.lf-home .lfh-axis__icon svg {
	display: block !important;
	width: 84px !important;
	height: 84px !important;
	margin: 0 !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 3.4 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	overflow: visible !important;
}

.lf-home .lfh-axis__icon .lfh-icon-fill {
	fill: currentColor !important;
	stroke: none !important;
}

.lf-home .lfh-axis > div {
	display: block !important;
	align-self: center !important;
	padding-left: 0 !important;
}

.lf-home .lfh-axis h3 {
	margin: 0 0 4px !important;
	color: #0d2138 !important;
	font-size: 1.075rem !important;
	font-weight: 850 !important;
	line-height: 1.22 !important;
	letter-spacing: -0.015em !important;
}

.lf-home .lfh-axis--coral h3 {
	color: #ef5f3c !important;
}

.lf-home .lfh-axis p {
	margin: 0 !important;
	color: #314b62 !important;
	font-size: .85rem !important;
	font-weight: 430 !important;
	line-height: 1.42 !important;
}

@media (max-width: 960px) {
	.lf-home .lfh-axes__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 680px) {
	.lf-home .lfh-axes {
		padding-block: 34px 44px !important;
	}

	.lf-home .lfh-axes > .lfh-shell {
		width: min(calc(100% - 28px), 520px) !important;
	}

	.lf-home .lfh-axes .lfh-section-heading {
		margin-bottom: 22px !important;
	}

	.lf-home .lfh-axes .lfh-section-heading h2 {
		font-size: clamp(1.65rem, 8vw, 2rem) !important;
	}

	.lf-home .lfh-axes__grid {
		grid-template-columns: 1fr !important;
		row-gap: 12px !important;
	}

	.lf-home .lfh-axis {
		grid-template-columns: 70px minmax(0, 1fr) !important;
		min-height: 122px !important;
		padding: 15px 17px 15px 13px !important;
	}

	.lf-home .lfh-axis__icon {
		width: 64px !important;
		height: 70px !important;
	}

	.lf-home .lfh-axis__icon svg {
		width: 60px !important;
		height: 60px !important;
	}
}

/* 3.5.4 — el registro y el footer deben tocarse sin franja blanca. */
body.liderafest-home-page .wp-site-blocks,
body.liderafest-home-page .wp-block-post-content,
body.liderafest-home-page .wp-block-shortcode {
	gap: 0 !important;
	row-gap: 0 !important;
	column-gap: 0 !important;
}

body.liderafest-home-page .wp-block-shortcode > .lf-home,
body.liderafest-home-page .lf-home,
body.liderafest-home-page .lf-home > .lfh-main,
body.liderafest-home-page .lf-home > .lfh-footer,
body.liderafest-home-page .lfh-registration,
body.liderafest-home-page .lfh-footer {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* WordPress puede volver a insertar párrafos o saltos vacíos alrededor del shortcode. */
body.liderafest-home-page .lf-home > p:empty,
body.liderafest-home-page .lf-home > p:has(> br:only-child),
body.liderafest-home-page .lf-home > br {
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	line-height: 0 !important;
}

/* El color del contenedor actúa como respaldo aunque un optimizador inyecte un nodo vacío. */
body.liderafest-home-page .lf-home {
	background: #071a2d !important;
}

body.liderafest-home-page .lfh-header,
body.liderafest-home-page .lfh-main {
	background-color: #fff;
}

body.liderafest-home-page .lfh-registration {
	padding-bottom: 32px !important;
	border-bottom: 0 !important;
}

body.liderafest-home-page .lfh-registration + .lfh-footer,
body.liderafest-home-page .lfh-main + .lfh-footer {
	margin-top: -1px !important;
}

body.liderafest-home-page .lfh-footer {
	position: relative;
	z-index: 3;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
