/* =============================================================================
   Testimonials — quote cards, peek carousel
   ========================================================================== */

.wt-testimonials {
	max-width: var(--wt-container-max);
	margin: 0 auto;
	padding: var(--wt-stack-2xl) var(--wt-gutter);
}

.wt-testimonials__header {
	text-align: center;
	margin-bottom: var(--wt-stack-xl);
}

.wt-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wt-stack-lg);
}

@media (max-width: 900px) {
	.wt-testimonials__grid { grid-template-columns: 1fr; }
}

.wt-quote {
	position: relative;
	background: var(--wt-surface-container-lowest);
	border: 1px solid var(--wt-outline-variant);
	border-radius: var(--wt-radius-xl);
	padding: var(--wt-stack-xl) var(--wt-stack-lg) var(--wt-stack-lg);
	display: flex;
	flex-direction: column;
	gap: var(--wt-stack-md);
	transition: all var(--wt-transition-base);
}
.wt-quote:hover {
	transform: translateY(-4px);
	box-shadow: var(--wt-shadow-lg);
	border-color: var(--wt-primary-fixed);
}

.wt-quote::before {
	content: '\201C';
	position: absolute;
	top: -18px;
	left: var(--wt-stack-lg);
	font-family: var(--wt-font-display);
	font-size: 90px;
	line-height: 1;
	color: var(--wt-amber);
	font-weight: var(--wt-fw-extrabold);
}

.wt-quote__body {
	font-family: var(--wt-font-body);
	font-size: 17px;
	line-height: var(--wt-lh-relaxed);
	color: var(--wt-on-surface);
	margin: 0;
	font-style: italic;
}

.wt-quote__attribution {
	display: flex;
	align-items: center;
	gap: var(--wt-stack-sm);
	margin-top: auto;
	padding-top: var(--wt-stack-md);
	border-top: 1px solid var(--wt-outline-variant);
}

.wt-quote__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--wt-primary-fixed);
	color: var(--wt-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wt-font-display);
	font-weight: var(--wt-fw-bold);
	font-size: 18px;
	flex-shrink: 0;
}

.wt-quote__author {
	font-family: var(--wt-font-body);
	font-weight: var(--wt-fw-bold);
	color: var(--wt-on-surface);
	font-size: 15px;
	line-height: 1.3;
	display: block;
}
.wt-quote__role {
	font-family: var(--wt-font-body);
	font-size: 13px;
	color: var(--wt-on-surface-variant);
	line-height: 1.3;
	display: block;
}
