/* ==========================================================================
   POM Hero Slider — frontend
   ========================================================================== */

.pom-hero {
	--pom-hero-gold: var(--color-gold, #f5c518);
	position: relative;
	overflow: hidden;
	isolation: isolate;
	width: 100%;
	/* Solid backdrop so nothing white shows through while slides crossfade. */
	background-color: var(--hs-bg, #013a22);
}

/* Crossfade stack: all slides share one grid cell so the track auto-sizes
   to the tallest slide (no absolute-positioning height guesswork). */
.pom-hero__track {
	display: grid;
	background-color: var(--hs-bg, #013a22);
}

.pom-hero__slide {
	grid-area: 1 / 1;
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--hs-bg, #013a22);
	opacity: 0;
	visibility: hidden;
	transform: scale(1.06);
	transform-origin: center;
	/* Outgoing slide holds fully opaque (opacity drops instantly after the
	   incoming has faded in on top) so the two slides never overlap while
	   both are semi-transparent — this is what caused the white flash. */
	transition: opacity 0s linear 0.9s, transform 1.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.9s;
	will-change: opacity, transform;
}

.pom-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	z-index: 2;
	transition: opacity 0.9s ease, transform 1.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}

.pom-hero--full .pom-hero__slide {
	min-block-size: 100dvh;
}

.pom-hero--auto .pom-hero__slide {
	min-block-size: min(46rem, 90vh);
}

/* Background image + gradient overlay */
.pom-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.pom-hero__video {
	position: absolute;
	inset: 0;
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	pointer-events: none;
}

/* Mobile clip hidden until a slide provides one. */
.pom-hero__video--mobile {
	display: none;
}

/* Swap desktop/mobile sources when a mobile video is uploaded. */
@media (max-width: 767.98px) {
	.pom-hero__slide--has-mobile-video .pom-hero__video--desktop {
		display: none;
	}

	.pom-hero__slide--has-mobile-video .pom-hero__video--mobile {
		display: block;
	}

	.pom-hero__slide--video-full.pom-hero__slide--has-mobile-video .pom-hero__video-panel--mobile {
		aspect-ratio: 9 / 16;
		max-block-size: min(72vh, 40rem);
	}

	/* Mobile: 2 rows — video top, content bottom */
	.pom-hero__slide--video-full {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		min-block-size: auto;
	}

	.pom-hero__slide--video-full .pom-hero__video-panel--mobile {
		display: block;
		position: relative;
		inline-size: 100%;
		aspect-ratio: 16 / 9;
		overflow: hidden;
		background-color: #000;
		flex: 0 0 auto;
		margin-top: var(--header-block-size, 5rem);
	}

	.pom-hero__slide--video-full .pom-hero__video-panel--desktop {
		display: none;
	}

	.pom-hero__slide--video-full .pom-hero__inner--video-full {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		inline-size: 100%;
		max-inline-size: none;
		flex: 0 0 auto;
		padding: clamp(1.25rem, 3.5vw, 2.25rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3rem);
	}

	.pom-hero__slide--video-full .pom-hero__content {
		max-inline-size: min(42rem, 94%);
	}

	.pom-hero__slide--video-full .pom-hero__desc-wrap {
		margin-inline: auto;
	}

	.pom-hero__slide--video-full .pom-hero__actions {
		justify-content: center;
	}
}

.pom-hero__gradient {
	position: absolute;
	inset: 0;
	background: var(--hs-gradient, none);
	opacity: var(--hs-grad-opacity, 1);
	z-index: 1;
}

/* Content grid */
.pom-hero__inner {
	position: relative;
	z-index: 3;
	inline-size: 100%;
	max-inline-size: min(90rem, 92vw);
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
	align-items: center;
	gap: clamp(1rem, 3vw, 3rem);
	padding: 0;
}

.pom-hero__slide--image-left .pom-hero__content {
	order: 2;
}

.pom-hero__slide--image-left .pom-hero__visual {
	order: 1;
}

/* Full-bleed photo with text + buttons overlaid (no heart mask). */
.pom-hero__slide--image-full .pom-hero__inner {
	grid-template-columns: 1fr;
	align-content: center;
	min-block-size: inherit;
	padding: calc(var(--header-block-size, 5rem) + clamp(2rem, 6vw, 3.5rem)) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 8vw, 5rem);
}

.pom-hero__slide--image-full .pom-hero__content {
	max-inline-size: min(42rem, 94%);
}

.pom-hero__slide--image-full .pom-hero__visual {
	display: none;
}

/* Video-full
   Desktop (768px+): 1 row — content left, full-height video right
   Mobile:           2 rows — full video top, content bottom */
.pom-hero__slide--video-full .pom-hero__video-panel .pom-hero__video {
	position: absolute;
	inset: 0;
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 768px) {
	.pom-hero__slide--video-full .pom-hero__video-panel--mobile {
		display: none;
	}

	.pom-hero__slide--video-full .pom-hero__video-panel--desktop {
		position: absolute;
		inset-block: 0;
		inset-inline-end: 0;
		inset-inline-start: 0;
		z-index: 0;
		overflow: hidden;
		background-color: #000;
	}

	.pom-hero__slide--video-full .pom-hero__inner--video-full {
		position: relative;
		z-index: 2;
		grid-template-columns: 1fr;
		align-items: center;
		min-block-size: inherit;
		padding: 0;
	}

	.pom-hero__slide--video-full .pom-hero__content {
		max-inline-size: min(34rem, 38vw);
		text-align: start;
	}

	.pom-hero__slide--video-full .pom-hero__desc-wrap {
		margin-inline: 0;
	}

	.pom-hero__slide--video-full .pom-hero__actions {
		justify-content: flex-start;
	}
}

/* Subtle left scrim when no custom gradient is set (keeps copy readable). */
.pom-hero__slide--image-full:not(:has(.pom-hero__gradient))::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		105deg,
		color-mix(in srgb, var(--hs-bg, #013a22) 78%, transparent) 0%,
		color-mix(in srgb, var(--hs-bg, #013a22) 42%, transparent) 38%,
		transparent 72%
	);
	pointer-events: none;
}

/* ---------- Content ---------- */
.pom-hero__content {
	color: var(--hs-text, #fff);
	/* Cap width so the copy never slips under the edge-anchored heart. */
	max-inline-size: min(34rem, 38vw);
}

.pom-hero__title {
	font-family: var(--font-heading, "Georgia", serif);
	color: inherit;
	margin: 0;
	font-size: clamp(2.75rem, 6vw + 0.5rem, 5.5rem);
	line-height: 1.02;
	letter-spacing: -0.01em;
}

.pom-hero__title-main {
	display: block;
	font-weight: 400;
}

.pom-hero__title-accent {
	display: block;
	font-style: italic;
	font-weight: 700;
}

.pom-hero__desc-wrap {
	display: flex;
	flex-direction: column;
	gap: clamp(0.85rem, 1.6vw, 1.35rem);
	margin: clamp(1rem, 2vw, 1.75rem) 0 0;
	max-inline-size: 38ch;
}

.pom-hero__desc {
	font-family: var(--font-body, system-ui, sans-serif);
	color: inherit;
	margin: 0;
	font-size: clamp(1rem, 0.6vw + 0.9rem, 1.2rem);
	line-height: 1.6;
	opacity: 0.92;
}

.pom-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(0.75rem, 1.5vw, 1.1rem);
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.pom-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: var(--pom-arrow-gap, 0.4rem);
	padding: 0.95em 1.7em;
	border-radius: 100px;
	font-family: var(--font-body, system-ui, sans-serif);
	font-weight: 600;
	font-size: clamp(0.9rem, 0.4vw + 0.8rem, 1rem);
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.pom-hero__btn--primary::after {
	content: '';
}

.pom-hero__btn--primary {
	background: var(--pom-hero-gold);
	color: #1a1208;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.pom-hero__btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.pom-hero__btn--primary:hover::after {
	transform: translateX(4px);
}

.pom-hero__btn--ghost {
	background: transparent;
	color: var(--hs-text, #fff);
	border-color: color-mix(in srgb, var(--hs-text, #fff) 55%, transparent);
}

.pom-hero__btn--ghost:hover {
	background: color-mix(in srgb, var(--hs-text, #fff) 12%, transparent);
	transform: translateY(-2px);
}

/* ---------- Heart visual ---------- */
.pom-hero__visual {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	transform: translate(var(--hs-heart-x, 0), var(--hs-heart-y, 0)) scale(var(--hs-heart-scale, 1));
}

.pom-hero__figure {
	position: relative;
	/* Large heart, right edge flush to the screen edge. */
	inline-size: min(56vw, 70rem);
	max-inline-size: none;
	flex-shrink: 0;
	/* Cancel the inner's centering margin so the figure's right edge meets the viewport edge. */
	margin-inline-end: calc((min(90rem, 92vw) - 100vw) / 2);
	aspect-ratio: 1024 / 912;
	transform-origin: center;
	animation: pom-hero-heartbeat 4.5s ease-in-out infinite;
}

.pom-hero__main,
.pom-hero__main--video,
.pom-hero__heart {
	position: absolute;
	inset: 0;
	inline-size: 100%;
	block-size: 100%;
}

.pom-hero__photo-mask {
	position: absolute;
	inset: 0;
	inline-size: 100%;
	block-size: 100%;
}

.pom-hero__photo-mask .pom-hero__main,
.pom-hero__photo-mask .pom-hero__main--video {
	position: absolute;
	inset: 0;
	inline-size: 100%;
	block-size: 100%;
}

/* Photo clipped to the mask shape (heart by default) */
.pom-hero__main,
.pom-hero__main--video {
	object-fit: cover;
	-webkit-mask-image: var(--hs-mask);
	mask-image: var(--hs-mask);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: var(--hs-mask-scale, 100%);
	mask-size: var(--hs-mask-scale, 100%);
	filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

/* Gold splash frame (transparent PNG) layered over the masked photo */
.pom-hero__heart {
	object-fit: contain;
	pointer-events: none;
	filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.3));
}

.pom-hero__heart--mobile {
	display: none;
}

/* Tablet + mobile: use the uploaded mobile heart frame when one is set */
@media (max-width: 991px) {
	.pom-hero__slide--has-mobile-heart .pom-hero__heart--mobile {
		display: block;
	}

	.pom-hero__slide--has-mobile-heart .pom-hero__heart--desktop {
		display: none;
	}

	/* Split layouts: clip photo to the mobile heart cutout, frame overlay on top */
	.pom-hero__slide--has-mobile-heart:not(.pom-hero__slide--video-full) .pom-hero__visual {
		transform: none;
	}

	.pom-hero__slide--has-mobile-heart:not(.pom-hero__slide--video-full) .pom-hero__figure {
		aspect-ratio: 1685 / 1615;
		inline-size: min(92vw, 30rem);
	}

	.pom-hero__slide--has-mobile-heart:not(.pom-hero__slide--video-full) .pom-hero__photo-mask--mobile-heart {
		-webkit-mask-image: var(--hs-mobile-heart-clip, var(--hs-mask));
		mask-image: var(--hs-mobile-heart-clip, var(--hs-mask));
		-webkit-mask-size: cover;
		mask-size: cover;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
	}

	.pom-hero__slide--has-mobile-heart:not(.pom-hero__slide--video-full) .pom-hero__photo-mask--mobile-heart .pom-hero__main,
	.pom-hero__slide--has-mobile-heart:not(.pom-hero__slide--video-full) .pom-hero__photo-mask--mobile-heart .pom-hero__main--video {
		-webkit-mask-image: none;
		mask-image: none;
		filter: none;
		object-fit: cover;
		object-position: center;
	}

	.pom-hero__slide--has-mobile-heart:not(.pom-hero__slide--video-full) .pom-hero__heart--mobile {
		object-fit: cover;
		object-position: center;
		z-index: 1;
	}

	/* Video-full: heart overlay on the mobile video panel (phones) */
	.pom-hero__slide--video-full.pom-hero__slide--has-mobile-heart .pom-hero__video-panel--mobile .pom-hero__video {
		-webkit-mask-image: var(--hs-mobile-heart-clip, var(--hs-mask));
		mask-image: var(--hs-mobile-heart-clip, var(--hs-mask));
		-webkit-mask-size: cover;
		mask-size: cover;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
	}

	.pom-hero__slide--video-full .pom-hero__video-panel--mobile .pom-hero__heart--mobile {
		position: absolute;
		inset: 0;
		inline-size: 100%;
		block-size: 100%;
		object-fit: cover;
		object-position: center;
		z-index: 2;
	}
}

/* Smooth, slow heartbeat swell for the heart figure */
@keyframes pom-hero-heartbeat {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.035);
	}
}

/* ---------- Entrance choreography (re-runs each time a slide activates) ---------- */
.pom-hero__slide .pom-hero__content > *,
.pom-hero__slide .pom-hero__visual {
	opacity: 0;
}

/* Copy: staggered rise with a soft focus-in blur. */
.pom-hero__slide.is-active .pom-hero__content > * {
	animation: pom-hero-rise 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pom-hero__slide.is-active .pom-hero__content > *:nth-child(1) { animation-delay: 0.28s; }
.pom-hero__slide.is-active .pom-hero__content > *:nth-child(2) { animation-delay: 0.42s; }
.pom-hero__slide.is-active .pom-hero__content > *:nth-child(3) { animation-delay: 0.56s; }
.pom-hero__slide.is-active .pom-hero__content > *:nth-child(4) { animation-delay: 0.7s; }

/* Heart visual: glides in from the right and scales up into place. */
.pom-hero__slide.is-active .pom-hero__visual {
	animation: pom-hero-reveal 1.35s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

@keyframes pom-hero-rise {
	from {
		opacity: 0;
		translate: 0 38px;
		filter: blur(9px);
	}
	to {
		opacity: 1;
		translate: 0 0;
		filter: blur(0);
	}
}

@keyframes pom-hero-reveal {
	0% {
		opacity: 0;
		translate: 46px 0;
		scale: 0.9;
	}
	60% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		translate: 0 0;
		scale: 1;
	}
}

/* ---------- Navigation ---------- */
.pom-hero__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	inline-size: clamp(2.75rem, 4vw, 3.5rem);
	block-size: clamp(2.75rem, 4vw, 3.5rem);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid color-mix(in srgb, #fff 30%, transparent);
	border-radius: 50%;
	cursor: pointer;
	color: var(--hs-text, #fff);
	background: color-mix(in srgb, #fff 8%, transparent);
	backdrop-filter: blur(10px) saturate(140%);
	-webkit-backdrop-filter: blur(10px) saturate(140%);
	opacity: 0.65;
	transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.3s ease;
}

.pom-hero__nav svg {
	inline-size: 1.35rem;
	block-size: 1.35rem;
}

.pom-hero:hover .pom-hero__nav {
	opacity: 1;
}

.pom-hero__nav:hover {
	background: var(--pom-hero-gold);
	border-color: var(--pom-hero-gold);
	color: var(--color-green-900, #013a22);
	opacity: 1;
}

.pom-hero__nav:focus-visible {
	outline: none;
	opacity: 1;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--pom-hero-gold) 55%, transparent);
}

.pom-hero__nav--prev {
	left: clamp(0.75rem, 2vw, 2rem);
}

.pom-hero__nav--next {
	right: clamp(0.75rem, 2vw, 2rem);
}

.pom-hero__nav--prev:hover {
	transform: translateY(-50%) translateX(-3px);
}

.pom-hero__nav--next:hover {
	transform: translateY(-50%) translateX(3px);
}

/* ---------- Pagination (expanding pills + progress) ---------- */
.pom-hero__dots {
	position: absolute;
	left: 50%;
	bottom: clamp(1.25rem, 3vw, 2.25rem);
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.pom-hero__dot {
	position: relative;
	inline-size: 0.55rem;
	block-size: 0.55rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	overflow: hidden;
	background: color-mix(in srgb, #fff 38%, transparent);
	transition: inline-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), background-color 0.3s ease;
}

.pom-hero__dot:hover {
	background: color-mix(in srgb, #fff 70%, transparent);
}

.pom-hero__dot.is-active {
	inline-size: 2.75rem;
	cursor: default;
	background: color-mix(in srgb, #fff 24%, transparent);
}

.pom-hero__dot-progress {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: var(--pom-hero-gold);
	transform: scaleX(0);
	transform-origin: left center;
	opacity: 0;
}

/* Active pill shows the gold fill; full by default (autoplay off / reduced motion). */
.pom-hero__dot.is-active .pom-hero__dot-progress {
	opacity: 1;
	transform: scaleX(1);
}

@keyframes pom-hero-dot-fill {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
	.pom-hero__inner:not(.pom-hero__inner--video-full) {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: clamp(1.5rem, 5vw, 2.75rem);
		padding-block: calc(var(--header-block-size, 5rem) + clamp(2rem, 8vw, 3.5rem)) clamp(2.5rem, 8vw, 4rem);
	}

	.pom-hero__slide--image-left .pom-hero__content,
	.pom-hero__slide--image-left .pom-hero__visual {
		order: initial;
	}

	/* Image sits above the copy on stacked layouts */
	.pom-hero__inner:not(.pom-hero__inner--video-full) .pom-hero__content {
		order: 2;
		max-inline-size: 40rem;
	}

	.pom-hero__inner:not(.pom-hero__inner--video-full) .pom-hero__visual {
		order: 1;
		justify-content: center;
	}

	.pom-hero__inner:not(.pom-hero__inner--video-full) .pom-hero__desc-wrap {
		margin-inline: auto;
	}

	.pom-hero__inner:not(.pom-hero__inner--video-full) .pom-hero__actions {
		justify-content: center;
	}

	.pom-hero__inner:not(.pom-hero__inner--video-full) .pom-hero__figure {
		inline-size: min(82vw, 32rem);
		margin-inline-end: 0;
	}

	.pom-hero--full .pom-hero__slide {
		min-block-size: auto;
	}

	.pom-hero__slide--image-full .pom-hero__inner {
		text-align: center;
		justify-items: center;
	}

	.pom-hero__slide--image-full .pom-hero__content {
		max-inline-size: 40rem;
	}

	.pom-hero__slide--image-full .pom-hero__desc-wrap {
		margin-inline: auto;
	}

	.pom-hero__slide--image-full .pom-hero__actions {
		justify-content: center;
	}
}

/* Tablet (768–1024px): stack the video-full slide like the mobile 2-row
   layout — portrait MOBILE video on top, content below. Overrides the
   min-width:768px desktop overlay above (same specificity, later in source). */
@media (min-width: 768px) and (max-width: 1024px) {
	.pom-hero--full .pom-hero__slide--video-full,
	.pom-hero--auto .pom-hero__slide--video-full {
		min-block-size: auto;
	}

	.pom-hero__slide--video-full {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
	}

	/* Show the portrait mobile video, hide the landscape desktop video. */
	.pom-hero__slide--video-full .pom-hero__video-panel--desktop {
		display: none;
	}

	.pom-hero__slide--video-full .pom-hero__video-panel--mobile {
		display: block;
		position: relative;
		inline-size: 100%;
		aspect-ratio: 9 / 16;
		max-block-size: min(80vh, 42rem);
		overflow: hidden;
		background-color: #000;
		flex: 0 0 auto;
		/* Reserve space for the fixed header. Its real height is width-driven
		   (logo ≈ 4vw + 1rem plus padding), which can exceed the height-based
		   --header-block-size on short viewports and let the logo overlap the
		   video. max() guarantees the video always clears the actual header. */
		margin-top: max(var(--header-block-size, 5rem), calc(4vw + 3rem));
	}

	.pom-hero__slide--video-full .pom-hero__inner--video-full {
		position: relative;
		z-index: 2;
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		inline-size: 100%;
		max-inline-size: none;
		flex: 0 0 auto;
		padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 3rem) clamp(2.5rem, 5vw, 3.5rem);
	}

	.pom-hero__slide--video-full .pom-hero__content {
		max-inline-size: min(46rem, 92%);
		text-align: center;
	}

	.pom-hero__slide--video-full .pom-hero__desc-wrap {
		margin-inline: auto;
	}

	.pom-hero__slide--video-full .pom-hero__actions {
		justify-content: center;
	}
}

@media (max-width: 600px) {
	.pom-hero__figure {
		inline-size: min(86vw, 24rem);
	}

	.pom-hero__slide--has-mobile-heart:not(.pom-hero__slide--video-full) .pom-hero__figure {
		inline-size: min(92vw, 22rem);
	}

	.pom-hero__nav {
		display: none;
	}
}

/* Motion-safety */
@media (prefers-reduced-motion: reduce) {
	.pom-hero__slide,
	.pom-hero__figure,
	.pom-hero__btn,
	.pom-hero__nav,
	.pom-hero__dot,
	.pom-hero__dot-progress {
		transition: none;
		animation: none;
	}

	.pom-hero__slide {
		transform: none;
	}

	.pom-hero__dot.is-active .pom-hero__dot-progress {
		transform: scaleX(1);
	}

	.pom-hero__slide .pom-hero__content > *,
	.pom-hero__slide .pom-hero__visual {
		opacity: 1;
		translate: 0 0;
		scale: 1;
		filter: none;
	}
}
