.sict-kv-reviews {
	box-sizing: border-box;
	width: 100%;
	max-width: var(--sict-kv-max-width, 1100px);
	margin-right: auto;
	margin-left: auto;
	color: #17202a;
}

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

.sict-kv-reviews--content_full {
	max-width: none;
}

.sict-kv-reviews--screen_full {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
	margin-right: -50vw;
	padding-right: clamp(16px, 4vw, 48px);
	padding-left: clamp(16px, 4vw, 48px);
}

.sict-kv-reviews__summary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-bottom: 24px;
	padding: 22px;
	text-align: left;
	border: 1px solid #e4e8ee;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(23, 32, 42, 0.08);
}

.sict-kv-reviews__score {
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	color: #101820;
}

.sict-kv-reviews__stars,
.sict-kv-review__stars {
	display: flex;
	gap: 2px;
	line-height: 1;
}

.sict-kv-star {
	color: #d7dde5;
	font-size: 18px;
}

.sict-kv-star--filled {
	color: #f4b400;
}

.sict-kv-reviews__count {
	margin-top: 6px;
	color: #5f6b7a;
	font-size: 15px;
}

.sict-kv-reviews__grid {
	display: grid;
	grid-template-columns: repeat(var(--sict-kv-columns, 3), minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.sict-kv-carousel {
	width: 100%;
}

.sict-kv-carousel__stage {
	position: relative;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	gap: 16px;
	align-items: center;
	width: 100%;
}

.sict-kv-carousel__stage--single {
	display: block;
}

.sict-kv-carousel__viewport {
	width: 100%;
	overflow: hidden;
	touch-action: pan-y;
	outline: none;
}

.sict-kv-carousel__viewport:focus-visible {
	border-radius: 8px;
	box-shadow: 0 0 0 3px rgba(24, 112, 68, 0.22);
}

.sict-kv-carousel__track {
	display: flex;
	width: 100%;
	transition: transform 260ms ease;
	will-change: transform;
}

.sict-kv-carousel__viewport.is-dragging .sict-kv-carousel__track {
	transition: none;
}

.sict-kv-carousel__slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 0;
	padding: 2px;
}

.sict-kv-carousel__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 84px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #61ad38;
	font-size: 76px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
	transition: color 160ms ease, transform 160ms ease;
}

.sict-kv-carousel__arrow:hover,
.sict-kv-carousel__arrow:focus-visible {
	color: #438f24;
	transform: scale(1.08);
	outline: none;
}

.sict-kv-carousel__arrow--prev {
	justify-self: start;
}

.sict-kv-carousel__arrow--next {
	justify-self: end;
}

.sict-kv-carousel__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 20px;
}

.sict-kv-carousel__dots--top {
	margin-bottom: 18px;
}

.sict-kv-carousel__dots--bottom {
	margin-top: 22px;
}

.sict-kv-carousel__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #c9d2dd;
	cursor: pointer;
	transition: background-color 160ms ease, transform 160ms ease;
}

.sict-kv-carousel__dot.is-active {
	background: #187044;
	transform: scale(1.25);
}

.sict-kv-review {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 22px;
	border: 1px solid #e4e8ee;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 10px 26px rgba(23, 32, 42, 0.07);
}

.sict-kv-review__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
}

.sict-kv-review__author {
	margin: 0;
	color: #101820;
	font-size: 18px;
	font-weight: 750;
	line-height: 1.25;
}

.sict-kv-review__meta {
	margin-top: 5px;
	color: #687587;
	font-size: 14px;
	line-height: 1.4;
}

.sict-kv-review__rating {
	flex: 0 0 auto;
	padding: 6px 9px;
	border-radius: 6px;
	background: #edf7f1;
	color: #187044;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
}

.sict-kv-review__title {
	margin: 16px 0 0;
	color: #17202a;
	font-size: 17px;
	font-weight: 750;
	line-height: 1.35;
}

.sict-kv-review__content {
	margin-top: 12px;
	color: #344054;
	font-size: 15px;
	line-height: 1.65;
}

.sict-kv-review__content p {
	margin: 0 0 12px;
}

.sict-kv-review__content p:last-child {
	margin-bottom: 0;
}

.sict-kv-review__read-more {
	align-self: flex-start;
	margin-top: 10px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #187044;
	font: inherit;
	font-weight: 750;
	line-height: 1.4;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.sict-kv-review__read-more:hover,
.sict-kv-review__read-more:focus-visible {
	color: #0f5834;
	outline: none;
}

.sict-kv-reviews__notice {
	padding: 16px;
	border-left: 4px solid #d63638;
	background: #fff8f8;
	color: #7a1f1f;
}

@media (max-width: 900px) {
	.sict-kv-reviews__grid {
		grid-template-columns: repeat(var(--sict-kv-tablet-columns, 2), minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.sict-kv-reviews__summary {
		align-items: flex-start;
		justify-content: flex-start;
	}

	.sict-kv-reviews__score {
		font-size: 40px;
	}

	.sict-kv-reviews__grid {
		grid-template-columns: repeat(var(--sict-kv-mobile-columns, 1), minmax(0, 1fr));
	}

	.sict-kv-review {
		padding: 18px;
	}

	.sict-kv-carousel__stage {
		grid-template-columns: 28px minmax(0, 1fr) 28px;
		gap: 8px;
	}

	.sict-kv-carousel__arrow {
		width: 28px;
		height: 58px;
		font-size: 54px;
	}
}
