.pfce-carousel {
	--pfce-font-family: "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--pfce-slide-width: 360px;
	--pfce-side-peek: max(18px, calc((100% - min(var(--pfce-slide-width), 100%)) / 2));
	--pfce-card-bg: #111827;
	--pfce-muted: #5b6472;
	--pfce-border: rgba(17, 24, 39, 0.13);
	--pfce-shadow-x: 0px;
	--pfce-shadow-y: 24px;
	--pfce-shadow-blur: 60px;
	--pfce-shadow-spread: 0px;
	--pfce-shadow-color: rgba(17, 24, 39, 0.13);
	--pfce-shadow: var(--pfce-shadow-x) var(--pfce-shadow-y) var(--pfce-shadow-blur) var(--pfce-shadow-spread) var(--pfce-shadow-color);
	--pfce-slide-border-width: 0px;
	--pfce-slide-border-style: solid;
	--pfce-slide-border-color: transparent;
	--pfce-panel-bg: #fff;
	--pfce-panel-opacity: 0.74;
	--pfce-panel-text: #111827;
	--pfce-panel-muted: #374151;
	--pfce-panel-blur: 18px;
	--pfce-front-overlay-bg: #ffffff;
	--pfce-front-overlay-opacity: 0.36;
	--pfce-image-hover-scale: 1.06;
	--pfce-image-hover-duration: 450ms;
	--pfce-back-bg: #111827;
	--pfce-back-accent: rgba(79, 70, 229, 0.34);
	--pfce-back-title: #ffffff;
	--pfce-back-text: rgba(255, 255, 255, 0.82);
	--pfce-back-button-bg: #ffffff;
	--pfce-back-button-text: #111827;
	--pfce-back-button-hover-bg: #eef2ff;
	--pfce-back-button-hover-text: #111827;
	--pfce-star-color: #f59e0b;
	--pfce-star-empty: rgba(17, 24, 39, 0.22);
	--pfce-arrow-hover-color: #0f766e;
	--pfce-arrow-hover-bg: #ccfbf1;
	--pfce-arrow-active-color: #fff;
	--pfce-arrow-active-bg: #0f766e;
	--pfce-eyebrow-radius: 999px;
	--pfce-corner-link-radius: 999px;
	--pfce-nav-radius: 999px;
	--pfce-back-button-radius: 999px;
	width: 100%;
	overflow: visible;
	font-family: var(--pfce-font-family);
}

.pfce-carousel button,
.pfce-carousel a,
.pfce-carousel input,
.pfce-carousel textarea {
	font-family: inherit;
}

.pfce-header {
	width: 100%;
	max-width: none;
	margin: 0 0 44px;
}

.pfce-eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 7px 18px;
	margin-bottom: 28px;
	border-radius: var(--pfce-eyebrow-radius);
	background: #ccfbf1;
	color: #0f766e;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.pfce-eyebrow-row {
	text-align: left;
	width: 100%;
}

.pfce-heading {
	margin: 0;
	color: #111827;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
}

.pfce-description {
	margin: 24px 0 0;
	color: var(--pfce-muted);
	font-size: 24px;
	line-height: 1.45;
}

.pfce-stage {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.pfce-viewport {
	width: 100%;
	overflow: hidden;
	padding: 0 0 26px;
}

.pfce-track {
	display: flex;
	gap: 32px;
	overflow-x: auto;
	overflow-y: visible;
	scroll-behavior: smooth;
	scroll-padding-inline: var(--pfce-side-peek);
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 0 var(--pfce-side-peek);
	cursor: grab;
	touch-action: pan-y;
	-webkit-overflow-scrolling: touch;
	user-select: none;
	-webkit-user-select: none;
}

.pfce-track::-webkit-scrollbar {
	display: none;
}

.pfce-track.is-dragging {
	cursor: grabbing;
}

.pfce-auto-running .pfce-track {
	scroll-behavior: auto;
	scroll-snap-type: none;
}

.pfce-slide {
	flex: 0 0 min(var(--pfce-slide-width), 100%);
	min-width: 0;
	scroll-snap-align: center;
	perspective: 1200px;
}

.pfce-card {
	position: relative;
	width: 100%;
	height: 500px;
	outline: none;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.pfce-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pfce-flip-horizontal.pfce-flip-hover .pfce-card:hover .pfce-card-inner,
.pfce-flip-horizontal.pfce-flip-hover .pfce-card:focus-within .pfce-card-inner,
.pfce-flip-horizontal.pfce-flip-click .pfce-card.is-flipped .pfce-card-inner {
	transform: rotateY(180deg);
}

.pfce-flip-vertical.pfce-flip-hover .pfce-card:hover .pfce-card-inner,
.pfce-flip-vertical.pfce-flip-hover .pfce-card:focus-within .pfce-card-inner,
.pfce-flip-vertical.pfce-flip-click .pfce-card.is-flipped .pfce-card-inner {
	transform: rotateX(180deg);
}

.pfce-card-face {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: 38px;
	border: var(--pfce-slide-border-width) var(--pfce-slide-border-style) var(--pfce-slide-border-color);
	background: #111827;
	box-shadow: var(--pfce-shadow);
	backface-visibility: hidden;
}

.pfce-card-front {
	position: absolute;
	color: var(--pfce-panel-text);
}

.pfce-card-back {
	display: flex;
	align-items: flex-end;
	color: var(--pfce-back-title);
	background:
		radial-gradient(circle at top left, var(--pfce-back-accent), transparent 36%),
		var(--pfce-back-bg);
	transform: rotateY(180deg);
}

.pfce-flip-vertical .pfce-card-back {
	transform: rotateX(180deg);
}

.pfce-image-wrap {
	position: absolute;
	inset: 0;
	height: 100% !important;
	background: #e5e7eb;
}

.pfce-image-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--pfce-image-hover-duration) ease;
	transform: scale(1);
}

.pfce-card:hover .pfce-image-wrap img {
	transform: scale(var(--pfce-image-hover-scale));
}

.pfce-image-wrap::after,
.pfce-front-content::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	pointer-events: none;
}

.pfce-image-wrap::after {
	top: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent 42%, var(--pfce-front-overlay-bg) 68%, var(--pfce-front-overlay-bg));
	opacity: var(--pfce-front-overlay-opacity);
}

.pfce-front-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	min-height: 28%;
	padding: 30px 28px 28px;
	background: transparent;
	backdrop-filter: blur(var(--pfce-panel-blur)) saturate(1.25);
	-webkit-backdrop-filter: blur(var(--pfce-panel-blur)) saturate(1.25);
	color: var(--pfce-panel-text);
	border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.pfce-front-content::before {
	top: -80px;
	height: 80px;
	opacity: var(--pfce-panel-opacity);
	background: linear-gradient(to bottom, transparent, var(--pfce-item-panel-bg, var(--pfce-panel-bg)));
}

.pfce-front-content::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: var(--pfce-panel-bg);
	background: var(--pfce-item-panel-bg, var(--pfce-panel-bg));
	opacity: var(--pfce-panel-opacity);
	opacity: var(--pfce-item-panel-opacity, var(--pfce-panel-opacity));
}

.pfce-stars {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 7px;
	margin-bottom: 18px;
	color: var(--pfce-star-empty);
	font-size: 21px;
	line-height: 1;
}

.pfce-stars .is-filled {
	color: var(--pfce-item-star-color, var(--pfce-star-color));
}

.pfce-slide-title {
	position: relative;
	z-index: 1;
	margin: 0 0 8px;
	color: inherit;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0;
}

.pfce-card-front .pfce-slide-title {
	color: var(--pfce-item-front-title-color, inherit);
	font-size: var(--pfce-item-front-title-size, 28px);
}

.pfce-slide-subtitle {
	position: relative;
	z-index: 1;
	color: var(--pfce-panel-muted);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
}

.pfce-card-front .pfce-slide-subtitle {
	color: var(--pfce-item-front-subtitle-color, var(--pfce-panel-muted));
	font-size: var(--pfce-item-front-subtitle-size, 22px);
}

.pfce-corner-link {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	border: 2px solid rgba(255, 255, 255, 0.82);
	border-radius: var(--pfce-corner-link-radius);
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	transition: transform 200ms ease, background 200ms ease;
}

.pfce-corner-link:hover {
	transform: translateY(-2px);
	color: var(--pfce-arrow-hover-color);
	background: var(--pfce-arrow-hover-bg);
}

.pfce-corner-link:active {
	color: var(--pfce-arrow-active-color);
	background: var(--pfce-arrow-active-bg);
}

.pfce-corner-link span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 30px;
	height: 30px;
	border: 0;
	background: currentColor;
	mask: url("../images/up-arrow_8885279.svg") center / contain no-repeat;
	-webkit-mask: url("../images/up-arrow_8885279.svg") center / contain no-repeat;
	transform: translate(-50%, -50%) rotate(45deg);
}

.pfce-back-content {
	width: 100%;
	padding: 34px;
	max-height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.pfce-back-text {
	margin: 16px 0 28px;
	color: var(--pfce-item-back-text-color, var(--pfce-back-text));
	font-size: 18px;
	line-height: 1.55;
}

.pfce-card-back {
	background:
		radial-gradient(circle at top left, var(--pfce-back-accent), transparent 36%),
		var(--pfce-item-back-bg, var(--pfce-back-bg));
}

.pfce-card-back .pfce-slide-title {
	color: var(--pfce-item-back-title-color, var(--pfce-back-title));
	font-size: var(--pfce-item-back-title-size, 28px);
}

.pfce-card-back .pfce-back-text {
	font-size: var(--pfce-item-back-text-size, 18px);
}

.pfce-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 20px;
	border-radius: var(--pfce-back-button-radius);
	color: var(--pfce-item-back-button-text-color, var(--pfce-back-button-text));
	background: var(--pfce-item-back-button-bg, var(--pfce-back-button-bg));
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.pfce-card-back .pfce-button {
	font-size: var(--pfce-item-back-button-size, 16px);
}

.pfce-button:hover {
	color: var(--pfce-back-button-hover-text);
	background: var(--pfce-back-button-hover-bg);
}

.pfce-arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	padding: 0;
	border: 1px solid var(--pfce-border);
	border-radius: var(--pfce-nav-radius);
	color: #111827;
	background: #fff;
	box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
	cursor: pointer;
	transform: translateY(-50%);
	transition: transform 200ms ease, border-color 200ms ease, opacity 200ms ease;
}

.pfce-arrow:hover {
	border-color: rgba(17, 24, 39, 0.34);
	color: var(--pfce-arrow-hover-color);
	background: var(--pfce-arrow-hover-bg);
	transform: translateY(-50%) scale(1.04);
}

.pfce-arrow:active {
	color: var(--pfce-arrow-active-color);
	background: var(--pfce-arrow-active-bg);
}

.pfce-arrow-prev {
	left: -30px;
}

.pfce-arrow-next {
	right: -30px;
}

.pfce-arrow span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 30px;
	height: 30px;
	border: 0;
	background: currentColor;
	mask: url("../images/up-arrow_8885279.svg") center / contain no-repeat;
	-webkit-mask: url("../images/up-arrow_8885279.svg") center / contain no-repeat;
	transform: translate(-50%, -50%);
}

.pfce-arrow-prev span {
	transform: translate(-50%, -50%) rotate(-90deg);
}

.pfce-arrow-next span {
	transform: translate(-50%, -50%) rotate(90deg);
}

.pfce-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 12px;
}

.pfce-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.18);
	cursor: pointer;
}

.pfce-dot.is-active {
	width: 28px;
	background: #111827;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.pfce-carousel {
		--pfce-slide-width: 58%;
	}

	.pfce-card {
		height: 460px;
	}

	.pfce-arrow-prev {
		left: 10px;
	}

	.pfce-arrow-next {
		right: 10px;
	}
}

@media (max-width: 767px) {
	.pfce-carousel {
		--pfce-slide-width: 84%;
	}

	.pfce-header {
		margin-bottom: 28px;
	}

	.pfce-heading {
		font-size: 34px;
	}

	.pfce-description {
		font-size: 18px;
	}

	.pfce-card {
		height: 430px;
	}

	.pfce-front-content,
	.pfce-back-content {
		padding: 26px 22px 24px;
	}

	.pfce-arrow {
		width: 48px;
		height: 48px;
	}

	.pfce-arrow-prev {
		left: 8px;
	}

	.pfce-arrow-next {
		right: 8px;
	}

	.pfce-slide-title {
		font-size: 23px;
	}

	.pfce-slide-subtitle {
		font-size: 18px;
	}
}
