.brera-reviews {
	--brera-review-green: #16863d;
	--brera-review-orange: #eb4526;
	--brera-review-ink: #212121;
	--brera-review-muted: #595959;
	--brera-review-border: #e7e7e7;
	padding: 64px 0 100px;
	background: #fff;
	color: var(--brera-review-ink);
	scroll-margin-top: calc(var(--brera-top-fixed-offset, 0px) + 112px);
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

.brera-reviews *,
.brera-reviews *::before,
.brera-reviews *::after {
	box-sizing: border-box;
}

.brera-reviews__inner.wrapper {
	width: min(100%, 1360px);
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 15px;
}

.brera-reviews__header {
	margin-bottom: 44px;
}

.brera-reviews__eyebrow {
	display: block;
	margin-bottom: 10px;
	color: #666;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.brera-reviews__title {
	max-width: 980px;
	margin: 0;
	color: var(--brera-review-ink);
	font-size: 46px;
	font-weight: 300;
	letter-spacing: normal;
	line-height: 1.14;
}

.brera-reviews__overview {
	display: grid;
	grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
	align-items: center;
	gap: clamp(28px, 3vw, 42px);
}

.brera-reviews__summary {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	min-height: 132px;
	padding: 28px 24px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 25px rgba(33, 33, 33, .12);
}

.brera-reviews__score {
	display: flex;
	width: 84px;
	height: 84px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--brera-review-green);
	color: #fff;
}

.brera-reviews__score strong {
	font-size: 34px;
	font-weight: 700;
	line-height: .95;
}

.brera-reviews__score span {
	margin-top: 2px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.brera-reviews__summary-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 6px;
}

.brera-reviews__summary-copy strong {
	font-size: 19px;
	line-height: 1.15;
}

.brera-reviews__summary-copy span {
	color: var(--brera-review-muted);
	font-size: 13px;
	line-height: 1.35;
}

.brera-reviews__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px 24px;
}

.brera-reviews__metric > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 9px;
}

.brera-reviews__metric strong,
.brera-reviews__metric span {
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.brera-reviews__metric i {
	display: block;
	height: 6px;
	overflow: hidden;
	border-radius: 999px;
	background: #ebebeb;
}

.brera-reviews__metric i b {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--brera-review-green);
}

.brera-reviews__mentions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 32px;
}

.brera-reviews__mentions > strong {
	font-size: 14px;
	white-space: nowrap;
}

.brera-reviews__mentions ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.brera-reviews__mentions li {
	padding: 8px 13px;
	border: 1px solid #d8d8d8;
	border-radius: 16px;
	color: var(--brera-review-muted);
	font-size: 13px;
	line-height: 1;
}

.brera-reviews__filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin: 70px 0 35px;
}

.brera-reviews__filter {
	display: inline-flex;
	min-height: 32px;
	align-items: center;
	gap: 8px;
	padding: 4px 0;
	border: 0;
	border-bottom: 1px solid transparent;
	background: transparent;
	color: var(--brera-review-ink);
	font: inherit;
	font-size: 16px;
	font-weight: 700;
	border-radius: 0;
	cursor: pointer;
}

.brera-reviews__filter img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.brera-reviews__filter:hover,
.brera-reviews__filter:focus-visible,
.brera-reviews__filter.is-active {
	border-bottom-color: var(--brera-review-ink);
}

.brera-reviews__filter:focus-visible,
.brera-reviews__arrow:focus-visible {
	outline: 2px solid var(--brera-review-orange);
	outline-offset: 3px;
}

.brera-reviews__carousel {
	position: relative;
}

.brera-reviews__viewport {
	overflow: hidden;
	padding: 18px 26px 34px;
	margin: -18px -26px -34px;
}

.brera-reviews__track {
	display: flex;
	align-items: stretch;
	gap: 32px;
	transition: transform .36s ease;
	will-change: transform;
}

.brera-review-card {
	display: flex;
	min-width: calc((100% - 64px) / 3);
	min-height: 246px;
	flex: 0 0 calc((100% - 64px) / 3);
	flex-direction: column;
	padding: 24px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(33, 33, 33, .11);
}

.brera-review-card[hidden] {
	display: none !important;
}

.brera-review-card__stars {
	position: relative;
	display: inline-block;
	width: max-content;
	margin-bottom: 15px;
	color: #d8d8d8;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1;
}

.brera-review-card__stars::after {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--brera-review-stars, 100%);
	overflow: hidden;
	color: #ffb400;
	content: "★★★★★";
	white-space: nowrap;
}

.brera-review-card__person {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.brera-review-card__avatar {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--brera-review-ink);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.brera-review-card__person > div {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.brera-review-card__person strong {
	overflow: hidden;
	font-size: 16px;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.brera-review-card__person div span {
	overflow: hidden;
	color: var(--brera-review-muted);
	font-size: 13px;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.brera-review-card__rating {
	padding: 8px 10px;
	border-radius: 999px;
	background: #fff1ed;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.brera-review-card > p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin: 0 0 18px;
	color: #3d3d3d;
	font-size: 16px;
	line-height: 1.5;
}

.brera-review-card__source {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--brera-review-ink);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none;
}

.brera-review-card__source img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.brera-reviews__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 16px rgba(33, 33, 33, .12);
	cursor: pointer;
	transform: translateY(-50%);
}

.brera-reviews__arrow--prev {
	left: -21px;
}

.brera-reviews__arrow--next {
	right: -21px;
}

.brera-reviews__arrow span {
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid var(--brera-review-ink);
	border-right: 1.5px solid var(--brera-review-ink);
}

.brera-reviews__arrow--prev span {
	transform: translateX(2px) rotate(-135deg);
}

.brera-reviews__arrow--next span {
	transform: translateX(-2px) rotate(45deg);
}

.brera-reviews__arrow:disabled {
	opacity: .35;
	cursor: default;
}

.brera-reviews__dots {
	display: flex;
	min-height: 8px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 30px;
}

.brera-reviews__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #d6d6d6;
	cursor: pointer;
}

.brera-reviews__dot.is-active {
	background: var(--brera-review-orange);
}

@media (max-width: 1023px) {
	.brera-reviews__metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.brera-review-card {
		min-width: calc((100% - 32px) / 2);
		flex-basis: calc((100% - 32px) / 2);
	}
}

@media (max-width: 767px) {
	.brera-reviews {
		padding: 22px 0 16px;
		scroll-margin-top: calc(var(--brera-top-fixed-offset, 0px) + 76px);
	}

	.brera-reviews__header {
		margin-bottom: 15px;
	}

	.brera-reviews__eyebrow {
		font-size: 11px;
	}

	.brera-reviews__title {
		font-size: clamp(34px, 11vw, 34px);
	}

	.brera-reviews__overview {
		grid-template-columns: 1fr;
		align-items: stretch;
	}

	.brera-reviews__summary {
		max-width: 100%;
		padding: 18px 16px;
	}

	.brera-reviews__score strong {
		font-size: 28px;
	}

	.brera-reviews__score span {
		font-size: 10px;
	}

	.brera-reviews__summary-copy strong {
		font-size: 18px;
		line-height: 1.15;
	}

	.brera-reviews__summary-copy span {
		font-size: 14px;
	}

	.brera-reviews__metric strong,
	.brera-reviews__metric span {
		font-size: 13px;
		font-weight: 700;
		line-height: 1;
	}

	.brera-reviews__mentions {
		display: none;
	}

	.brera-reviews__filters {
		flex-wrap: nowrap;
		overflow-x: auto;
		justify-content: flex-start;
		gap: 18px;
		margin-top: 42px;
		padding-bottom: 4px;
	}

	.brera-reviews__filter {
		flex: 0 0 auto;
	}

	.brera-review-card {
		min-width: 100%;
		flex-basis: 100%;
	}

	.brera-reviews__arrow {
		display: none;
	}

	.brera-reviews__viewport {
		touch-action: pan-y;
	}

	.brera-reviews__track {
		cursor: grab;
		user-select: none;
		-webkit-user-select: none;
	}

	.brera-reviews__track.is-dragging {
		cursor: grabbing;
	}

	.brera-review-card__person strong {
		font-size: 14px;
	}

	.brera-review-card__person div span {
		font-size: 12px;
	}
}

@media (max-width: 520px) {
	.brera-reviews__metrics {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.brera-review-card {
		padding: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.brera-reviews__track {
		transition: none;
	}
}
