/* ------------------------------------------------------------------
   TEN Attorney Testimonials — front-end carousel styling
   ------------------------------------------------------------------ */

.ten-testimonial-carousel {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.ten-testimonial-viewport {
	overflow: hidden;
	width: 100%;
}

.ten-testimonial-track {
	display: flex;
	will-change: transform;
	transition: transform 0.8s ease;
}

.ten-testimonial-card {
	flex: 0 0 33.3333%;
	box-sizing: border-box;
	padding: 60px 15px 15px;
}

.ten-testimonial-box {
	position: relative;
	background-color: #dbe3d3;     /* sage background */
	border: 2px solid #c9a961;     /* yellow / gold outline */
	border-radius: 3px;
	padding: 70px 28px 28px;
	height: 100%;
	box-sizing: border-box;
}

.ten-testimonial-photo {
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 110px;
	height: 110px;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	border: 4px solid #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ten-testimonial-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ten-testimonial-name {
	margin: 0;
	line-height: 1.2;
	font-size: 1.3rem;
	font-weight: 700;
	color: #000000;
	padding-bottom: 3px;
}

.ten-testimonial-practice {
	margin: 0 0 16px;
	line-height: 1.2;
	font-size: 0.90rem;
	font-style: italic;
	font-weight: 600;
	color: #4c6b3a;
}

.ten-testimonial-quote {
	margin: 0;
	color: #000000;
	line-height: 1.6;
}

/* Tablet: 2 cards visible */
@media (max-width: 900px) {
	.ten-testimonial-card {
		flex-basis: 50%;
	}
}

/* Mobile: 1 card visible */
@media (max-width: 600px) {
	.ten-testimonial-card {
		flex-basis: 100%;
	}
}
