/* Home testimonial (wp_block 55) — markup round 2 pin 7 (2026-09-03): the
 * quote now sits in a kindling/carousel so more testimonials can be added as
 * slides; the pagination dots sit below the author line. Arrows are off. */
.cmp-home-testimonial .kindling-carousel-container {
	padding-bottom: 44px;
}

.cmp-home-testimonial .splide__pagination {
	/* Splide hides pagination until the slides overflow (.is-overflow); with
	 * a single testimonial today the dot would never show, so force it. */
	display: flex !important;
	bottom: 0;
	gap: 8px;
}

.cmp-home-testimonial .splide__pagination li button {
	background: var(--wp--preset--color--theme-05);
	opacity: 1;
}

.cmp-home-testimonial .splide__pagination li button.is-active {
	background: var(--wp--preset--color--theme-06);
	transform: none;
}

/* Mobile review 2026-09-11 (M1): kindling/carousel keeps a 45px arrow gutter on
 * the .splide container even with arrows off, and the track computes
 * overflow:visible, so the loop clones peeked into the gutters at 390
 * (cut-off quote text both sides). Figma mobile 33492:9337 is one centred
 * quote, nothing peeking. Zero the gutter and clip the track. */
.cmp-home-testimonial .kindling-carousel-container {
	padding-left: 0;
	padding-right: 0;
}

.cmp-home-testimonial .splide__track {
	overflow: hidden;
}
