.base-bento-hero {
	--base-bento-hero-max-width: 1360px;
	--base-bento-grid-gap: 16px;
	--base-bento-main-min-height: 520px;
	--base-bento-mini-min-height: 240px;
	--base-bento-media-min-height: 776px;
	--base-bento-hero-overlay-start: rgba(13, 22, 54, 0.1);
	--base-bento-hero-overlay-end: rgba(13, 22, 54, 0.84);
	--base-bento-hero-overlay-angle: 180deg;
	--base-bento-hero-overlay-opacity: 1;
	--base-bento-hero-watermark-size: 34%;
	--base-bento-hero-watermark-opacity: 0.08;
	--base-bento-control-icon-size: 24px;
	--base-bento-hero-media-fallback: none;
	--base-bento-hero-media-fit: cover;
	--base-bento-hero-media-position: center center;
	--base-bento-main-content-justify: space-between;
	background: transparent;
	color: #fff;
	font-family: "Plus Jakarta Sans", sans-serif;
	position: relative;
	width: 100%;
}

.base-bento-hero,
.base-bento-hero *,
.base-bento-hero *::before,
.base-bento-hero *::after {
	box-sizing: border-box;
}

.base-bento-hero::before,
.base-bento-hero::after {
	border-radius: 999px;
	content: "";
	filter: blur(120px);
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.base-bento-hero::before {
	background: radial-gradient(circle, rgba(39, 61, 143, 0.25) 0%, transparent 70%);
	height: 60vw;
	left: -10%;
	top: -10%;
	width: 60vw;
}

.base-bento-hero::after {
	background: radial-gradient(circle, rgba(209, 62, 67, 0.12) 0%, transparent 70%);
	bottom: 10%;
	height: 50vw;
	right: -10%;
	width: 50vw;
}

.base-bento-hero a {
	color: inherit;
	text-decoration: none;
}

.base-bento-hero img,
.base-bento-hero svg {
	display: block;
}

.base-bento-hero__wrap {
	container-type: inline-size;
	margin-inline: auto;
	position: relative;
	width: min(96%, var(--base-bento-hero-max-width));
	z-index: 1;
}

.base-bento-hero__grid {
	display: grid;
	gap: var(--base-bento-grid-gap);
	grid-template-areas:
		"main main media"
		"mini-a mini-b media";
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr);
	grid-template-rows: minmax(var(--base-bento-main-min-height), auto) minmax(var(--base-bento-mini-min-height), auto);
	align-items: stretch;
}

.base-bento-hero__surface {
	border-radius: 28px;
	position: relative;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, background-color 0.25s ease, background-image 0.25s ease;
}

.base-bento-hero__main {
	align-items: stretch;
	background-color: #1a2b6b;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.28);
	display: flex;
	flex-direction: column;
	grid-area: main;
	min-height: var(--base-bento-main-min-height);
	min-width: 0;
	overflow: hidden;
	padding: 56px;
}

.base-bento-hero__media {
	display: flex;
	flex-direction: column;
	grid-area: media;
	height: 100%;
	min-height: max(var(--base-bento-media-min-height), calc(var(--base-bento-main-min-height) + var(--base-bento-mini-min-height) + var(--base-bento-grid-gap)));
	min-width: 0;
	overflow: hidden;
	position: relative;
}

.base-bento-hero__mini--a { grid-area: mini-a; }
.base-bento-hero__mini--b { grid-area: mini-b; }

.base-bento-hero__mini-card {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: var(--base-bento-mini-min-height);
	min-width: 0;
	overflow: hidden;
	padding: 32px 24px;
}

.base-bento-hero__mini-card.align-flex-start { align-items: flex-start; }
.base-bento-hero__mini-card.align-flex-end { align-items: flex-end; }

.base-bento-hero__slider {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	position: relative;
}

.base-bento-hero__slide-panel {
	border-radius: inherit;
	flex: 1 1 auto;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	position: relative;
}

.base-bento-hero__track {
	height: 100%;
	min-height: 100%;
	position: relative;
}

.base-bento-hero__media .base-bento-hero__slide-panel,
.base-bento-hero__media .base-bento-hero__track,
.base-bento-hero__media .base-bento-hero__slide,
.base-bento-hero__media .base-bento-hero__media-visual {
	height: 100%;
	min-height: 100%;
}

.base-bento-hero__media .base-bento-hero__slide-panel {
	inset: 0;
	position: absolute;
}

.base-bento-hero__slide {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transform: translate3d(0, -100%, 0);
	transition: none;
	visibility: hidden;
	width: 100%;
	will-change: transform, opacity;
	backface-visibility: hidden;
}

.base-bento-hero.is-ready .base-bento-hero__slide {
	transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), opacity 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.base-bento-hero__track--right .base-bento-hero__slide {
	bottom: 0;
	right: 0;
	transform: translate3d(0, 100%, 0);
}

.base-bento-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
	visibility: visible;
	z-index: 2;
}

.base-bento-hero__track--left .base-bento-hero__slide.is-prev {
	opacity: 1;
	transform: translate3d(0, 100%, 0);
	visibility: visible;
	z-index: 1;
}

.base-bento-hero__track--right .base-bento-hero__slide.is-prev {
	opacity: 1;
	transform: translate3d(0, -100%, 0);
	visibility: visible;
	z-index: 1;
}

.base-bento-hero__main-slide {
	align-items: stretch;
	justify-content: flex-start;
}

.base-bento-hero__slide-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	height: 100%;
	justify-content: var(--base-bento-main-content-justify);
	max-width: 680px;
	min-height: 100%;
	min-width: 0;
	padding-bottom: clamp(16px, 2vw, 32px);
	padding-right: 20px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.base-bento-hero__mobile-main-fallback,
.base-bento-hero__mobile-media-fallback {
	display: none;
}

.base-bento-hero__eyebrow {
	align-items: center;
	color: rgba(255, 255, 255, 0.72);
	display: inline-flex;
	font-size: 0.85rem;
	font-weight: 800;
	gap: 12px;
	letter-spacing: 0.15em;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.base-bento-hero__eyebrow::before {
	background: #ff7a7e;
	border-radius: 2px;
	content: "";
	flex-shrink: 0;
	height: 2px;
	width: 24px;
}

.base-bento-hero__title {
	font-size: clamp(2rem, 3.8vw, 4rem);
	letter-spacing: -0.02em;
	line-height: 1.05;
	margin: 0 0 18px;
}

.base-bento-hero__description {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.15rem;
	line-height: 1.65;
}

.base-bento-hero__description > :first-child { margin-top: 0; }
.base-bento-hero__description > :last-child { margin-bottom: 0; }

.base-bento-hero__slide-footer {
	display: flex;
	flex-direction: column;
	gap: 18px;
	opacity: 0;
	padding-top: 40px;
	visibility: hidden;
}

.base-bento-hero__main .base-bento-hero__slide.is-active .base-bento-hero__slide-footer,
.base-bento-hero__mobile-main-fallback .base-bento-hero__slide-footer {
	opacity: 1;
	visibility: visible;
}

.base-bento-hero__main .base-bento-hero__slide.is-prev .base-bento-hero__slide-footer {
	opacity: 0 !important;
	visibility: hidden !important;
}

.base-bento-hero__actions {
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 18px 24px;
	max-width: 100%;
}

.base-bento-hero__support-images {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
	justify-content: flex-start;
	max-width: 100%;
	min-width: 0;
	width: 100%;
}

.base-bento-hero__support-image,
.elementor .base-bento-hero__support-image,
.elementor-editor-active .base-bento-hero__support-image {
	display: block;
	flex: 0 1 min(180px, calc(50% - 8px));
	height: auto !important;
	max-height: 56px;
	max-width: min(180px, calc(50% - 8px));
	min-width: 0;
	object-fit: contain !important;
	width: auto !important;
}

.base-bento-hero__button--primary {
	align-items: center;
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
	color: #0d1636;
	display: inline-flex;
	font-size: 1.02rem;
	font-weight: 800;
	justify-content: center;
	min-height: 52px;
	padding: 14px 32px;
	transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
	white-space: nowrap;
}

.base-bento-hero__button--primary:hover,
.base-bento-hero__button--primary:focus-visible {
	background: #f4f7ff;
	box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18);
	transform: translateY(-3px);
}

.base-bento-hero__link-arrow {
	align-items: center;
	color: #fff;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 800;
	gap: 8px;
	min-height: 44px;
	transition: opacity 0.2s ease;
	white-space: nowrap;
}

.base-bento-hero__link-arrow span { position: relative; }

.base-bento-hero__link-arrow span::after {
	background: #ff7a7e;
	bottom: -4px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 100%;
}

.base-bento-hero__link-arrow svg {
	color: #ffb1b3;
	height: 20px;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	width: 20px;
}

.base-bento-hero__link-arrow:hover { opacity: 0.86; }
.base-bento-hero__link-arrow:hover svg { transform: translateX(5px); }

.base-bento-hero__controls {
	bottom: 28px;
	display: flex;
	gap: 12px;
	left: 28px;
	position: absolute;
	z-index: 10;
}

.base-bento-hero__control {
	align-items: center;
	background: rgba(26, 43, 107, 0.72);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 14px;
	color: #fff;
	display: inline-flex;
	height: 54px;
	justify-content: center;
	transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
	width: 54px;
}

.base-bento-hero__control:hover,
.base-bento-hero__control:focus-visible {
	background: rgba(26, 43, 107, 0.95);
	border-color: rgba(255, 255, 255, 0.64);
	transform: scale(1.04);
}

.base-bento-hero__control-icon {
	align-items: center;
	display: inline-flex;
	height: var(--base-bento-control-icon-size);
	justify-content: center;
	width: var(--base-bento-control-icon-size);
}

.base-bento-hero__control-icon svg,
.base-bento-hero__control-icon i {
	display: block;
	height: 100%;
	width: 100%;
}

.base-bento-hero__control[disabled],
.base-bento-hero__control[aria-disabled="true"] {
	cursor: not-allowed;
	opacity: 0.45;
	transform: none;
}

.base-bento-hero__control--toggle .base-bento-hero__toggle-icon--play { display: none; }
.base-bento-hero__control--toggle.is-paused .base-bento-hero__toggle-icon--pause { display: none; }
.base-bento-hero__control--toggle.is-paused .base-bento-hero__toggle-icon--play { display: block; }

.base-bento-hero__media-visual {
	background-color: rgba(13, 22, 54, 0.08);
	height: 100%;
	isolation: isolate;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.base-bento-hero__media-image,
.base-bento-hero .base-bento-hero__media-image,
.elementor .base-bento-hero__media-image,
.elementor-editor-active .base-bento-hero__media-image {
	bottom: 0;
	display: block;
	height: 100% !important;
	left: 0;
	max-width: none !important;
	min-height: 100% !important;
	min-width: 100% !important;
	object-fit: var(--base-bento-hero-media-fit) !important;
	object-position: var(--base-bento-hero-media-position) !important;
	position: absolute;
	right: 0;
	top: 0;
	width: 100% !important;
	z-index: 0;
}

.base-bento-hero__media-visual::after {
	background: linear-gradient(var(--base-bento-hero-overlay-angle), var(--base-bento-hero-overlay-start) 0%, var(--base-bento-hero-overlay-end) 100%);
	content: "";
	inset: 0;
	opacity: var(--base-bento-hero-overlay-opacity);
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.base-bento-hero__media-visual > :not(.base-bento-hero__media-image) {
	position: relative;
	z-index: 2;
}

.base-bento-hero__badge,
.base-bento-hero__media-logos {
	align-items: center;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 16px;
	bottom: 28px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	color: #fff;
	display: inline-flex;
	position: absolute;
	right: 28px;
	z-index: 2;
}

.base-bento-hero__badge {
	font-size: 0.95rem;
	font-weight: 800;
	gap: 10px;
	letter-spacing: 0.04em;
	max-width: calc(100% - 56px);
	padding: 14px 20px;
}

.base-bento-hero__badge svg,
.base-bento-hero__badge i { flex-shrink: 0; }

.base-bento-hero__media-logos {
	gap: 16px;
	max-width: calc(100% - 56px);
	padding: 16px 20px;
}

.base-bento-hero__media-logo {
	display: block;
	flex-shrink: 0;
	height: 48px;
	max-width: 140px;
	object-fit: contain;
	width: auto;
}

.base-bento-hero__stat {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
	text-align: center;
	width: 100%;
	z-index: 2;
}

.base-bento-hero__stat-icon {
	align-items: center;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 16px;
	display: inline-flex;
	height: 52px;
	justify-content: center;
	margin-bottom: 4px;
	width: 52px;
}

.base-bento-hero__stat-icon svg,
.base-bento-hero__stat-icon i {
	height: 28px;
	width: 28px;
}

.base-bento-hero__stat-icon img,
.base-bento-hero__stat-icon .base-bento-hero__stat-icon-image {
	display: block;
	height: auto;
	max-height: 70%;
	max-width: 70%;
	object-fit: contain;
	width: auto;
}

.base-bento-hero__stat-title,
.base-bento-hero__stat-label {
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.base-bento-hero__stat-number {
	font-size: clamp(3rem, 5vw, 4.2rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
}

.base-bento-hero__watermark {
	color: currentColor;
	opacity: var(--base-bento-hero-watermark-opacity);
	pointer-events: none;
	position: absolute;
	width: var(--base-bento-hero-watermark-size);
	z-index: 0;
}

.base-bento-hero__watermark svg {
	height: auto;
	width: 100%;
}

.base-bento-hero__watermark--bottom-right { bottom: -18px; right: -14px; }
.base-bento-hero__watermark--top-right { right: 14px; top: 14px; }
.base-bento-hero__watermark--bottom-left { bottom: -18px; left: -14px; }
.base-bento-hero__watermark--top-left { left: 14px; top: 14px; }

.base-bento-hero__skin--scarlet {
	background: linear-gradient(135deg, #d13e43 0%, #b03338 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.28);
	color: #fff;
}

.base-bento-hero__skin--ocean {
	background: linear-gradient(145deg, #1a2b6b 0%, #273d8f 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.28);
	color: #fff;
}

.base-bento-hero__skin--light {
	background: linear-gradient(135deg, #fff9f0 0%, #f4efe6 100%);
	border: 1px solid rgba(255, 255, 255, 0.72);
	box-shadow: inset 0 1px 0 #fff, 0 8px 24px rgba(0, 0, 0, 0.1);
	color: #0d1636;
}

.base-bento-hero__skin--light .base-bento-hero__stat-icon {
	background: rgba(13, 22, 54, 0.08);
	border-color: rgba(13, 22, 54, 0.12);
	color: #273d8f;
}

.base-bento-hero__skin--light .base-bento-hero__stat-number,
.base-bento-hero__skin--light .base-bento-hero__stat-label,
.base-bento-hero__skin--light .base-bento-hero__stat-title {
	color: #0d1636;
}

.base-bento-hero__sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.base-bento-hero a:focus-visible,
.base-bento-hero button:focus-visible,
.base-bento-hero [tabindex]:focus-visible {
	outline: 3px solid #ffd166;
	outline-offset: 3px;
}

.base-bento-hero.is-single-slide .base-bento-hero__controls {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.base-bento-hero[data-reduced-motion="respect"] *,
	.base-bento-hero[data-reduced-motion="always"] * {
		animation: none !important;
		transition: none !important;
	}
}

@container (max-width: 1180px) {
	.base-bento-hero {
		--base-bento-main-min-height: clamp(360px, 44svh, 500px);
		--base-bento-media-min-height: clamp(300px, 45vw, 520px);
	}

	.base-bento-hero__grid {
		grid-template-areas:
			"main main"
			"media media"
			"mini-a mini-b";
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-rows:
			minmax(var(--base-bento-main-min-height), auto)
			minmax(var(--base-bento-media-min-height), auto)
			minmax(var(--base-bento-mini-min-height), auto);
	}

	.base-bento-hero__media {
		min-height: var(--base-bento-media-min-height);
	}
}

@media (max-width: 1180px) {
	.base-bento-hero {
		--base-bento-main-min-height: clamp(360px, 44svh, 500px);
		--base-bento-media-min-height: clamp(300px, 45vw, 520px);
	}

	.base-bento-hero__grid {
		grid-template-areas:
			"main main"
			"media media"
			"mini-a mini-b";
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-rows:
			minmax(var(--base-bento-main-min-height), auto)
			minmax(var(--base-bento-media-min-height), auto)
			minmax(var(--base-bento-mini-min-height), auto);
	}

	.base-bento-hero__media {
		min-height: var(--base-bento-media-min-height);
	}
}

@media (min-width: 768px) and (max-width: 880px) {
	.base-bento-hero {
		--base-bento-main-min-height: clamp(320px, 42svh, 440px);
		--base-bento-media-min-height: clamp(260px, 56vw, 380px);
		--base-bento-mini-min-height: 164px;
	}

	.base-bento-hero__wrap {
		width: min(100%, 720px);
	}

	.base-bento-hero__main {
		padding: clamp(24px, 5vw, 34px);
	}

	.base-bento-hero__slide-content {
		gap: clamp(18px, 4vw, 28px);
		justify-content: flex-start !important;
		min-height: 0 !important;
		padding-bottom: 0;
		padding-right: 0;
	}

	.base-bento-hero__slide-footer {
		margin-top: auto;
		padding-top: clamp(18px, 5vw, 28px);
	}

	.base-bento-hero__title {
		font-size: clamp(2.15rem, 9vw, 3rem);
		line-height: 1.08;
		max-width: none;
		text-wrap: pretty;
	}

	.base-bento-hero__description {
		font-size: clamp(1rem, 3.8vw, 1.12rem);
		line-height: 1.55;
		max-width: 34ch;
	}

	.base-bento-hero__controls {
		bottom: 14px;
		gap: 8px;
		left: 14px;
	}

	.base-bento-hero__control {
		height: 44px;
		width: 44px;
	}
}

@container (max-width: 767px) {
	.base-bento-hero {
		--base-bento-main-min-height: 0px;
		--base-bento-media-min-height: clamp(240px, 68vw, 360px);
		--base-bento-mini-min-height: 168px;
	}

	.base-bento-hero__wrap { width: min(92%, 720px); }

	.base-bento-hero__grid {
		gap: 10px;
		grid-template-areas:
			"main"
			"media"
			"mini-a"
			"mini-b";
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows:
			auto
			minmax(var(--base-bento-media-min-height), auto)
			minmax(var(--base-bento-mini-min-height), auto)
			minmax(var(--base-bento-mini-min-height), auto);
	}
}

@media (max-width: 767px) {
	.base-bento-hero {
		--base-bento-main-min-height: 0px !important;
		--base-bento-media-min-height: clamp(240px, 68vw, 360px);
		--base-bento-mini-min-height: 168px;
	}

	.base-bento-hero__wrap { width: min(92%, 720px); }

	.base-bento-hero__grid {
		gap: 10px;
		grid-template-areas:
			"main"
			"media"
			"mini-a"
			"mini-b";
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows:
			auto
			minmax(var(--base-bento-media-min-height), auto)
			minmax(var(--base-bento-mini-min-height), auto)
			minmax(var(--base-bento-mini-min-height), auto) !important;
	}

	.base-bento-hero__main {
		align-self: start !important;
		height: auto !important;
		min-height: 0 !important;
		padding: 32px 24px 24px;
	}

	.base-bento-hero__mobile-main-fallback {
		display: block;
	}

	.base-bento-hero__mobile-media-fallback {
		display: block;
		height: 100%;
		min-height: var(--base-bento-media-min-height);
	}

	.base-bento-hero__mobile-media-fallback .base-bento-hero__media-visual {
		height: 100%;
		min-height: var(--base-bento-media-min-height);
	}

	.base-bento-hero__main > .base-bento-hero__slider,
	.base-bento-hero__media > .base-bento-hero__slide-panel,
	.base-bento-hero__media > .base-bento-hero__controls {
		display: none !important;
	}

	.base-bento-hero__slider,
	.base-bento-hero__main .base-bento-hero__slide-panel,
	.base-bento-hero__track--left,
	.base-bento-hero__main-slide,
	.base-bento-hero__slide-content {
		height: auto !important;
		min-height: 0 !important;
	}

	.base-bento-hero__slide-content {
		gap: clamp(18px, 4vw, 28px);
		justify-content: flex-start !important;
		max-width: 100% !important;
		padding-bottom: 0;
		padding-right: 0;
	}

	.base-bento-hero__mobile-main-fallback .base-bento-hero__slide-footer {
		margin-top: 0 !important;
		opacity: 1 !important;
		padding-top: clamp(12px, 4vw, 20px) !important;
		visibility: visible !important;
	}

	.base-bento-hero__title {
		font-size: clamp(1.95rem, 9.8vw, 2.65rem);
		line-height: 1.1;
		max-width: none;
		text-wrap: pretty;
	}

	.base-bento-hero__description {
		font-size: clamp(1rem, 3.8vw, 1.12rem);
		line-height: 1.55;
		max-width: none;
	}

	.base-bento-hero__actions {
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 12px 18px;
	}

	.base-bento-hero__button--primary {
		min-height: 48px;
		padding-inline: 28px;
	}

	.base-bento-hero__support-images {
		flex-wrap: wrap;
	}

	.base-bento-hero__badge,
	.base-bento-hero__media-logos {
		bottom: 16px;
		max-width: calc(100% - 32px);
		right: 16px;
	}

	.base-bento-hero__media-logos { padding: 12px 16px; }
	.base-bento-hero__media-logo { height: 40px; max-width: 112px; }
}

@media (max-width: 420px) {
	.base-bento-hero__main { padding: 28px 22px 22px; }
	.base-bento-hero__button--primary { flex: 1 1 100%; width: 100%; }
	.base-bento-hero__link-arrow { min-height: 40px; }
}

@supports (-webkit-touch-callout: none) {
	@media (max-width: 767px) {
		.base-bento-hero__main,
		.base-bento-hero__mobile-main-fallback,
		.base-bento-hero__mobile-main-fallback .base-bento-hero__slide-content,
		.base-bento-hero__mobile-main-fallback .base-bento-hero__slide-footer {
			block-size: auto !important;
			height: auto !important;
			min-block-size: 0 !important;
			min-height: 0 !important;
		}
	}
}

/* BASE Elementor Plus 0.1.68: Safari stacked-grid row sizing fix.
   Safari can over-resolve percentage heights inside CSS grid rows when the bento
   layout stacks to one column. The previous mobile rows used minmax(..., auto)
   while the media tile and its slider descendants still carried height:100%, which
   let WebKit inflate the grid to a huge phantom height. Use auto grid rows at
   stacked widths and put the intended heights on the tiles themselves. */
@media (max-width: 1180px) {
	.base-bento-hero__grid {
		align-items: start !important;
		grid-auto-rows: auto !important;
	}

	.base-bento-hero__grid > .base-bento-hero__surface {
		min-width: 0 !important;
	}

	.base-bento-hero__main {
		height: auto !important;
		min-height: var(--base-bento-main-min-height) !important;
	}

	.base-bento-hero__media {
		height: var(--base-bento-media-min-height) !important;
		min-height: 0 !important;
		position: relative;
	}

	.base-bento-hero__media > .base-bento-hero__slide-panel {
		inset: 0 !important;
		height: auto !important;
		min-height: 0 !important;
		position: absolute !important;
	}

	.base-bento-hero__media .base-bento-hero__track,
	.base-bento-hero__media .base-bento-hero__slide,
	.base-bento-hero__media .base-bento-hero__media-visual {
		height: 100% !important;
		min-height: 0 !important;
	}
}

@container (max-width: 767px) {
	.base-bento-hero__grid {
		grid-template-rows: auto auto auto auto !important;
	}
}

@media (max-width: 767px) {
	.base-bento-hero__grid {
		grid-template-rows: auto auto auto auto !important;
	}

	.base-bento-hero__main {
		min-height: 0 !important;
	}

	.base-bento-hero__media {
		height: auto !important;
		min-height: 0 !important;
	}

	.base-bento-hero__mobile-media-fallback {
		height: var(--base-bento-media-min-height) !important;
		min-height: 0 !important;
	}

	.base-bento-hero__mobile-media-fallback .base-bento-hero__media-visual,
	.base-bento-hero__mobile-media-fallback .base-bento-hero__media-image {
		height: 100% !important;
		min-height: 0 !important;
	}

	.base-bento-hero__mini-card {
		height: auto !important;
		min-height: var(--base-bento-mini-min-height) !important;
	}
}

