/**
 * ThryonLab Testimonials — frontend
 */

.thryonlab-testimonials {
	--tht-gap: 1.5rem;
	--tht-photo-size: 200px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.thryonlab-testimonials-grid {
	display: grid;
	gap: var(--tht-gap);
	grid-template-columns: repeat(var(--tht-cols, 1), minmax(0, 1fr));
}

@media (max-width: 782px) {
	.thryonlab-testimonials-grid {
		grid-template-columns: 1fr;
	}
}

.thryonlab-testimonial-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.5rem;
	background: #fafafa;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.thryonlab-testimonial-photo {
	width: var(--tht-photo-size);
	height: var(--tht-photo-size);
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	margin-bottom: 1rem;
	border: 3px solid #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.thryonlab-testimonial-photo-placeholder {
	width: var(--tht-photo-size);
	height: var(--tht-photo-size);
	border-radius: 50%;
	background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 0.75rem;
	text-align: center;
	padding: 0.5rem;
}

.thryonlab-testimonial-name {
	margin: 0 0 0.25rem;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
}

.thryonlab-testimonial-meta {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
	color: #555;
	line-height: 1.4;
}

.thryonlab-testimonial-meta .thryonlab-testimonial-designation {
	font-weight: 600;
}

.thryonlab-testimonial-meta .thryonlab-testimonial-country {
	display: block;
	font-weight: 400;
	color: #666;
	margin-top: 0.15rem;
}

.thryonlab-testimonial-stars {
	display: flex;
	justify-content: center;
	gap: 0.15rem;
	margin-bottom: 1rem;
	font-size: 1.25rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #c5c5c5;
}

.thryonlab-testimonial-stars .thryonlab-star {
	color: #c5c5c5;
}

.thryonlab-testimonial-stars .thryonlab-star.is-filled {
	color: #e6a100;
}

.thryonlab-testimonial-comment {
	width: 100%;
	text-align: left;
	font-size: 0.98rem;
	line-height: 1.65;
	color: #333;
}

.thryonlab-testimonial-comment > *:first-child {
	margin-top: 0;
}

.thryonlab-testimonial-comment > *:last-child {
	margin-bottom: 0;
}

.thryonlab-testimonials-heading {
	text-align: center;
	margin-bottom: 1.75rem;
	font-size: 1.75rem;
	font-weight: 700;
	color: #111;
}

.thryonlab-testimonial-single .thryonlab-testimonial-card {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.thryonlab-testimonials-empty,
.thryonlab-testimonial-invalid {
	grid-column: 1 / -1;
	text-align: center;
	color: #666;
	margin: 1rem 0;
}
