/* Custom Testimonials for Elementor — base structural styles.
   Colors, spacing, typography, borders and shadows are controlled
   live from the Elementor Style tab and injected as inline CSS vars
   by Elementor itself — this file only sets up structure/defaults. */

.cte-testimonials-wrap {
	width: 100%;
}

.cte-heading-wrap {
	text-align: center;
}

.cte-eyebrow {
	display: block;
	font-size: 42px;
	line-height: 1.2;
	margin: 0 0 5px;
}

.cte-main-heading {
	display: block;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
}

.cte-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 60px;
	row-gap: 40px;
	align-items: start;
}

.cte-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.cte-avatar-wrap {
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
}

.cte-avatar {
	width: 90px;
	height: 90px;
	border-radius: 50%; /* fallback default; overridden inline by the Avatar > Shape control */
	object-fit: cover;
	border: 6px solid #F4F1EE;
	display: block;
}

.cte-quote-icon {
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: #6E2FD9;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cte-review-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 15px;
}

.cte-review-text {
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 20px;
}

.cte-customer-name {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 8px;
}

.cte-stars {
	display: flex;
	gap: 3px;
}

.cte-star {
	font-size: 15px;
	line-height: 1;
	color: #E2DFDC;
}

.cte-star.filled {
	color: #F2665E;
}

/* Responsive fallback — Elementor's responsive column control
   overrides this per-breakpoint, this is just a safety net. */
@media (max-width: 767px) {
	.cte-grid {
		grid-template-columns: 1fr !important;
	}
}
