.sw-immersive-hero-widget {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 0;
	box-sizing: border-box;
}

.sw-immersive-hero {
	position: relative;
	overflow: hidden;
	min-height: 760px;
	border-radius: 26px;
	background: #131c2e;
	color: #f4f7ff;
	isolation: isolate;
}

.sw-immersive-hero__media,
.sw-immersive-hero__overlay {
	position: absolute;
	inset: 0;
}

.sw-immersive-hero__media img,
.sw-immersive-hero__media video,
.sw-immersive-hero__media iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}

.sw-immersive-hero__overlay {
	z-index: 1;
	background: var(--sw-immersive-overlay, rgba(11, 18, 34, 0.48));
}

.sw-immersive-hero__frame {
	position: relative;
	z-index: 2;
	min-height: 760px;
	padding: 22px 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* ===== ENTRANCE ANIMATIONS ===== */
.sw-immersive-hero-widget .sw-immersive-animate-item {
	opacity: 0;
	transform: translate3d(0, 36px, 0) scale(0.97);
	filter: blur(6px);
	transition:
		opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--sw-immersive-enter-delay, 0ms);
	will-change: opacity, transform;
}

.sw-immersive-hero-widget.is-sw-immersive-visible .sw-immersive-animate-item {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	filter: blur(0);
}

.sw-immersive-hero-widget:not(.is-sw-immersive-visible) .sw-immersive-hero__menu-list li.sw-immersive-animate-item {
	transform: translate3d(0, -14px, 0);
}

.sw-immersive-hero-widget:not(.is-sw-immersive-visible) .sw-immersive-hero__title.sw-immersive-animate-item,
.sw-immersive-hero-widget:not(.is-sw-immersive-visible) .sw-immersive-hero__description.sw-immersive-animate-item {
	transform: translate3d(-22px, 32px, 0) scale(0.965);
}

.sw-immersive-hero-widget:not(.is-sw-immersive-visible) .sw-immersive-hero__buttons.sw-immersive-animate-item {
	transform: translate3d(0, 30px, 0) scale(0.98);
}

.sw-immersive-hero-widget:not(.is-sw-immersive-visible) .sw-immersive-hero__feature.sw-immersive-animate-item {
	transform: translate3d(24px, 32px, 0) scale(0.965);
}

.sw-immersive-hero-widget:not(.is-sw-immersive-visible) .sw-immersive-hero__tag.sw-immersive-animate-item {
	transform: translate3d(0, 16px, 0) scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
	.sw-immersive-hero-widget .sw-immersive-animate-item,
	.sw-immersive-hero-widget.is-sw-immersive-visible .sw-immersive-animate-item {
		opacity: 1;
		transform: none;
		filter: none;
		transition: none;
	}
}

/* ===== MENU ===== */
.sw-immersive-hero__header {
	width: 100%;
	max-width: 820px;
	margin: 12px auto 0;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 22px;
	padding: 9px 18px;
	min-height: 56px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	background: rgba(227, 236, 255, 0.09);
	backdrop-filter: blur(10px);
	transition:
		background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.sw-immersive-hero__logo {
	display: inline-flex;
	align-items: center;
	align-self: center;
}

.sw-immersive-hero__logo-link {
	display: inline-flex;
	text-decoration: none;
}

.sw-immersive-hero__logo img {
	width: 128px;
	height: auto;
	max-width: 100%;
	display: block;
	object-fit: contain;
	transition:
		opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, filter, transform;
}

.sw-immersive-hero__logo img.is-logo-swapping {
	opacity: 0.06;
	filter: blur(4px);
	transform: scale(0.98);
}

.sw-immersive-hero__logo-text {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f4f8ff;
}

.sw-immersive-hero__menu-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sw-immersive-hero__menu-list li {
	margin: 0;
	padding: 0;
}

.sw-immersive-hero__menu-list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(246, 250, 255, 0.9);
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.01em;
	padding: 6px 0;
	transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	vertical-align: middle;
}

.sw-immersive-hero__menu-list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -7px;
	height: 1.5px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	opacity: 0;
	transform: scaleX(0.65);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sw-immersive-hero__menu-list a:hover,
.sw-immersive-hero__menu-list a:focus-visible {
	color: #ffffff;
	opacity: 1;
	outline: none;
}

.sw-immersive-hero__menu-list a:hover::after,
.sw-immersive-hero__menu-list a:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.sw-immersive-hero__header-actions {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	align-self: center;
	gap: 10px;
}

.sw-immersive-hero__socials {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.sw-immersive-hero__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	border: 1px solid var(--sw-immersive-social-border, rgba(255, 255, 255, 0.24));
	background: var(--sw-immersive-social-bg, rgba(255, 255, 255, 0.1));
	color: #ffffff !important;
	text-decoration: none;
	font-size: 14px;
	line-height: 1;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sw-immersive-hero-widget[data-social-state="inside"] .sw-immersive-hero__social-link,
.sw-immersive-hero-widget[data-social-state="inside"] .sw-immersive-hero__social-link i,
.sw-immersive-hero-widget[data-social-state="inside"] .sw-immersive-hero__social-link svg,
.sw-immersive-hero-widget[data-social-state="inside"] .sw-immersive-hero__social-link path {
	color: #ffffff !important;
	fill: #ffffff !important;
	stroke: #ffffff !important;
}

.sw-immersive-hero-widget[data-social-state="outside"] .sw-immersive-hero__social-link,
.sw-immersive-hero-widget[data-social-state="outside"] .sw-immersive-hero__social-link i,
.sw-immersive-hero-widget[data-social-state="outside"] .sw-immersive-hero__social-link svg,
.sw-immersive-hero-widget[data-social-state="outside"] .sw-immersive-hero__social-link path {
	color: #111111 !important;
	fill: #111111 !important;
	stroke: #111111 !important;
}

.sw-immersive-hero__social-link:hover,
.sw-immersive-hero__social-link:focus-visible {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.34);
	outline: none;
}

.sw-immersive-hero__social-link svg {
	width: 1em;
	height: 1em;
}

.sw-immersive-hero__menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(10, 17, 31, 0.42);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
}

.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: none;
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 12px !important;
	border: 1px solid rgba(255, 255, 255, 0.25) !important;
	background: rgba(10, 17, 31, 0.42) !important;
	box-shadow: none !important;
	color: #ffffff !important;
	line-height: 1 !important;
	text-decoration: none !important;
	font: inherit !important;
	cursor: pointer;
}

.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle:hover,
.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle:focus,
.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle:focus-visible,
.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle:active {
	border-color: rgba(255, 255, 255, 0.4) !important;
	background: rgba(10, 17, 31, 0.62) !important;
	outline: none !important;
	box-shadow: none !important;
}

.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle::before,
.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle::after {
	content: none !important;
	display: none !important;
}

.sw-immersive-hero__menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: #ffffff;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle span {
	background: #ffffff !important;
}

.sw-immersive-hero__mobile-panel {
	display: none;
}

.sw-immersive-hero__mobile-panel[hidden] {
	display: none !important;
}

body.sw-immersive-menu-open {
	overflow: hidden;
}

.sw-immersive-hero__header-spacer {
	height: 0;
	transition: height 0.25s ease;
}

.sw-immersive-hero-widget--sticky-enabled.is-sticky-switching .sw-immersive-hero__header-spacer {
	transition: none !important;
}

.sw-immersive-hero-widget--sticky-enabled.is-sticky-fixed .sw-immersive-hero__header {
	position: fixed;
	top: var(--sw-immersive-sticky-top, 10px);
	left: 0;
	right: 0;
	width: min(var(--sw-immersive-sticky-width, 100vw), calc(100vw - 20px));
	max-width: none;
	margin: 0 auto;
	z-index: var(--sw-immersive-sticky-z-index, 10000) !important;
	will-change: width;
	backface-visibility: hidden;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	isolation: isolate;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.sw-immersive-hero-widget--sticky-enabled.is-sticky-switching .sw-immersive-hero__header {
	transition: none !important;
}

.sw-immersive-hero-widget--sticky-enabled {
	position: relative;
}

.sw-immersive-hero-widget--sticky-enabled.is-sticky-fixed {
	z-index: var(--sw-immersive-sticky-z-index, 10000) !important;
}

.sw-immersive-hero-widget--sticky-enabled.is-sticky-fixed .sw-immersive-hero {
	overflow: visible;
}

.sw-immersive-sticky-layer-lift {
	position: relative !important;
	overflow: visible !important;
}

.sw-immersive-hero-widget--sticky-enabled.is-sticky-fixed.is-sticky-compact .sw-immersive-hero__header {
	left: max(10px, env(safe-area-inset-left));
	right: max(10px, env(safe-area-inset-right));
	width: auto;
	margin: 0;
}

.sw-immersive-hero-widget--sticky-enabled.is-sticky-fixed .sw-immersive-hero__logo {
	transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.sw-immersive-hero-widget--sticky-enabled.is-outside-hero .sw-immersive-hero__logo {
	transform: translateY(var(--sw-immersive-sticky-logo-offset, 0px));
}

.sw-immersive-hero-widget--sticky-enabled.is-outside-hero .sw-immersive-hero__header {
	background: var(--sw-immersive-sticky-bg, #ffffffde) !important;
	border-color: var(--sw-immersive-sticky-border, rgba(16, 16, 22, 0.12)) !important;
	box-shadow: 0 12px 28px rgba(15, 18, 28, 0.12);
}

.sw-immersive-hero-widget--sticky-enabled.is-outside-hero .sw-immersive-hero__menu-list a {
	color: var(--sw-immersive-sticky-menu-color, #333333) !important;
}

.sw-immersive-hero-widget--sticky-enabled.is-outside-hero .sw-immersive-hero__menu-list a::after {
	background: var(--sw-immersive-sticky-menu-active, #151515);
}

.sw-immersive-hero-widget--sticky-enabled.is-outside-hero .sw-immersive-hero__menu-list a:hover,
.sw-immersive-hero-widget--sticky-enabled.is-outside-hero .sw-immersive-hero__menu-list a:focus-visible {
	color: var(--sw-immersive-sticky-menu-hover, var(--sw-immersive-sticky-menu-active, #151515)) !important;
}

.sw-immersive-hero-widget--sticky-enabled.is-outside-hero .sw-immersive-hero__social-link {
	color: #111111 !important;
	background: var(--sw-immersive-social-sticky-bg, var(--sw-immersive-social-bg, rgba(255, 255, 255, 0.1)));
	border-color: var(--sw-immersive-social-sticky-border, var(--sw-immersive-social-border, rgba(255, 255, 255, 0.24)));
}

.sw-immersive-hero-widget--sticky-enabled.is-outside-hero .sw-immersive-hero__social-link:hover,
.sw-immersive-hero-widget--sticky-enabled.is-outside-hero .sw-immersive-hero__social-link:focus-visible {
	color: #111111 !important;
	background: var(--sw-immersive-social-sticky-bg, var(--sw-immersive-social-bg, rgba(255, 255, 255, 0.18)));
	border-color: var(--sw-immersive-social-sticky-border, var(--sw-immersive-social-border, rgba(255, 255, 255, 0.34)));
}

/* ===== CONTENIDO ===== */
.sw-immersive-hero__body {
	margin-top: auto;
	display: grid;
	grid-template-columns: minmax(280px, 1fr) auto;
	align-items: end;
	gap: 30px;
}

.sw-immersive-hero__side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

.sw-immersive-hero__content {
	max-width: 880px;
}

.sw-immersive-hero__eyebrow {
	margin: 0 0 14px;
	color: rgba(238, 245, 255, 0.82);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	line-height: 1.2;
}

.sw-immersive-hero__title {
	margin: 0;
	max-width: 680px;
	font-size: clamp(52px, 7.2vw, 82px);
	font-weight: 500;
	line-height: 0.94;
	letter-spacing: -0.026em;
	color: #f5f8ff;
	text-wrap: balance;
}

.sw-immersive-hero__title p {
	margin: 0;
}

.sw-immersive-hero__description {
	margin-top: 24px;
	max-width: 640px;
	color: rgba(245, 249, 255, 0.88);
	font-size: 34px;
	line-height: 1.16;
	font-weight: 300;
	text-wrap: pretty;
}

.sw-immersive-hero__description p {
	margin: 0;
}

.sw-immersive-hero__title em,
.sw-immersive-hero__description em {
	font-family: "Times New Roman", serif;
	font-style: italic;
}

/* ===== BOTONES ===== */
.sw-immersive-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.sw-immersive-hero__cta-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 22px;
}

.sw-immersive-hero__cta-row .sw-immersive-hero__buttons {
	margin-top: 0;
}

.sw-immersive-hero__seal {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.sw-immersive-hero__seal img {
	display: block;
	width: 190px;
	height: auto;
	max-width: 100%;
	object-fit: contain;
}

.sw-immersive-hero__edge-seal {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.sw-immersive-hero__edge-seal img {
	display: block;
	width: 168px;
	height: auto;
	max-width: 100%;
	object-fit: contain;
}

.sw-immersive-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 19px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 14px;
	line-height: 1;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sw-immersive-hero__button:hover {
	transform: translateY(-1px);
}

.sw-immersive-hero__button--primary {
	background: #f7f9ff;
	color: #1c2437;
}

.sw-immersive-hero__button--secondary {
	border: 1px solid rgba(255, 255, 255, 0.36);
	background: rgba(255, 255, 255, 0.08);
	color: #f2f7ff;
}

/* ===== TARJETA ===== */
.sw-immersive-hero__feature {
	width: 365px;
	max-width: 100%;
	border-radius: 24px;
	padding: 11px;
	display: grid;
	grid-template-columns: 102px 1fr;
	gap: 13px;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(10, 17, 33, 0.47);
	backdrop-filter: blur(8px);
	box-shadow: 0 16px 40px rgba(5, 7, 16, 0.35);
}

.sw-immersive-hero__feature-media {
	width: 102px;
	height: 102px;
	border-radius: 14px;
	overflow: hidden;
}

.sw-immersive-hero__feature-media img,
.sw-immersive-hero__feature-media video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sw-immersive-hero__feature-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sw-immersive-hero__feature-title {
	margin: 0;
	font-size: 30px;
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: -0.02em;
	color: #f4f8ff;
}

.sw-immersive-hero__feature-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	text-decoration: none;
	font-size: 14px;
	font-style: italic;
	color: rgba(245, 250, 255, 0.9);
}

/* ===== TAGS ===== */
.sw-immersive-hero__tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	padding-top: 4px;
}

.sw-immersive-hero__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(12, 19, 36, 0.45);
	color: #f3f8ff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}

.sw-immersive-hero__tag-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	opacity: 0.9;
}

.sw-immersive-hero__tag svg {
	width: 1em;
	height: 1em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.sw-immersive-hero {
		min-height: 680px;
	}

	.sw-immersive-hero__frame {
		min-height: 680px;
		padding: 16px 18px 20px;
	}

	.sw-immersive-hero__header {
		max-width: none;
		margin-top: 8px;
		border-radius: 16px;
		padding: 8px 10px 8px 12px;
		gap: 12px;
	}

	.sw-immersive-hero__menu--desktop {
		display: none;
	}

	.sw-immersive-hero__menu-toggle {
		display: inline-flex;
	}

	.sw-immersive-hero__socials {
		display: none;
	}

	.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle {
		display: inline-flex !important;
		background: transparent !important;
		border-color: transparent !important;
	}

	.sw-immersive-hero__header.is-open .sw-immersive-hero__menu-toggle span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.sw-immersive-hero__header.is-open .sw-immersive-hero__menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	.sw-immersive-hero__header.is-open .sw-immersive-hero__menu-toggle span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.sw-immersive-hero__mobile-panel {
		display: flex;
		position: fixed;
		inset: 0;
		z-index: 12000;
		padding: 92px 22px 24px;
		background: rgba(11, 18, 34, 0.56);
		backdrop-filter: blur(14px) saturate(120%);
		-webkit-backdrop-filter: blur(14px) saturate(120%);
		overflow-y: auto;
	}

	.sw-immersive-hero__mobile-close {
		position: absolute;
		top: 20px;
		right: 20px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: 0;
		background: transparent;
		color: #f6fbff;
		font-size: 34px;
		line-height: 1;
		padding: 0;
		cursor: pointer;
	}

	.sw-immersive-hero__mobile-close:hover,
	.sw-immersive-hero__mobile-close:focus,
	.sw-immersive-hero__mobile-close:focus-visible,
	.sw-immersive-hero__mobile-close:active {
		background: transparent;
		outline: none;
	}

	.sw-immersive-hero__menu--mobile {
		width: 100%;
		max-width: 520px;
		margin: 0 auto;
	}

	.sw-immersive-hero__menu-list--mobile {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 18px;
		min-height: calc(100vh - 140px);
	}

	.sw-immersive-hero__menu-list--mobile a {
		font-size: clamp(24px, 6.2vw, 38px);
		font-weight: 500;
		letter-spacing: 0.01em;
		color: #f6fbff;
		padding: 8px 0;
	}

	.sw-immersive-hero-widget--sticky-enabled.is-sticky-fixed.is-outside-hero .sw-immersive-hero__menu-toggle span {
		background: #111111 !important;
	}

	.sw-immersive-hero-widget--sticky-enabled.is-sticky-fixed .sw-immersive-hero__menu-list--mobile a {
		color: #ffffff !important;
	}

	.sw-immersive-hero-widget--sticky-enabled.is-sticky-fixed .sw-immersive-hero__menu-list--mobile a::after {
		background: #ffffff !important;
	}

	.sw-immersive-hero__menu-list--mobile a::after {
		bottom: -3px;
		height: 2px;
	}

	.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle:hover,
	.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle:focus,
	.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle:focus-visible,
	.sw-immersive-hero-widget button.sw-immersive-hero__menu-toggle:active {
		background: transparent !important;
		border-color: transparent !important;
	}

	.sw-immersive-hero__body {
		grid-template-columns: 1fr;
		align-items: end;
		gap: 18px;
	}

	.sw-immersive-hero__description {
		font-size: 28px;
	}

	.sw-immersive-hero__cta-row {
		gap: 14px;
	}

	.sw-immersive-hero__seal img {
		width: 170px;
	}

	.sw-immersive-hero__feature {
		width: 100%;
	}

	.sw-immersive-hero__side {
		align-items: stretch;
	}

	.sw-immersive-hero__edge-seal {
		justify-content: flex-start;
	}

	.sw-immersive-hero__tags {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.sw-immersive-hero-widget {
		padding: 0;
	}

	.sw-immersive-hero {
		min-height: 600px;
		border-radius: 18px;
	}

	.sw-immersive-hero__frame {
		min-height: 600px;
		padding: 12px 12px 14px;
		gap: 14px;
	}

	.sw-immersive-hero__header {
		margin-top: 4px;
		padding: 7px 8px 7px 10px;
	}

	.sw-immersive-hero__mobile-panel {
		padding: 84px 16px 18px;
	}

	.sw-immersive-hero__mobile-close {
		top: 14px;
		right: 14px;
	}

	.sw-immersive-hero__logo img {
		width: 100px;
	}

	.sw-immersive-hero__title {
		font-size: clamp(38px, 11.2vw, 58px);
	}

	.sw-immersive-hero__eyebrow {
		margin-bottom: 10px;
		font-size: 11px;
		letter-spacing: 0.16em;
	}

	.sw-immersive-hero__description {
		margin-top: 16px;
		font-size: 20px;
		line-height: 1.24;
	}

	.sw-immersive-hero__button {
		padding: 10px 14px;
		font-size: 13px;
	}

	.sw-immersive-hero__cta-row {
		gap: 10px;
	}

	.sw-immersive-hero__seal img {
		width: 150px;
	}

	.sw-immersive-hero__edge-seal img {
		width: 136px;
	}

	.sw-immersive-hero__feature {
		grid-template-columns: 84px 1fr;
		padding: 8px;
		border-radius: 16px;
	}

	.sw-immersive-hero__feature-media {
		width: 84px;
		height: 84px;
	}

	.sw-immersive-hero__feature-title {
		font-size: 24px;
	}

	.sw-immersive-hero__feature-link {
		font-size: 13px;
	}

	.sw-immersive-hero__tag {
		padding: 8px 12px;
		font-size: 12px;
	}
}
