/* Testimonials Display Container */
.tf-testimonials-container {
	display: grid;
	grid-template-columns: repeat(var(--tf-columns, 2), 1fr);
	gap: 24px;
	margin: 40px 0;
	width: 100%;
}

/* Testimonial Card */
.tf-testimonial-card {
	background: #f9f9f9;
	border-radius: 12px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 280px;
	transition: all 0.3s ease;
	border: 1px solid #eee;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tf-testimonial-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	border-color: #ddd;
}

/* Quotation Mark */
.tf-testimonial-card::before {
	content: '"';
	font-size: 48px;
	color: #0066cc;
	opacity: 0.2;
	line-height: 1;
	margin-bottom: 12px;
	font-family: Georgia, serif;
}

/* Quote Text */
.tf-testimonial-quote {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 24px;
	flex-grow: 1;
}

/* Footer with Avatar & Meta */
.tf-testimonial-footer {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	border-top: 1px solid #e0e0e0;
	padding-top: 20px;
}

/* Avatar */
.tf-testimonial-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0066cc, #0052a3);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
	flex-shrink: 0;
}

/* Meta Information */
.tf-testimonial-meta {
	flex-grow: 1;
}

.tf-testimonial-name {
	font-size: 15px;
	font-weight: 600;
	color: #0066cc;
	margin-bottom: 6px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.tf-testimonial-location {
	color: #666;
	font-weight: 400;
}

/* Rating */
.tf-testimonial-rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tf-stars-display {
	font-size: 16px;
	color: #ffc107;
	letter-spacing: 2px;
}

.tf-rating-text {
	font-size: 13px;
	color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.tf-testimonials-container {
		grid-template-columns: repeat(var(--tf-columns, 2), 1fr);
		gap: 20px;
	}

	.tf-testimonial-card {
		padding: 24px 20px;
		min-height: 260px;
	}

	.tf-testimonial-quote {
		font-size: 15px;
		margin-bottom: 20px;
	}

	.tf-testimonial-avatar {
		width: 48px;
		height: 48px;
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.tf-testimonials-container {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.tf-testimonial-card {
		padding: 20px 16px;
		min-height: auto;
	}

	.tf-testimonial-card::before {
		font-size: 36px;
		margin-bottom: 8px;
	}

	.tf-testimonial-quote {
		font-size: 14px;
		line-height: 1.5;
		margin-bottom: 16px;
	}

	.tf-testimonial-footer {
		gap: 12px;
		padding-top: 16px;
	}

	.tf-testimonial-avatar {
		width: 44px;
		height: 44px;
		font-size: 14px;
	}

	.tf-testimonial-name {
		font-size: 14px;
	}

	.tf-testimonial-rating {
		gap: 6px;
	}

	.tf-stars-display {
		font-size: 14px;
	}

	.tf-rating-text {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.tf-testimonials-container {
		gap: 12px;
	}

	.tf-testimonial-card {
		padding: 16px 12px;
	}

	.tf-testimonial-quote {
		font-size: 13px;
	}

	.tf-testimonial-avatar {
		width: 40px;
		height: 40px;
		font-size: 12px;
	}
}
