/* The widget sits in an Elementor V4 atomic flexbox section, so it's a flex
   item and sizes to its content by default. Leave Advanced > Width on Default. */
.elementor-widget-reviews_carousel_833d102a {
	width: 100%;
	align-self: stretch;
	min-width: 0;
}

.rc-833d102a-wrapper {
	position: relative;
	width: 100%;
	max-width: 100%;
	padding-bottom: 48px;   /* room for the dots */
	box-sizing: border-box;
	overflow: hidden;
}

/* --- Minimal Swiper layout, as a safety net --- */
.rc-833d102a-wrapper .swiper-wrapper {
	position: relative;
	display: flex;
	align-items: stretch;   /* equal-height cards regardless of review length */
	width: 100%;
	box-sizing: content-box;
	z-index: 1;
	transition-property: transform;
}

.rc-833d102a-slide {
	position: relative;
	flex-shrink: 0;
	height: auto;
	display: flex;
	box-sizing: border-box;
}

/* --- Fallback: if Swiper never initialises, show a grid rather than a stack --- */
.rc-833d102a-wrapper:not(.swiper-initialized) .swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	transform: none;
}

@media (max-width: 1024px) {
	.rc-833d102a-wrapper:not(.swiper-initialized) .swiper-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.rc-833d102a-wrapper:not(.swiper-initialized) .swiper-wrapper {
		grid-template-columns: minmax(0, 1fr);
	}
}

.rc-833d102a-wrapper:not(.swiper-initialized) .rc-833d102a-pagination {
	display: none;
}

/* --- Card --- */
.rc-833d102a-card {
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	box-sizing: border-box;
}

.rc-833d102a-header {
	width: 100%;
}

.rc-833d102a-name {
	margin: 0 0 4px 0;
	font-size: 1.15rem;
	font-weight: 600;
}

.rc-833d102a-source {
	display: block;
	font-size: 0.85rem;
	opacity: 0.7;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.rc-833d102a-stars {
	display: block;
	font-size: 16px;
	letter-spacing: 2px;
}

.rc-833d102a-text {
	margin: 0;
	font-style: italic;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* --- Pagination dots --- */
.rc-833d102a-pagination {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	z-index: 2;
	line-height: 0;
}

.rc-833d102a-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	display: inline-block;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
	background: #226A87;
	opacity: 0.35;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.rc-833d102a-pagination .swiper-pagination-bullet:hover {
	opacity: 0.7;
}

.rc-833d102a-pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.rc-833d102a-pagination .swiper-pagination-bullet {
		transition: none;
	}
}