/*
 * Testimonials — quote cards. Stars use the rationed orange accent (and only ever
 * show for a real, per-testimonial rating). Card surface matches the theme's card
 * language (paper canvas, hairline border, soft shadow).
 */
.fd-testimonials {
	background: var(--fd-paper-soft, #eef2f7);
}
.fd-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}
.fd-testimonial {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	background: var(--fd-white, #fff);
	border: 1px solid var(--fd-line, #e2e8f0);
	border-radius: 14px;
	padding: 1.6rem;
	box-shadow: var(--fd-shadow-md, 0 4px 16px rgba(20, 41, 74, 0.08));
}
.fd-testimonial__stars {
	color: var(--fd-orange-500, #ee8a2e);
	letter-spacing: 0.15em;
	font-size: 1.05rem;
	line-height: 1;
}
.fd-testimonial__quote {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--fd-ink-700, #334155);
}
.fd-testimonial__quote::before { content: "\201C"; }
.fd-testimonial__quote::after  { content: "\201D"; }
.fd-testimonial__by {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}
.fd-testimonial__name {
	font-weight: 700;
	color: var(--fd-navy-800, #14294a);
}
.fd-testimonial__meta {
	font-size: 0.875rem;
	color: var(--fd-ink-500, #64748b);
}
