.pf-hero {
	position: relative;
	overflow: hidden;
	border-radius: var(--pf-radius-lg);
	background: var(--pf-ink-2);
	color: #fff;
	font-family: var(--pf-font);
	height: var(--pf-hero-h-sm, 340px);
}

.pf-hero__track {
	display: flex;
	height: 100%;
	transition: transform .55s var(--pf-ease);
}

.pf-hero__slide {
	position: relative;
	flex: 0 0 100%;
	min-width: 100%;
	height: 100%;
	overflow: hidden;
}

.pf-hero__media {
	position: absolute;
	inset: 0;
	display: block;
}

.pf-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pf-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(10, 11, 13, calc(var(--pf-hero-overlay, .55) + .35)) 0%, rgba(10, 11, 13, var(--pf-hero-overlay, .55)) 45%, rgba(10, 11, 13, .08) 100%),
		linear-gradient(0deg, rgba(10, 11, 13, .6) 0%, transparent 55%);
}

.pf-hero__body {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	max-width: 560px;
	padding: 32px 24px;
}

.pf-hero__slide.pf-hero__slide.is-center .pf-hero__body {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
	align-items: center;
}

.pf-hero.pf-hero .pf-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	padding: 5px 10px;
	border-radius: 4px;
	background: var(--pf-brand);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.pf-hero__slide.pf-hero__slide.is-center .pf-hero__eyebrow {
	align-self: center;
}

.pf-hero__pip {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .8);
}

.pf-hero.pf-hero .pf-hero__title {
	margin: 14px 0 0;
	font-family: var(--pf-display);
	font-style: italic;
	font-weight: 800;
	font-size: clamp(32px, 5vw, 56px);
	line-height: .9;
	letter-spacing: -.01em;
	text-transform: uppercase;
	color: #fff;
}

.pf-hero.pf-hero .pf-hero__text {
	margin: 12px 0 0;
	max-width: 42ch;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255, 255, 255, .68);
}

.pf-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.pf-hero.pf-hero .pf-hero__note {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 16px 0 0;
	font-size: 12.5px;
	color: rgba(255, 255, 255, .5);
}

.pf-hero__note.pf-hero__note .pf-i {
	width: 16px;
	height: 16px;
}

.pf-hero__nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	transform: translateY(-50%);
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, .35);
	backdrop-filter: blur(4px);
	color: #fff;
	cursor: pointer;
	opacity: 0;
	transition: opacity .2s ease, background-color .2s ease;
}

.pf-hero.pf-hero:hover .pf-hero__nav,
.pf-hero__nav:focus-visible {
	opacity: 1;
}

.pf-hero__nav:hover {
	background: var(--pf-brand);
}

.pf-hero__nav--prev {
	left: 12px;
}

.pf-hero__nav--prev.pf-hero__nav--prev .pf-i {
	transform: rotate(180deg);
}

.pf-hero__nav--next {
	right: 12px;
}

.pf-hero__nav.pf-hero__nav .pf-i {
	width: 20px;
	height: 20px;
}

.pf-hero__meta {
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 14px;
}

.pf-hero.pf-hero .pf-hero__num {
	font-family: var(--pf-display);
	font-style: italic;
	font-weight: 700;
	font-size: 14px;
	color: rgba(255, 255, 255, .6);
	font-variant-numeric: tabular-nums;
}

.pf-hero__dots {
	display: flex;
	gap: 8px;
}

.pf-hero__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .45);
	cursor: pointer;
	transition: width .2s var(--pf-ease), background-color .2s var(--pf-ease);
}

.pf-hero__dot:hover {
	background: rgba(255, 255, 255, .8);
}

.pf-hero__dot.is-active {
	width: 28px;
	background: var(--pf-brand);
}

.pf-hero__bar {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 3;
	height: 3px;
	background: rgba(255, 255, 255, .12);
}

.pf-hero__bar-fill {
	display: block;
	width: 0;
	height: 100%;
	background: var(--pf-brand);
}

@media (min-width: 640px) {
	.pf-hero {
		height: var(--pf-hero-h, 452px);
	}

	.pf-hero__body {
		padding: 40px 56px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pf-hero__track {
		transition-duration: .001ms;
	}
}
