/**
 * Testimonial Snippet Component
 * ============================================================================
 * Compact testimonial card for carousels
 *
 * Load order: After 01-base.css
 * Dependencies: 00-tokens-core.css (design tokens)
 * ============================================================================
 */

.testimonial-snippet {
	display: flex;
	flex-direction: column;
	background: var(--grey-light);
	padding: var(--space-6);
	border-radius: var(--radius-md);
	min-height: 300px;
}

.testimonial-snippet__quote {
	font-size: var(--text-lg);
	line-height: 1.6;
	margin-bottom: var(--space-4);
	flex: 1;
}

.testimonial-snippet__logo {
	max-height: 48px;
	width: auto;
	object-fit: contain;
	margin-top: auto;
	align-self: flex-start;
}

.testimonial-snippet__footer {
	margin-top: var(--space-4);
	font-size: var(--text-sm);
	color: var(--text-secondary);
}

.testimonial-snippet__author {
	display: block;
	font-weight: var(--font-semibold);
	font-style: normal;
}

.testimonial-snippet__role {
	display: block;
	color: var(--text-muted);
}

/* ==========================================================================
   Responsive: Tablet (768px)
   ========================================================================== */

@media (width <= 768px) {
	.testimonial-snippet {
		min-height: 250px;
		padding: var(--space-5);
	}

	.testimonial-snippet__logo {
		max-height: 40px;
	}
}

/* ==========================================================================
   Responsive: Small Mobile (480px)
   ========================================================================== */

@media (width <= 480px) {
	.testimonial-snippet {
		min-height: 200px;
		padding: var(--space-4);
	}

	.testimonial-snippet__quote {
		font-size: var(--text-base);
	}
}
