/**
 * PMP Vibra — estilos visuales del tema (colorido y llamativo).
 * Los colores/tipografías base viven en theme.json; aquí van los detalles:
 * cabecera, menú responsive, hero, chips, tarjetas, formulario, footer.
 */

:root {
	--pmp-primary: #0b5ed7;
	--pmp-secondary: #16864a;
	--pmp-accent: #c1121f;
	--pmp-coral: #e63946;
	--pmp-violet: #0a6e3c;
	--pmp-navy: #0a1930;
	--pmp-line: #e6eaf0;
	--pmp-radius: 22px;
	--pmp-shadow: 0 16px 40px rgba(16, 24, 40, 0.1);
	--pmp-shadow-hover: 0 24px 54px rgba(16, 24, 40, 0.16);
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
}

/* ---------- Cabecera ---------- */

.pmp-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--pmp-line);
	padding: 10px 24px;
}

/* Banda multicolor arriba de la cabecera: firma visual del tema. */
.pmp-site-header::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #0b5ed7 0%, #16864a 50%, #e63946 100%);
}

.pmp-site-header__inner {
	width: 100%;
	max-width: 1420px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.pmp-site-logo img {
	max-height: 64px;
	width: auto;
}

.pmp-main-navigation {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 1 1 auto;
	justify-content: flex-end;
}

.pmp-primary-menu-container {
	display: flex;
	align-items: center;
}

#primary-menu,
.pmp-nav-menu,
#primary-menu ul,
.pmp-nav-menu ul,
#primary-menu .sub-menu,
.pmp-nav-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

#primary-menu,
.pmp-nav-menu {
	display: flex;
	align-items: center;
	gap: 26px;
}

#primary-menu li,
.pmp-nav-menu li {
	position: relative;
}

#primary-menu a,
.pmp-nav-menu a {
	position: relative;
	color: var(--wp--preset--color--foreground, #101828);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 10px 2px;
	display: inline-block;
	transition: color 0.2s ease;
}

/* Subrayado degradado animado en los enlaces de primer nivel. */
#primary-menu > li > a::after,
.pmp-nav-menu > li > a::after {
	content: "";
	position: absolute;
	left: 2px;
	right: 2px;
	bottom: 4px;
	height: 3px;
	background: linear-gradient(90deg, var(--pmp-primary), var(--pmp-coral));
	border-radius: 3px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

#primary-menu > li > a:hover::after,
#primary-menu > li > a:focus::after,
.pmp-nav-menu > li > a:hover::after,
.pmp-nav-menu > li > a:focus::after {
	transform: scaleX(1);
}

#primary-menu a:hover,
#primary-menu a:focus,
.pmp-nav-menu a:hover,
.pmp-nav-menu a:focus {
	color: var(--pmp-primary);
}

#primary-menu .sub-menu,
.pmp-nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid var(--pmp-line);
	border-radius: 14px;
	box-shadow: 0 18px 36px rgba(16, 24, 40, 0.14);
	padding: 8px;
	min-width: 220px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	z-index: 20;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

#primary-menu li:hover > .sub-menu,
#primary-menu li:focus-within > .sub-menu,
.pmp-nav-menu li:hover > .sub-menu,
.pmp-nav-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

#primary-menu .sub-menu a,
.pmp-nav-menu .sub-menu a {
	padding: 10px 12px;
	border-radius: 8px;
	white-space: nowrap;
	transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

#primary-menu .sub-menu a::after,
.pmp-nav-menu .sub-menu a::after {
	display: none;
}

#primary-menu .sub-menu a:hover,
#primary-menu .sub-menu a:focus,
.pmp-nav-menu .sub-menu a:hover,
.pmp-nav-menu .sub-menu a:focus {
	background: var(--wp--preset--color--soft-blue, #eaf2ff);
	color: var(--pmp-primary);
	padding-left: 16px;
}

.pmp-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	border: 1px solid var(--pmp-line);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
}

.pmp-menu-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: var(--wp--preset--color--foreground, #101828);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.pmp-header-cta .wp-block-button__link {
	padding: 10px 22px;
	font-size: 0.9rem;
}

/* ---------- Botones ---------- */

.wp-block-button__link {
	border-radius: 999px;
	padding: 14px 30px;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(16, 24, 40, 0.22);
}

/* Botón degradado naranja-coral: el CTA estrella del tema. */
.pmp-boton-fuego .wp-block-button__link {
	background: linear-gradient(120deg, #e63946 0%, #c1121f 100%);
	color: #fff;
	border: none;
}

.pmp-boton-fuego .wp-block-button__link:hover {
	background: linear-gradient(120deg, #c1121f 0%, #e63946 100%);
	color: #fff;
}

/* Botón "cristal" para fondos de color. */
.pmp-boton-cristal .wp-block-button__link {
	border: 2px solid rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(4px);
}

.pmp-boton-cristal .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.24);
	color: #fff;
}

/* ---------- Hero ---------- */

.pmp-hero {
	position: relative;
	overflow: hidden;
	padding: 96px 24px 110px;
}

/* Formas decorativas de colores flotando en el hero. */
.pmp-hero::before,
.pmp-hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	opacity: 0.35;
	pointer-events: none;
}

.pmp-hero::before {
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, #e63946 0%, transparent 70%);
	top: -120px;
	right: -80px;
}

.pmp-hero::after {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, #16864a 0%, transparent 70%);
	bottom: -110px;
	left: -70px;
}

.pmp-hero__cols {
	position: relative;
	z-index: 2;
	gap: 48px;
}

.pmp-hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
	border-radius: 999px;
	padding: 6px 18px;
	letter-spacing: 0.14em;
	font-weight: 700;
	margin-bottom: 18px;
}

.pmp-hero-title {
	margin: 0 0 18px;
}

.pmp-hero-destacado {
	background: linear-gradient(120deg, #8ef0b2, #eafff2);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
}

.pmp-hero-subtitle {
	max-width: 560px;
	opacity: 0.92;
	margin-bottom: 26px;
}

.pmp-hero-actions {
	gap: 14px;
	margin-bottom: 34px;
}

.pmp-hero-stats {
	gap: 10px !important;
}

.pmp-hero-stat {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	padding: 7px 16px;
	margin: 0 !important;
	font-weight: 600;
}

.pmp-hero-foto img {
	border-radius: 28px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
	transform: rotate(2deg);
	border: 5px solid rgba(255, 255, 255, 0.25);
	transition: transform 0.35s ease;
}

.pmp-hero-foto:hover img {
	transform: rotate(0deg) scale(1.02);
}

/* ---------- Secciones genéricas ---------- */

.pmp-section {
	padding: 88px 24px;
}

.pmp-section-heading {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 42px;
}

.pmp-section-heading h2 {
	margin: 8px 0 12px;
}

.pmp-lead {
	color: var(--wp--preset--color--muted, #5b6472);
	font-size: 1.1rem;
	margin: 0;
}

.pmp-kicker {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	border-radius: 999px;
	padding: 6px 16px;
	margin: 0;
}

.pmp-kicker--azul { background: #eaf2ff; color: var(--pmp-primary); }
.pmp-kicker--verde { background: #e9f9f0; color: var(--pmp-secondary); }
.pmp-kicker--naranja { background: #fdecec; color: #c1121f; }
.pmp-kicker--violeta { background: #dff3e7; color: #0a6e3c; }
.pmp-kicker--coral { background: #ffecec; color: var(--pmp-coral); }

/* ---------- Chips de categorías ---------- */

.pmp-banda-categorias {
	padding: 70px 24px 60px;
}

.pmp-banda-categorias h2 {
	margin-bottom: 30px;
}

.pmp-chips {
	gap: 14px !important;
	justify-content: center;
}

.pmp-chip {
	margin: 0 !important;
	border-radius: 999px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pmp-chip a {
	display: inline-block;
	padding: 13px 26px;
	border-radius: 999px;
	color: #fff !important;
	font-weight: 700;
	text-decoration: none;
	font-size: 1rem;
}

.pmp-chip:hover {
	transform: translateY(-3px) scale(1.04);
	box-shadow: 0 14px 30px rgba(16, 24, 40, 0.22);
}

.pmp-chip--azul { background: linear-gradient(120deg, #0b5ed7, #3b82f6); }
.pmp-chip--verde { background: linear-gradient(120deg, #16864a, #22c55e); }
.pmp-chip--naranja { background: linear-gradient(120deg, #e63946, #c1121f); }
.pmp-chip--coral { background: linear-gradient(120deg, #0a1930, #0b5ed7); }
.pmp-chip--violeta { background: linear-gradient(120deg, #0a6e3c, #22c55e); }
.pmp-chip--navy { background: linear-gradient(120deg, #0b5ed7 0%, #16864a 55%, #e63946 100%); }

/* ---------- Tarjetas de características ---------- */

.pmp-features-grid,
.pmp-proceso-grid {
	gap: 22px;
}

.pmp-feature-card {
	background: #fff;
	border: 1px solid var(--pmp-line);
	border-radius: var(--pmp-radius);
	padding: 30px 26px;
	box-shadow: var(--pmp-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	border-top: 6px solid transparent;
}

.pmp-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--pmp-shadow-hover);
}

.pmp-feature-card--azul { border-top-color: var(--pmp-primary); }
.pmp-feature-card--verde { border-top-color: var(--pmp-secondary); }
.pmp-feature-card--naranja { border-top-color: var(--pmp-coral); }
.pmp-feature-card--coral { border-top-color: var(--pmp-navy); }

.pmp-feature-icon {
	font-size: 2.2rem;
	line-height: 1;
	margin: 0 0 14px;
}

.pmp-feature-card h3 {
	margin: 0 0 10px;
}

.pmp-feature-card p:last-child {
	margin-bottom: 0;
	color: var(--wp--preset--color--muted, #5b6472);
}

/* ---------- Cómo funciona (pasos) ---------- */

.pmp-proceso-step {
	background: #fff;
	border-radius: var(--pmp-radius);
	padding: 30px 26px;
	box-shadow: var(--pmp-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	text-align: center;
}

.pmp-proceso-step:hover {
	transform: translateY(-8px);
	box-shadow: var(--pmp-shadow-hover);
}

.pmp-proceso-numero {
	width: 58px;
	height: 58px;
	line-height: 58px;
	border-radius: 50%;
	color: #fff;
	font-weight: 800;
	font-size: 1.5rem;
	margin: 0 auto 16px;
	text-align: center;
}

.pmp-proceso-numero--azul { background: linear-gradient(135deg, #0b5ed7, #3b82f6); }
.pmp-proceso-numero--verde { background: linear-gradient(135deg, #16864a, #22c55e); }
.pmp-proceso-numero--naranja { background: linear-gradient(135deg, #e63946, #c1121f); }
.pmp-proceso-numero--coral { background: linear-gradient(135deg, #0a1930, #155e93); }

.pmp-proceso-step h3 {
	margin: 0 0 10px;
	font-size: 1.15rem;
}

.pmp-proceso-step p:last-child {
	margin-bottom: 0;
	color: var(--wp--preset--color--muted, #5b6472);
	font-size: 0.98rem;
}

/* ---------- CTA banner ---------- */

.pmp-cta-banner {
	border-radius: 0;
	padding: 84px 24px;
	position: relative;
	overflow: hidden;
}

.pmp-cta-banner::before {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	top: -140px;
	left: -100px;
}

.pmp-cta-banner::after {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	bottom: -100px;
	right: -60px;
}

.pmp-cta-banner > * {
	position: relative;
	z-index: 2;
}

/* ---------- FAQ ---------- */

.pmp-section--faq .wp-block-details {
	background: #fff;
	border: 1px solid var(--pmp-line);
	border-left: 6px solid var(--pmp-primary);
	border-radius: 16px;
	padding: 18px 22px;
	margin-bottom: 14px;
	box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
	transition: border-left-color 0.2s ease;
}

.pmp-section--faq .wp-block-details:nth-child(3n) { border-left-color: var(--pmp-secondary); }
.pmp-section--faq .wp-block-details:nth-child(4n) { border-left-color: var(--pmp-coral); }
.pmp-section--faq .wp-block-details:nth-child(5n) { border-left-color: var(--pmp-navy); }

.pmp-section--faq summary {
	cursor: pointer;
	font-weight: 700;
	font-size: 1.05rem;
}

.pmp-section--faq details[open] summary {
	color: var(--pmp-primary);
	margin-bottom: 8px;
}

/* ---------- Formulario de contacto ---------- */

.pmp-formulario-contacto {
	background: #fff;
	border: 1px solid var(--pmp-line);
	border-radius: var(--pmp-radius);
	padding: 34px 30px;
	box-shadow: var(--pmp-shadow);
	position: relative;
	overflow: hidden;
}

.pmp-formulario-contacto::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #0b5ed7 0%, #16864a 50%, #e63946 100%);
}

.pmp-form-fila {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.pmp-form-campo {
	margin: 0 0 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.pmp-form-campo label {
	font-weight: 700;
	font-size: 0.92rem;
}

.pmp-form-campo input,
.pmp-form-campo select,
.pmp-form-campo textarea {
	border: 2px solid var(--pmp-line);
	border-radius: 14px;
	padding: 13px 16px;
	font-size: 1rem;
	font-family: inherit;
	background: #fbfcfe;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	width: 100%;
	box-sizing: border-box;
}

.pmp-form-campo input:focus,
.pmp-form-campo select:focus,
.pmp-form-campo textarea:focus {
	outline: none;
	border-color: var(--pmp-primary);
	box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.14);
	background: #fff;
}

.pmp-form-boton {
	background: linear-gradient(120deg, #e63946 0%, #c1121f 100%);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 15px 38px;
	font-size: 1.05rem;
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pmp-form-boton:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(230, 57, 70, 0.35);
}

.pmp-form-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.pmp-form-aviso {
	border-radius: 14px;
	padding: 14px 18px;
	margin-bottom: 20px;
	font-weight: 600;
}

.pmp-form-aviso--ok {
	background: #e9f9f0;
	color: #0c5c33;
	border: 1px solid #b7ebcd;
}

.pmp-form-aviso--error {
	background: #ffecec;
	color: #9c1420;
	border: 1px solid #ffc4c9;
}

/* Tarjetas de información de contacto (página Contacto). */
.pmp-contacto-info .pmp-contacto-tarjeta {
	background: #fff;
	border: 1px solid var(--pmp-line);
	border-radius: 18px;
	padding: 20px 22px;
	margin-bottom: 14px;
	box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.pmp-contacto-info .pmp-contacto-tarjeta p {
	margin: 0;
}

/* ---------- Contenido de páginas ---------- */

.pmp-page-content {
	padding: 64px 24px;
	min-height: 40vh;
}

.pmp-404 {
	text-align: center;
	padding: 110px 24px;
}

/* ---------- Pie de página ---------- */

.pmp-site-footer {
	padding: 70px 24px 30px;
	position: relative;
}

.pmp-site-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #0b5ed7 0%, #16864a 50%, #e63946 100%);
}

.pmp-site-footer__grid {
	gap: 40px;
	max-width: 1180px;
	margin-inline: auto;
}

.pmp-footer-tagline {
	opacity: 0.8;
	max-width: 320px;
}

.pmp-footer-col__title {
	margin: 0 0 14px;
	font-size: 1.02rem;
	letter-spacing: 0.04em;
}

.pmp-site-footer a {
	color: #cfe0ff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.pmp-site-footer a:hover {
	color: #8ef0b2;
}

.pmp-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pmp-footer-contact-placeholder {
	border: 2px dashed rgba(255, 255, 255, 0.3);
	border-radius: 14px;
	padding: 14px;
	margin-bottom: 14px;
	opacity: 0.75;
}

.pmp-site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	margin-top: 44px;
	padding-top: 22px;
	text-align: center;
}

.pmp-footer-copy {
	opacity: 0.65;
	margin: 0;
}

/* ---------- Animación de entrada suave ---------- */

@media (prefers-reduced-motion: no-preference) {
	.pmp-feature-card,
	.pmp-proceso-step,
	.pmp-chip {
		animation: pmp-aparece 0.6s ease both;
	}

	@keyframes pmp-aparece {
		from {
			opacity: 0;
			transform: translateY(16px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}

/* ---------- Cabecera y pie clásicos (páginas de empresa del plugin) ----------
   El plugin llama a get_header()/get_footer() en las páginas individuales
   de cada empresa; estos estilos visten esa cabecera/pie clásicos con el
   mismo aspecto que la cabecera de bloques. */

.pmp-container {
	width: 100%;
	max-width: 1420px;
	margin-inline: auto;
}

.pmp-skip-link {
	position: absolute;
	left: -9999px;
}

.pmp-site-branding .custom-logo {
	max-height: 64px;
	width: auto;
}

.pmp-site-title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
}

.pmp-site-title a {
	color: var(--wp--preset--color--foreground, #101828);
	text-decoration: none;
}

.pmp-site-title a:hover {
	color: var(--pmp-primary);
}

.pmp-header-cta-link {
	display: inline-block;
	background: linear-gradient(120deg, #e63946 0%, #c1121f 100%);
	color: #fff !important;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	border-radius: 999px;
	padding: 10px 22px;
	margin-left: 18px;
	white-space: nowrap;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pmp-header-cta-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(230, 57, 70, 0.35);
}

.pmp-classic-footer {
	background: var(--pmp-navy);
	color: #fff;
	text-align: center;
	padding: 26px 24px;
	position: relative;
	margin-top: 0;
}

.pmp-classic-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #0b5ed7 0%, #16864a 50%, #e63946 100%);
}

.pmp-classic-footer p {
	margin: 0;
	opacity: 0.85;
	font-size: 0.95rem;
}

/* ---------- Arreglo del carrusel de empresas del plugin ----------
   No tocamos ningún archivo del plugin: son estilos por encima de su CSS
   (assets/css/frontend.css del plugin pmp-business-empresas).

   CAUSA DEL PROBLEMA: dentro de la plantilla de bloques, WordPress
   (wpautop) inyecta párrafos <p> vacíos y <br> extra dentro de cada
   .pmp-carousel__slide. La diapositiva es una rejilla (grid) de 2
   columnas con colocación automática: el <p> fantasma ocupaba la celda
   derecha y empujaba el contenido (nombre, descripción, "Ver empresa")
   a la fila de abajo. Por eso el texto salía DEBAJO de la imagen.

   ARREGLO: 1) ocultar esos elementos fantasma; 2) fijar explícitamente
   la imagen en la columna 1 y el contenido en la columna 2, para que la
   colocación nunca dependa del orden de los hijos. El plugin apila a
   una sola columna por debajo de 900px y ahí no intervenimos. */

.pmp-carousel__slide > p,
.pmp-carousel__slide > br,
.pmp-carousel__track > p,
.pmp-carousel__track > br,
.pmp-carousel__viewport > p,
.pmp-carousel > p,
.pmp-carousel > br {
	display: none !important;
}

@media (min-width: 901px) {
	.pmp-carousel__slide {
		display: grid !important;
		grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr) !important;
	}

	.pmp-carousel__slide > .pmp-carousel__image {
		grid-column: 1 !important;
		grid-row: 1 !important;
	}

	.pmp-carousel__slide > .pmp-carousel__content {
		grid-column: 2 !important;
		grid-row: 1 !important;
		display: flex !important;
		flex-direction: column;
		justify-content: center;
		text-align: left;
	}
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
	.pmp-hero {
		padding: 72px 24px 84px;
	}

	.pmp-header-cta {
		display: none;
	}
}

@media (max-width: 782px) {
	.pmp-menu-toggle {
		display: flex;
	}

	.pmp-primary-menu-container {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--pmp-line);
		box-shadow: 0 24px 40px rgba(16, 24, 40, 0.14);
		padding: 12px 24px 20px;
	}

	.pmp-primary-menu-container.is-open {
		display: block;
	}

	#primary-menu,
	.pmp-nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	#primary-menu .sub-menu,
	.pmp-nav-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		display: none;
		box-shadow: none;
		border: none;
		border-left: 3px solid var(--pmp-line);
		border-radius: 0;
		margin-left: 10px;
	}

	#primary-menu li.pm