/**
 * Signature Landscape Contractors – RAFX Testimonials Carousel
 * Matches the existing Elementor Testimonial Carousel on the homepage:
 *   - centered single-card layout
 *   - large italic serif quote text
 *   - "— Author Name" in the site's secondary/accent colour
 *   - dot navigation below
 */

/* ── Wrapper ─────────────────────────────────────────────────────────── */
.slc-testimonials {
	position: relative;
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	padding: 0 20px 48px;
	box-sizing: border-box;
	text-align: center;
	font-family: inherit;
}

/* ── Active slide container ──────────────────────────────────────────── */
.slc-testimonials__slide {
	min-height: 2em;           /* prevent layout jump while JS initialises */
}

/* ── Quote text ──────────────────────────────────────────────────────── */
.slc-testimonials__text {
	font-size: clamp(1.05rem, 2.8vw, 2rem);
	font-style: italic;
	line-height: 1.75;
	color: var(--e-global-color-text, #2c2c2c);
	font-family: var(--e-global-typography-text-font-family, Georgia, serif);
	margin: 0 0 24px;
}

/* ── Author line: "— Name" ───────────────────────────────────────────── */
.slc-testimonials__author {
	font-size: clamp(0.95rem, 2vw, 2.1rem);
	font-style: italic;
	font-family: var(--e-global-typography-text-font-family, Georgia, serif);
	color: var(--e-global-color-secondary, #7a8c5e);
	line-height: 1.4;
}

/* ── Dot navigation ──────────────────────────────────────────────────── */
.slc-testimonials__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.slc-testimonials__dot {
	/* Reset all inherited button styles */
	all: unset;
	display: block;
	box-sizing: border-box;
	width: 6px !important;
	height: 6px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: 6px !important;
	max-height: 6px !important;
	border-radius: 50% !important;
	background: #c8cdc5 !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	cursor: pointer;
	transition: background 0.28s ease, transform 0.28s ease;
	flex-shrink: 0;
}

.slc-testimonials__dot.is-active {
	background: var(--e-global-color-secondary, #7a8c5e) !important;
	transform: scale(1.22);
}

.slc-testimonials__dot:focus-visible {
	outline: 2px solid var(--e-global-color-secondary, #7a8c5e);
	outline-offset: 2px;
}

/* ── Read more / Read less ───────────────────────────────────────────── */
.slc-text-full {
	display: none;
}

.slc-read-more {
	all: unset;
	display: inline;
	font-size: 0.85em;
	font-style: normal;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
	color: var(--e-global-color-secondary, #7a8c5e);
	cursor: pointer;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}

.slc-read-more:hover,
.slc-read-more:focus {
	opacity: 0.7;
	outline: none;
}

/* ── Slide fade-in ───────────────────────────────────────────────────── */
@keyframes slc-fade-in {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.slc-testimonials__slide.is-animating {
	animation: slc-fade-in 0.38s ease forwards;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {
	.slc-testimonials {
		padding: 0 12px 40px;
	}
}
