.s-filtered-customer-reviews.surface-neutral-dark {
	background: #444346;
}

.s-filtered-customer-reviews__inner {
	display: grid;
	gap: 1.5rem;
}

.s-filtered-customer-reviews__header {
	max-width: 42.5rem;
	gap: .875rem;
}

.s-filtered-customer-reviews__heading {
	font-family: urw-din-condensed;
	font-size: clamp(1.75rem, 6vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
}

.s-filtered-customer-reviews__description {
	font-family: urw-din;
	font-size: clamp(1.125rem, 4vw, 1.25rem);
	line-height: 1.5;
	opacity: 70%
}

.s-filtered-customer-reviews__description p {
	margin: 0;
}

.s-filtered-customer-reviews__summary {
	align-items: center;
	background: #3d3c3f;
	border: 0.0625rem solid rgba(255, 255, 255, 0.1);
	border-radius: 0.875rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem 3.5rem;
	padding: 1.625rem 1.875rem;
}

.s-filtered-customer-reviews__rating-block {
	flex: none;
	min-width: 9.375rem;
}

.s-filtered-customer-reviews__rating-number-row {
	align-items: flex-end;
	display: flex;
	gap: 0.5rem;
}

.s-filtered-customer-reviews__rating-number {
	color: white;
	font-family: urw-din-condensed;
	font-size: 3.625rem;
	font-weight: 800;
	line-height: 0.85;
}

.s-filtered-customer-reviews__rating-out-of {
	color: rgba(255, 255, 255, 0.5);
	font-family: urw-din;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	padding-bottom: 0.375rem;
}

.s-filtered-customer-reviews__rating-stars {
	--icon-size: 1.0625rem;
	align-items: center;
	color: var(--primary-base);
	display: flex;
	gap: 0.125rem;
	margin-top: 0.5625rem;
}

.s-filtered-customer-reviews__rating-count {
	color: rgba(255, 255, 255, 0.6);
	font-family: urw-din;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 0.5625rem 0 0;
}

.s-filtered-customer-reviews__recommendation {
	align-items: center;
	color: #5fc9a8;
	display: inline-flex;
	font-family: urw-din-condensed;
	font-size: 0.875rem;
	font-weight: 700;
	gap: 0.375rem;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-top: 0.6875rem;
}

.s-filtered-customer-reviews__recommendation-icon {
	align-items: center;
	background: #2e7d6b;
	border-radius: 50%;
	color: white;
	display: inline-flex;
	flex: none;
	height: 1rem;
	justify-content: center;
	width: 1rem;
}

.s-filtered-customer-reviews__distribution {
	display: flex;
	flex: 1 1 18.75rem;
	flex-direction: column;
	gap: 0.5625rem;
	min-width: 15.625rem;
}

.s-filtered-customer-reviews__distribution-row {
	align-items: center;
	display: flex;
	gap: 0.75rem;
}

.s-filtered-customer-reviews__distribution-label {
	color: rgba(255, 255, 255, 0.7);
	flex: none;
	font-family: urw-din-condensed;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	width: 1.75rem;
}

.s-filtered-customer-reviews__distribution-track {
	background: rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-pill);
	flex: 1;
	height: 0.5rem;
	overflow: hidden;
	position: relative;
}

.s-filtered-customer-reviews__distribution-fill {
	background: var(--primary-base);
	border-radius: var(--radius-pill);
	bottom: 0;
	left: 0;
	position: absolute;
	top: 0;
}

.s-filtered-customer-reviews__distribution-count {
	color: rgba(255, 255, 255, 0.55);
	flex: none;
	font-family: urw-din;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1;
	text-align: right;
	width: 2.875rem;
}

.s-filtered-customer-reviews__filters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem 0.75rem;
}

.s-filtered-customer-reviews__filters-label {
	font-family: urw-din-condensed;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	opacity: 55%;
	margin-right: 0.25rem;
}

.s-filtered-customer-reviews__filter {
	background: transparent;
	border: 0.09375rem solid var(--neutral-border);
	border-radius: var(--radius-pill);
	cursor: pointer;
	font-family: urw-din;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
	opacity: 75%;
	min-height: 0;
	padding: 0.5rem 0.9375rem;
	transition:
		background-color 0.15s ease,
		border-color 0.15s ease,
		color 0.15s ease;
}

.s-filtered-customer-reviews__filter.is-active {
	background: white;
	border-color: white;
	color: #444346;
	opacity: 100%;
}

.s-filtered-customer-reviews__items {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	padding-bottom: 0.25rem;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.s-filtered-customer-reviews__items::-webkit-scrollbar {
	display: none;
}

.c-filtered-customer-review {
	background: white;
	border-radius: 0.625rem;
	display: flex;
	flex: 0 0 80%;
	min-width: 15rem;
	overflow: hidden;
	scroll-snap-align: start;
}

.s-filtered-customer-reviews.surface-light .c-filtered-customer-review {
	background: var(--neutral-warm);
	border: 1px solid var(--neutral-background-dark);
}

.c-filtered-customer-review[hidden] {
	display: none;
}

.c-filtered-customer-review__inner {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.375rem;
}

.c-filtered-customer-review__stars {
	--icon-size: 1rem;
	align-items: center;
	color: var(--primary-base);
	display: flex;
	gap: 0.09375rem;
	margin-bottom: 0.625rem;
}

.c-filtered-customer-review__title {
	color: var(--text);
	font-family: urw-din-condensed;
	font-size: var(--font-static-lg);
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 0.375rem;
}

.c-filtered-customer-review__body {
	color: var(--text);
	font-family: 'URWDIN-Light';
	font-size: var(--font-static-md);
	line-height: 1.5;
	margin-bottom: 1rem;
}

.c-filtered-customer-review__body p {
	margin: 0;
}

.c-filtered-customer-review__footer {
	align-items: center;
	border-top: 0.0625rem solid rgba(20, 20, 20, 0.07);
	display: flex;
	gap: 0.625rem;
	margin-top: auto;
	padding-top: 0.875rem;
}

.c-filtered-customer-review__avatar {
	align-items: center;
	background: var(--review-avatar-background, var(--primary-base));
	border-radius: 50%;
	color: white;
	display: flex;
	flex: 0 0 2rem;
	height: 2rem;
	justify-content: center;
	overflow: hidden;
	width: 2rem;
}

.c-filtered-customer-review__avatar-image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.c-filtered-customer-review__initials {
	font-family: urw-din-condensed;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1;
}

.c-filtered-customer-review__reviewer {
	min-width: 0;
}

.c-filtered-customer-review__name {
	color: var(--text);
	font-family: urw-din-condensed;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.c-filtered-customer-review__meta {
	align-items: center;
	color: #8a857b;
	display: flex;
	flex-wrap: wrap;
	font-family: urw-din;
	font-size: 0.75rem;
	gap: 0.375rem;
	line-height: 1;
	margin-top: 0.25rem;
}

.c-filtered-customer-review__verified {
	align-items: center;
	color: #2e7d6b;
	display: inline-flex;
	gap: 0.375rem;
}

.c-filtered-customer-review__verified-icon {
	align-items: center;
	background: #2e7d6b;
	border-radius: 50%;
	color: white;
	display: inline-flex;
	flex: none;
	height: 0.9375rem;
	justify-content: center;
	width: 0.9375rem;
}

.c-filtered-customer-review__separator {
	color: #c9c5bd;
}

.s-filtered-customer-reviews__actions {
	display: flex;
	justify-content: center;
	margin-top: 0.5rem;
}

.s-filtered-customer-reviews__button {
	align-items: center;
	background: transparent;
	border: 0.09375rem solid var(--neutral-border);
	border-radius: var(--radius-pill);
	display: inline-flex;
	font-family: urw-din-condensed;
	font-size: 0.9375rem;
	font-weight: 700;
	gap: 0.5rem;
	justify-content: center;
	letter-spacing: 0.06em;
	line-height: 1;
	min-height: 0;
	padding: 0.875rem 1.75rem;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		color 0.18s ease;
}

.s-filtered-customer-reviews__button:hover {
	background: white;
	border-color: white;
	color: #444346;
}

.s-filtered-customer-reviews__press {
	align-items: center;
	border-top: 0.0625rem solid var(--neutral-border);
	display: flex;
	flex-direction: column;
	gap: 0.875rem 1rem;
	justify-content: center;
	margin-top: 0.75rem;
	padding-top: 1.875rem;
}

.s-filtered-customer-reviews__press-label {
	color: var(--neutral-base-light);
	font-family: urw-din-condensed;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1;
	text-transform: uppercase;
}

.s-filtered-customer-reviews__press-logos {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1.125rem 1.375rem;
	justify-content: center;
}

.s-filtered-customer-reviews__press-logos img {
	display: block;
	height: 1.5625rem;
	object-fit: contain;
	width: auto;
}

@media (min-width: 48em) {
	.s-filtered-customer-reviews__items {
		display: grid;
		gap: 1rem;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		overflow: visible;
		padding-bottom: 0;
		scroll-snap-type: none;
	}

	.c-filtered-customer-review {
		flex: initial;
		min-width: 0;
		scroll-snap-align: none;
	}

	.s-filtered-customer-reviews__press {
		flex-direction: row;
		justify-content: flex-start;
	}

	.s-filtered-customer-reviews__press-logos {
		justify-content: flex-start;
	}
}