/* ── Testimonials Section ─────────────────────────────────── */

.testimonials-section {
	background: #f8f8f8;
}

.testimonials-section .section-header {
	margin-bottom: 48px;
}

/* ── Grid ────────────────────────────────────────────────── */

.testimonials-grid {
	position: relative;
}

.testimonials-track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.testimonials-track {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.testimonial-card {
		flex: 0 0 300px;
		scroll-snap-align: start;
	}
}

/* ── Card ────────────────────────────────────────────────── */

.testimonial-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 12px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* ── Stars ───────────────────────────────────────────────── */

.testimonial-stars {
	display: flex;
	gap: 3px;
	color: #FBBF24;
}

/* ── Quote ───────────────────────────────────────────────── */

.testimonial-quote {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--ink, #0C1F3F);
	margin: 0;
}

/* ── Author ──────────────────────────────────────────────── */

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.testimonial-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-name {
	font-size: 14px;
	color: var(--gray-500, #6b7280);
}
