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

/* Testimonial Card */
.tf-testimonial-card {
	background: #FFFFFF;
	border-radius: 8px;
	padding: 24px 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 280px;
	transition: all 0.3s ease;
	border: 1px solid #E5E5E5;
}

.tf-testimonial-card:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	border-color: #ddd;
}

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

/* Footer with Avatar & Meta */
.tf-testimonial-footer {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

/* 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: 20px;
	font-weight: 400;
	color: #000000;
}

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

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

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

.tf-rating-text {
	font-size: 13px;
	color: #666;
}
.tf-review-actions {
	display: flex;
	gap: 4px;
	margin-top: 32px;
}

.tf-read-more-btn,
.tf-write-review-btn {
	padding: 14px 32px !important;
	border: 1px solid #184A9B !important;
	text-decoration: none;
	cursor: pointer;
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 16px !important;
}
.tf-read-more-btn::before,
.tf-write-review-btn::before { 
	content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-repeat: no-repeat;
    transition: ease-in-out all 0.3s;
}
.tf-read-more-btn:hover::before,
.tf-write-review-btn:hover::before {  
	transform: rotate(45deg);
}
.tf-read-more-btn::before{
	background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="10" fill="white"/><path d="M11.3333 7.63133L16.6667 11V12.3333L11.3333 10.6493V14.2227L13.3333 15.3333V16.3333L10.3333 15.6667L7.33333 16.3333V15.3333L9.33333 14.222V10.6487L4 12.3333V11L9.33333 7.63133V4C9.33333 3.73478 9.43869 3.48043 9.62623 3.29289C9.81376 3.10536 10.0681 3 10.3333 3C10.5985 3 10.8529 3.10536 11.0404 3.29289C11.228 3.48043 11.3333 3.73478 11.3333 4V7.63133Z" fill="%23184A9B"/></svg>');
}
.tf-write-review-btn::before {  
	background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="10" fill="%23184A9B"/><path d="M11.3333 7.63133L16.6667 11V12.3333L11.3333 10.6493V14.2227L13.3333 15.3333V16.3333L10.3333 15.6667L7.33333 16.3333V15.3333L9.33333 14.222V10.6487L4 12.3333V11L9.33333 7.63133V4C9.33333 3.73478 9.43869 3.48043 9.62623 3.29289C9.81376 3.10536 10.0681 3 10.3333 3C10.5985 3 10.8529 3.10536 11.0404 3.29289C11.228 3.48043 11.3333 3.73478 11.3333 4V7.63133Z" fill="white"/></svg>');
}
.tf-read-more-btn {
	background: #184A9B;
	color: #fff !important;
	border-radius: 50px 0 0 50px;
	transition: all 0.3s ease;
}

.tf-write-review-btn { 
	background: transparent !important;
	color: #484848 !important;
	border-radius: 0 50px 50px 0 !important;
	transition: all 0.3s ease;
}


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

	.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;
	}

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

	.tf-testimonial-quote {
		line-height: 1.5;
		margin-bottom: 24px;
	}

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

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

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

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

	.tf-rating-text {
		font-size: 12px;
	}
	.tf-read-more-btn,
	.tf-write-review-btn { 
		padding: 12px !important;
		font-size: 14px !important;
	}
}
