.site-main--home {
	padding: 0;
}

.bhvn-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.65rem 1rem;
	border: 1px solid transparent;
	border-radius: var(--bhvn-radius-sm);
	font-weight: 750;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.bhvn-button--secondary {
	background: var(--bhvn-color-secondary);
	border-color: var(--bhvn-color-secondary);
	color: #fff;
}

.bhvn-button--secondary:hover {
	background: var(--bhvn-color-secondary-dark);
	border-color: var(--bhvn-color-secondary-dark);
	color: #fff;
}

.bhvn-button--outline-light {
	border-color: rgb(255 255 255 / 70%);
	color: #fff;
}

.bhvn-button--outline-light:hover {
	background: #fff;
	border-color: #fff;
	color: var(--bhvn-color-primary);
}

.bhvn-button--surface {
	background: #fff;
	border-color: #fff;
	color: var(--bhvn-color-primary);
}

.bhvn-button--surface:hover {
	background: var(--bhvn-color-primary-soft);
	border-color: var(--bhvn-color-primary-soft);
	color: var(--bhvn-color-primary);
}

.home-hero {
	position: relative;
	display: grid;
	min-height: clamp(24rem, 54vw, 40rem);
	overflow: hidden;
	background: linear-gradient(135deg, var(--bhvn-color-primary) 0%, #082b46 100%);
	color: #fff;
	place-items: center;
}

.home-hero__media,
.home-hero__media::after {
	position: absolute;
	inset: 0;
}

.home-hero__media::after {
	content: "";
	background: linear-gradient(90deg, rgb(7 39 63 / 92%) 0%, rgb(7 39 63 / 68%) 52%, rgb(7 39 63 / 36%) 100%);
}

.home-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-block: clamp(3.5rem, 8vw, 7.5rem);
}

.home-hero__content {
	max-width: 44rem;
}

.home-hero h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 5.2vw, 4.25rem);
	line-height: 1.08;
}

.home-hero__content > p {
	max-width: 38rem;
	margin: 1.25rem 0 0;
	color: rgb(255 255 255 / 90%);
	font-size: clamp(1rem, 2vw, 1.2rem);
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.home-slider {
	position: relative;
	min-height: clamp(22rem, 44vw, 34rem);
	overflow: hidden;
	background: #082b46;
	color: #fff;
	isolation: isolate;
}

.home-slider--height-compact {
	min-height: clamp(19rem, 36vw, 28rem);
}

.home-slider--height-tall {
	min-height: clamp(26rem, 52vw, 42rem);
}

.home-slider__viewport,
.home-slider__track,
.home-slider__slide {
	min-height: inherit;
}

.home-slider__track {
	position: relative;
}

.home-slider__slide {
	position: absolute;
	inset: 0;
	display: grid;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	place-items: center;
	transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1), visibility 600ms;
}

.home-slider__slide.is-active {
	z-index: 1;
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.home-slider--effect-slide .home-slider__slide {
	transform: translateX(7%);
}

.home-slider--effect-slide[data-direction="previous"] .home-slider__slide {
	transform: translateX(-7%);
}

.home-slider--effect-slide .home-slider__slide.is-active {
	transform: translateX(0);
}

.home-slider__media,
.home-slider__media::after {
	position: absolute;
	inset: 0;
}

.home-slider__media::after {
	background: linear-gradient(90deg, rgb(3 28 46 / 90%) 0%, rgb(3 28 46 / 64%) 50%, rgb(3 28 46 / 38%) 100%);
	content: "";
}

.home-slider__slide--align-center .home-slider__media::after {
	background: linear-gradient(90deg, rgb(3 28 46 / 50%), rgb(3 28 46 / 78%) 50%, rgb(3 28 46 / 50%));
}

.home-slider__slide--align-right .home-slider__media::after {
	background: linear-gradient(270deg, rgb(3 28 46 / 90%) 0%, rgb(3 28 46 / 64%) 50%, rgb(3 28 46 / 38%) 100%);
}

.home-slider__media picture,
.home-slider__media img {
	display: block;
	width: 100%;
	height: 100%;
}

.home-slider__media img {
	object-fit: cover;
	transform: scale(1.025);
	transition: transform 7s ease;
}

.home-slider__slide.is-active .home-slider__media img {
	transform: scale(1.075);
}

.home-slider__slide--focal-left .home-slider__media img {
	object-position: left center;
}

.home-slider__slide--focal-center .home-slider__media img {
	object-position: center;
}

.home-slider__slide--focal-right .home-slider__media img {
	object-position: right center;
}

.home-slider__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: inherit;
	padding-block: clamp(3rem, 7vw, 6rem);
}

.home-slider__content {
	width: min(100%, 43rem);
	transform: translateY(1rem);
	opacity: 0;
	transition: opacity 500ms ease 160ms, transform 500ms ease 160ms;
}

.home-slider__slide.is-active .home-slider__content {
	transform: translateY(0);
	opacity: 1;
}

.home-slider__slide--align-center .home-slider__inner {
	justify-content: center;
	text-align: center;
}

.home-slider__slide--align-right .home-slider__inner {
	justify-content: flex-end;
	text-align: right;
}

.home-slider__slide--align-center .home-slider__actions {
	justify-content: center;
}

.home-slider__slide--align-right .home-slider__actions {
	justify-content: flex-end;
}

.home-slider__eyebrow {
	margin: 0 0 0.65rem;
	color: #ffe5a3;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.home-slider h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.8rem, 4.4vw, 3.65rem);
	line-height: 1.08;
	text-wrap: balance;
}

.home-slider h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.8rem, 4.4vw, 3.65rem);
	line-height: 1.08;
	text-wrap: balance;
}

.home-slider__description {
	margin: 1rem 0 0;
	color: rgb(255 255 255 / 88%);
	font-size: clamp(0.95rem, 1.7vw, 1.15rem);
	line-height: 1.65;
}

.home-slider__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.home-slider__arrow {
	position: absolute;
	z-index: 4;
	top: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	background: rgb(3 28 46 / 58%);
	border: 1px solid rgb(255 255 255 / 45%);
	border-radius: 50%;
	color: #fff;
	box-shadow: 0 0.65rem 1.5rem rgb(0 0 0 / 18%);
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-slider__arrow:hover,
.home-slider__arrow:focus-visible {
	background: var(--bhvn-color-secondary);
	border-color: var(--bhvn-color-secondary);
	transform: translateY(-50%) scale(1.06);
}

.home-slider__arrow--previous {
	left: max(0.75rem, calc((100vw - var(--bhvn-container)) / 2 - 3.75rem));
}

.home-slider__arrow--previous .bhvn-icon {
	transform: rotate(90deg);
}

.home-slider__arrow--next {
	right: max(0.75rem, calc((100vw - var(--bhvn-container)) / 2 - 3.75rem));
}

.home-slider__arrow--next .bhvn-icon {
	transform: rotate(-90deg);
}

.home-slider__dots {
	position: absolute;
	z-index: 4;
	right: 0;
	bottom: 1.25rem;
	left: 0;
	display: none;
	justify-content: center;
	gap: 0.55rem;
}

.home-slider__dots button {
	width: 0.7rem;
	height: 0.7rem;
	padding: 0;
	background: rgb(255 255 255 / 55%);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 0 0 1px rgb(3 28 46 / 30%);
	cursor: pointer;
	transition: width 180ms ease, background-color 180ms ease;
}

.home-slider__dots button[aria-current="true"] {
	width: 2rem;
	background: var(--bhvn-color-secondary);
}

.home-slider__toggle {
	position: absolute;
	z-index: 5;
	right: max(1rem, calc((100vw - var(--bhvn-container)) / 2));
	bottom: 1rem;
	display: none;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	background: rgb(3 28 46 / 65%);
	border: 1px solid rgb(255 255 255 / 42%);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
}

.home-slider.is-initialized .home-slider__arrow,
.home-slider.is-initialized .home-slider__toggle {
	display: inline-flex;
}

.home-slider.is-initialized .home-slider__dots {
	display: flex;
}

.home-slider__toggle span,
.home-slider__toggle span::after {
	display: block;
	width: 0.18rem;
	height: 0.72rem;
	background: currentcolor;
	content: "";
}

.home-slider__toggle span {
	position: relative;
	margin-right: 0.3rem;
}

.home-slider__toggle span::after {
	position: absolute;
	left: 0.3rem;
}

.home-slider__toggle.is-paused span {
	width: 0;
	height: 0;
	margin: 0 0 0 0.15rem;
	background: transparent;
	border-top: 0.42rem solid transparent;
	border-bottom: 0.42rem solid transparent;
	border-left: 0.65rem solid currentcolor;
}

.home-slider__toggle.is-paused span::after {
	display: none;
}

.home-section {
	padding-block: clamp(2rem, 4.5vw, 3.75rem);
}

.home-categories {
	padding-top: clamp(1.25rem, 3vw, 2rem);
}

.home-section:nth-of-type(even) {
	background: var(--bhvn-color-primary-soft);
}

.home-section__heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.home-section__heading h2,
.home-cta h2 {
	margin: 0;
	font-size: clamp(1.55rem, 3.5vw, 2.35rem);
	line-height: 1.18;
}

.home-section__heading p,
.home-cta p {
	max-width: 48rem;
	margin: 0.75rem 0 0;
	color: var(--bhvn-color-muted);
}

.home-section__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: 2.75rem;
	flex: 0 0 auto;
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
}

.home-section__link span,
.home-category-card__link span,
.bhvn-product-card__action span,
.home-news-card__link span {
	font-size: 1.2em;
	transition: transform 160ms ease;
}

.home-section__link:hover span,
.home-category-card:hover .home-category-card__link span,
.bhvn-product-card__action:hover span,
.home-news-card__link:hover span {
	transform: translateX(0.2rem);
}

.home-categories__grid,
.home-products__grid,
.home-news__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.home-category-groups {
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
}

.home-category-group {
	--bhvn-category-group-space: clamp(1rem, 2.5vw, 1.5rem);

	position: relative;
	padding: 0 var(--bhvn-category-group-space) var(--bhvn-category-group-space);
	background: var(--bhvn-color-surface);
	border: 1px solid var(--bhvn-color-border);
	border-radius: var(--bhvn-radius-lg);
	box-shadow: 0 8px 24px rgb(11 59 96 / 7%);
	overflow: hidden;
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.home-category-group__heading {
	position: relative;
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	min-height: 3rem;
	margin-inline: calc(-1 * var(--bhvn-category-group-space));
	background: linear-gradient(90deg, var(--bhvn-color-primary-soft), #fff 72%);
	border-bottom: 2px solid var(--bhvn-color-secondary);
	overflow: hidden;
	isolation: isolate;
}

.home-category-group__heading::after {
	position: absolute;
	z-index: 1;
	top: -80%;
	left: -25%;
	width: 18%;
	height: 260%;
	background: linear-gradient(90deg, transparent, rgb(255 255 255 / 30%), transparent);
	content: "";
	opacity: 0;
	pointer-events: none;
	transform: rotate(18deg);
}

.home-category-group__heading h3 {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 0 1 auto;
	align-items: center;
	align-self: stretch;
	min-width: 0;
	max-width: calc(100% - 7rem);
	margin: 0;
	padding: 0.64rem clamp(1.6rem, 3.2vw, 2.6rem) 0.64rem var(--bhvn-category-group-space);
	background: linear-gradient(115deg, var(--bhvn-color-primary), var(--bhvn-color-primary-light));
	clip-path: polygon(0 0, calc(100% - 1.1rem) 0, 100% 50%, calc(100% - 1.1rem) 100%, 0 100%);
	font-size: clamp(0.9rem, 1.76vw, 1.12rem);
	line-height: 1.25;
	text-shadow: 0 1px 2px rgb(0 0 0 / 22%);
}

.home-category-group__heading h3 a {
	display: block;
	color: #fff;
	text-decoration: none;
}

.home-category-group__heading > a {
	position: relative;
	z-index: 2;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 0.35rem;
	align-items: center;
	margin-right: var(--bhvn-category-group-space);
	padding: 0.4rem 0.6rem;
	background: #fff;
	border: 1px solid rgb(243 108 33 / 32%);
	border-radius: 999px;
	box-shadow: 0 4px 12px rgb(11 59 96 / 8%);
	color: var(--bhvn-color-secondary-dark);
	font-size: 0.7rem;
	font-weight: 800;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.home-category-group__heading > a:hover,
.home-category-group__heading > a:focus-visible {
	background: var(--bhvn-color-secondary);
	border-color: var(--bhvn-color-secondary);
	box-shadow: 0 7px 16px rgb(243 108 33 / 22%);
	color: #fff;
	transform: translateY(-1px);
}

.home-category-group__heading > a span {
	transition: transform 160ms ease;
}

.home-category-group__heading > a:hover span,
.home-category-group__heading > a:focus-visible span {
	transform: translateX(0.2rem);
}

@media (hover: hover) {
	.home-category-group:hover {
		border-color: rgb(11 59 96 / 24%);
		box-shadow: 0 16px 38px rgb(11 59 96 / 13%);
		transform: translateY(-3px);
	}

	.home-category-group:hover .home-category-group__heading::after {
		animation: bhvn-category-heading-shine 850ms ease-out;
	}
}

@keyframes bhvn-category-heading-shine {
	0% {
		left: -25%;
		opacity: 0;
	}

	25% {
		opacity: 1;
	}

	100% {
		left: 110%;
		opacity: 0;
	}
}

.home-category-group__products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	padding-top: 1rem;
}

.home-category-card,
.bhvn-product-card,
.home-news-card {
	min-width: 0;
	background: var(--bhvn-color-surface);
	border: 1px solid var(--bhvn-color-border);
	border-radius: var(--bhvn-radius-md);
	box-shadow: var(--bhvn-shadow-sm);
	overflow: hidden;
}

.home-category-card {
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home-category-card:hover {
	border-color: var(--bhvn-color-primary-light);
	box-shadow: 0 8px 20px rgb(11 59 96 / 14%);
	transform: translateY(-2px);
}

.home-category-card > a {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.home-category-card__image,
.bhvn-product-card__image,
.home-news-card__image {
	display: grid;
	min-height: 0;
	background: #fff;
	place-items: center;
	overflow: hidden;
}

.home-category-card__image {
	aspect-ratio: 1 / 0.72;
	background: linear-gradient(135deg, var(--bhvn-color-primary-soft), #fff);
}

.home-category-card__image img,
.bhvn-product-card__image img,
.home-news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-category-card__image .bhvn-icon,
.bhvn-product-card__image .bhvn-icon,
.home-news-card__image .bhvn-icon {
	width: 2.25rem;
	height: 2.25rem;
	color: var(--bhvn-color-primary-light);
}

.home-category-card__content {
	padding: 0.85rem;
}

.home-category-card h3,
.bhvn-product-card h3,
.home-news-card h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.4;
}

.home-category-card p {
	display: -webkit-box;
	margin: 0.45rem 0 0;
	overflow: hidden;
	color: var(--bhvn-color-muted);
	font-size: 0.8125rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.home-category-card__link,
.bhvn-product-card__action,
.home-news-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 2.25rem;
	margin-top: 0.55rem;
	color: var(--bhvn-color-primary);
	font-size: 0.8125rem;
	font-weight: 750;
}

.home-cta {
	padding-block: clamp(2rem, 4.5vw, 3.5rem);
	background: var(--bhvn-color-secondary);
	color: #fff;
}

.home-cta--contact {
	background: linear-gradient(135deg, var(--bhvn-color-primary) 0%, #082b46 100%);
}

.home-cta__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	flex-direction: column;
}

.home-cta h2 {
	color: #fff;
}

.home-cta p {
	color: rgb(255 255 255 / 86%);
}

.home-products__grid {
	gap: 0.75rem;
}

.bhvn-product-card {
	display: flex;
	flex-direction: column;
}

.bhvn-product-card__image {
	position: relative;
	aspect-ratio: 1;
}

.bhvn-product-card__content {
	display: flex;
	min-height: 0;
	padding: 0.8rem;
	flex: 1;
	flex-direction: column;
}

.bhvn-product-card__badge {
	display: inline-flex;
	align-self: flex-start;
	padding: 0.2rem 0.45rem;
	margin-bottom: 0.5rem;
	background: var(--bhvn-color-error);
	border-radius: var(--bhvn-radius-sm);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 750;
}

.bhvn-product-card h3 a {
	color: var(--bhvn-color-text);
	text-decoration: none;
}

.bhvn-product-card h3 a:hover {
	color: var(--bhvn-color-primary-light);
}

.bhvn-product-card__sku,
.bhvn-product-card__stock {
	margin: 0.45rem 0 0;
	font-size: 0.75rem;
}

.bhvn-product-card__sku {
	color: var(--bhvn-color-muted);
}

.bhvn-product-card__price {
	min-height: 1.65rem;
	margin-top: 0.65rem;
	color: var(--bhvn-color-error);
	font-size: 1rem;
	font-weight: 800;
}

.bhvn-product-card__price del {
	margin-right: 0.35rem;
	color: var(--bhvn-color-muted);
	font-size: 0.8em;
	font-weight: 500;
}

.bhvn-product-card__price ins {
	text-decoration: none;
}

.bhvn-product-card__stock--in-stock {
	color: var(--bhvn-color-success);
}

.bhvn-product-card__stock--out-of-stock {
	color: var(--bhvn-color-error);
}

.bhvn-product-card__action {
	margin-top: auto;
	text-decoration: none;
}

.home-proof {
	position: relative;
	padding-block: clamp(2rem, 4vw, 3.25rem);
	background: linear-gradient(145deg, #f2f9fc, #fff 58%, #fff7ec) !important;
	border-block: 1px solid rgb(11 89 140 / 14%);
}

.home-proof__grid {
	display: grid;
	gap: 0.85rem;
}

.home-proof__item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1rem;
	background: rgb(255 255 255 / 86%);
	border: 1px solid rgb(11 89 140 / 14%);
	border-radius: var(--bhvn-radius-md);
	box-shadow: 0 10px 24px rgb(11 59 96 / 7%);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-proof__item:hover {
	border-color: var(--bhvn-color-secondary);
	box-shadow: 0 14px 28px rgb(11 59 96 / 13%);
	transform: translateY(-3px);
}

.home-proof__icon {
	display: grid;
	flex: 0 0 2.75rem;
	width: 2.75rem;
	height: 2.75rem;
	background: var(--bhvn-color-primary);
	border-radius: 50%;
	color: #fff;
	place-items: center;
}

.home-proof__icon .bhvn-icon {
	width: 1.35rem;
	height: 1.35rem;
}

.home-proof h3 {
	margin: 0;
	font-size: 1rem;
}

.home-proof__item p {
	margin: 0.35rem 0 0;
	color: var(--bhvn-color-muted);
	font-size: 0.875rem;
}

.home-trust__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
	gap: clamp(0.8rem, 2vw, 1.35rem);
	padding: clamp(1rem, 2.5vw, 1.75rem);
	background:
		radial-gradient(circle at 92% 10%, rgb(242 183 5 / 18%), transparent 13rem),
		linear-gradient(145deg, #f2f9fc, #fff 54%, #fff8ee);
	border: 1px solid rgb(11 89 140 / 16%);
	border-radius: var(--bhvn-radius-lg);
	box-shadow: 0 14px 32px rgb(11 59 96 / 8%);
}

.home-products--featured,
.home-products--sale,
.home-proof,
.home-news,
.home-trust {
	position: relative;
	background: linear-gradient(145deg, #f2f9fc, #fff 56%, #fff8ee) !important;
	border-block: 1px solid rgb(11 89 140 / 14%);
}

.home-products--featured .home-section__heading,
.home-products--sale .home-section__heading,
.home-proof .home-section__heading,
.home-news .home-section__heading,
.home-trust .home-section__heading {
	position: relative;
	min-height: 2.6rem;
	padding-bottom: 0;
	margin-bottom: 1rem;
	border-bottom: 1px solid rgb(11 89 140 / 42%);
}

.home-products--featured .home-section__heading > div,
.home-products--sale .home-section__heading > div,
.home-proof .home-section__heading > div,
.home-news .home-section__heading > div,
.home-trust .home-section__heading > div {
	position: relative;
	z-index: 1;
	padding: 0.5rem clamp(2rem, 4vw, 3.6rem) 0.5rem 0.9rem;
	background: linear-gradient(115deg, var(--bhvn-color-primary), var(--bhvn-color-primary-light));
	clip-path: polygon(0 0, calc(100% - 1.05rem) 0, 100% 50%, calc(100% - 1.05rem) 100%, 0 100%);
}

.home-products--featured .home-section__heading h2,
.home-products--sale .home-section__heading h2,
.home-proof .home-section__heading h2,
.home-news .home-section__heading h2,
.home-trust .home-section__heading h2 {
	color: #fff;
	font-size: clamp(1rem, 2vw, 1.4rem);
	text-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}

.home-products--featured .home-section__heading p,
.home-products--sale .home-section__heading p,
.home-proof .home-section__heading p,
.home-news .home-section__heading p,
.home-trust .home-section__heading p {
	margin-top: 0.35rem;
	color: rgb(255 255 255 / 84%);
}

.home-trust__item {
	position: relative;
	display: grid;
	min-height: 0;
	aspect-ratio: 0.8 / 1;
	padding: 0;
	background: #fff;
	border: 1px solid rgb(11 89 140 / 16%);
	border-radius: var(--bhvn-radius-sm);
	box-shadow: 0 8px 20px rgb(11 59 96 / 8%);
	overflow: hidden;
	place-items: center;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-trust__item::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(125deg, transparent 35%, rgb(255 255 255 / 50%) 50%, transparent 65%);
	content: "";
	opacity: 0;
	pointer-events: none;
	transform: translateX(-100%);
}

.home-trust__item:hover {
	border-color: var(--bhvn-color-secondary);
	box-shadow: 0 16px 30px rgb(11 59 96 / 16%);
	transform: translateY(-4px);
}

.home-trust__item:hover::after {
	animation: bhvn-trust-shine 680ms ease;
	opacity: 1;
}

.home-trust__item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.home-trust__placeholder {
	max-width: 9rem;
	color: var(--bhvn-color-muted);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
}

.home-testimonials__widgets {
	display: grid;
	gap: 1rem;
}

.home-testimonials__widgets .widget {
	margin: 0;
	padding: clamp(1rem, 2.5vw, 1.5rem);
	background: linear-gradient(145deg, #fff, #f4fafc);
	border: 1px solid rgb(11 89 140 / 14%);
	border-radius: var(--bhvn-radius-md);
	box-shadow: 0 10px 24px rgb(11 59 96 / 7%);
}

@keyframes bhvn-trust-shine {
	from {
		transform: translateX(-100%);
	}

	to {
		transform: translateX(100%);
	}
}

.home-news-card__image {
	aspect-ratio: 1.55 / 1;
}

.home-news-card__content {
	padding: 0.9rem;
}

.home-news-card__content .entry-date {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--bhvn-color-muted);
	font-size: 0.75rem;
}

.home-news-card h3 a {
	color: var(--bhvn-color-text);
	text-decoration: none;
}

.home-news-card h3 a:hover {
	color: var(--bhvn-color-primary-light);
}

.home-news-card__excerpt {
	display: -webkit-box;
	margin-top: 0.65rem;
	overflow: hidden;
	color: var(--bhvn-color-muted);
	font-size: 0.875rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.home-newsletter {
	padding-block: clamp(2rem, 4.5vw, 3.5rem);
	background: linear-gradient(115deg, #e9f5fb, #fff8ec);
	border-block: 1px solid var(--bhvn-color-border);
}

.home-newsletter__inner {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
}

.home-newsletter__content {
	max-width: 46rem;
}

.home-newsletter__eyebrow {
	margin: 0 0 0.4rem;
	color: var(--bhvn-color-secondary-dark);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-newsletter h2 {
	margin: 0;
	font-size: clamp(1.55rem, 3.5vw, 2.35rem);
	line-height: 1.18;
}

.home-newsletter__content > p:not(.home-newsletter__eyebrow) {
	margin: 0.75rem 0 0;
	color: var(--bhvn-color-muted);
}

.home-newsletter__action {
	flex: 0 0 auto;
}

.home-page-content {
	padding-block: clamp(2rem, 4.5vw, 3.75rem);
}

.home-page-content__header {
	margin-bottom: 1.5rem;
}

.home-page-content .entry-content > :first-child {
	margin-top: 0;
}

@media (min-width: 30rem) {
	.home-categories__grid,
	.home-products__grid,
	.home-news__grid,
	.home-category-group__products {
		gap: 1rem;
	}

	.home-category-group__products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-category-card__content,
	.bhvn-product-card__content,
	.home-news-card__content {
		padding: 1rem;
	}
}

@media (min-width: 48rem) {
	.home-categories__grid,
	.home-products__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-news__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-grid--columns-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-cta__inner {
		align-items: center;
		flex-direction: row;
	}

	.home-newsletter__inner {
		align-items: center;
		flex-direction: row;
	}

	.home-cta__inner > div {
		max-width: 48rem;
	}

	.home-proof__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-trust__grid {
		grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
	}

	.home-testimonials__widgets {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 64rem) {
	.home-slider__slide--align-left .home-slider__content {
		margin-left: clamp(1.5rem, 3vw, 4rem);
	}

	.home-hero__content {
		max-width: 48rem;
	}

	.home-categories__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.home-products__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.home-category-group__products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.home-grid--columns-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-grid--columns-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-grid--columns-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.home-grid--columns-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.home-grid--columns-6 {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.home-proof__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

}

@media (min-width: 75rem) {
	.home-category-group__products {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.home-category-group .bhvn-product-card__content {
		padding: 0.7rem;
	}

	.home-category-group .bhvn-product-card h3 {
		font-size: 0.875rem;
	}

	.home-category-group .bhvn-product-card__sku,
	.home-category-group .bhvn-product-card__stock,
	.home-category-group .bhvn-product-card__action {
		display: none;
	}
}

@media (max-width: 47.99rem) {
	.home-slider,
	.home-slider--height-compact,
	.home-slider--height-tall {
		min-height: clamp(24rem, 120vw, 34rem);
	}

	.home-slider__inner {
		align-items: flex-end;
		padding: 3.5rem 1rem 4.25rem;
	}

	.home-slider__content,
	.home-slider__slide--align-right .home-slider__content,
	.home-slider__slide--align-center .home-slider__content {
		text-align: left;
	}

	.home-slider__slide--align-right .home-slider__actions,
	.home-slider__slide--align-center .home-slider__actions {
		justify-content: flex-start;
	}

	.home-slider__description {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.home-slider__actions .bhvn-button {
		flex: 1 1 10rem;
	}

	.home-slider.is-initialized .home-slider__arrow {
		display: none;
	}

	.home-category-group__heading {
		gap: 0.5rem;
		min-height: 2.75rem;
	}

	.home-category-group__heading h3 {
		padding-right: 1.6rem;
		font-size: 0.85rem;
	}

	.home-category-group__heading > a {
		margin-right: 0.65rem;
		padding: 0.45rem 0.6rem;
	}

	.home-products__grid,
	.home-category-group__products {
		grid-template-columns: minmax(0, 1fr);
	}

	.home-trust__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.home-trust__item {
		max-width: 28rem;
		margin-inline: auto;
	}
}

@media (max-width: 29.99rem) {
	.home-category-group__heading > a {
		justify-content: center;
		width: 2.4rem;
		height: 2.4rem;
		padding: 0;
		font-size: 0;
	}

	.home-category-group__heading > a span {
		font-size: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-slider.is-initialized .home-slider__toggle {
		display: none;
	}

	.home-slider__slide,
	.home-slider__content,
	.home-slider__media img,
	.home-slider__arrow,
	.home-slider__dots button,
	.bhvn-button,
	.home-category-group,
	.home-category-group__heading > a,
	.home-category-card,
	.home-section__link span,
	.home-category-card__link span,
	.home-proof__item,
	.home-trust__item,
	.home-trust__item::after,
	.bhvn-product-card__action span,
	.home-news-card__link span {
		transition: none;
	}

	.home-slider__slide.is-active .home-slider__media img {
		transform: none;
	}

	.home-category-group:hover .home-category-group__heading::after {
		animation: none;
	}

	.home-trust__item:hover::after {
		animation: none;
	}
}
