.bphnt {
	--bphnt-heading-bg: #421965;
	--bphnt-heading-color: #ffffff;
	--bphnt-item-bg: #ffffff;
	--bphnt-text-color: #111827;
	--bphnt-hover-color: #421965;
	--bphnt-border-color: rgba(66, 25, 101, 0.14);
	--bphnt-speed: 32s;
	display: flex;
	align-items: stretch;
	width: 100%;
	border: 1px solid var(--bphnt-border-color);
	border-radius: 14px;
	background: var(--bphnt-item-bg);
	box-shadow: 0 10px 28px rgba(66, 25, 101, 0.08);
	overflow: hidden;
	font-family: "Montserrat", sans-serif;
}

.bphnt__label {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 180px;
	padding: 0 18px;
	background: var(--bphnt-heading-bg);
	color: var(--bphnt-heading-color);
	font-family: "League Spartan", sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bphnt__viewport {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	height: 52px;
	background: var(--bphnt-item-bg);
	overflow: hidden;
}

.bphnt__track {
	display: flex;
	align-items: center;
	width: max-content;
	min-width: 100%;
	height: 100%;
	animation: bphnt-marquee var(--bphnt-speed) linear infinite;
	will-change: transform;
}

.bphnt:hover .bphnt__track {
	animation-play-state: paused;
}

.bphnt__marquee {
	display: flex;
	align-items: center;
	gap: 40px;
	margin: 0;
	padding: 0 30px;
	list-style: none;
}

.bphnt__marquee-item,
.bphnt__item {
	color: var(--bphnt-text-color);
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
}

.bphnt__link,
.bphnt__text {
	color: var(--bphnt-text-color);
	text-decoration: none;
}

.bphnt__link:hover {
	color: var(--bphnt-hover-color);
}

.bphnt--fade .bphnt__list {
	position: relative;
	height: 100%;
	margin: 0;
	padding: 0 24px;
	list-style: none;
}

.bphnt--fade .bphnt__item {
	position: absolute;
	inset: 0 24px;
	display: flex;
	align-items: center;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: none;
}

.bphnt--fade .bphnt__item.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

@keyframes bphnt-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 767px) {
	.bphnt {
		flex-direction: column;
	}

	.bphnt__label {
		min-width: auto;
		justify-content: flex-start;
		padding: 12px 16px;
	}

	.bphnt__viewport {
		height: 48px;
	}

	.bphnt__marquee-item,
	.bphnt__item {
		font-size: 13px;
	}
}
