.testimonial-slider {
	position: relative;
	padding: 60px 20px;
	overflow: hidden;
	margin: 20px 0;
}

.testimonial-slider-wrapper {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.testimonial-slider-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.testimonial-slide {
	display: none;
	text-align: center;
	padding: 0 80px;
	animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.testimonial-header {
	font-family: "Chakra Petch", sans-serif;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
	color: #000;
	text-transform: uppercase;
	text-align: center;
}

.testimonial-content {
	max-width: 760px;
	margin: 0 auto;
}

.testimonial-quote {
	font-family: 'Inter', serif;
	font-size: 16px;
	line-height: 1.6;
	color: #000;
	margin-bottom: 30px;
}

.testimonial-quote::before {
	content: '"';
}

.testimonial-quote::after {
	content: '"';
}

.testimonial-author {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #000;
	margin-bottom: 0;
}

.testimonial-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	transition: opacity 0.3s ease;
	z-index: 10;
}

.testimonial-nav:hover {
	opacity: 0.7;
}

.testimonial-nav:focus {
	outline: 2px solid #000;
	outline-offset: 2px;
}

.testimonial-prev {
	left: 20px;
}

.testimonial-next {
	right: 20px;
}

.testimonial-nav svg {
	fill: #000;
	width: 40px;
	height: 40px;
}

.testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 40px;
}

.testimonial-dot {
	width: 12px;
	height: 12px;
	border: none;
	background-color: transparent;
	border: 2px solid #000;
	cursor: pointer;
	transition: background-color 0.3s ease;
	padding: 0;
}

.testimonial-dot.active {
	background-color: #000;
}

.testimonial-dot:hover {
	background-color: #666;
}

.testimonial-dot:focus {
	outline: 2px solid #000;
	outline-offset: 2px;
}

/* Responsive styles */
@media (max-width: 768px) {
	.testimonial-slider {
		padding: 40px 20px;
	}
	
	.testimonial-slide {
		padding: 0 60px;
	}
	
	.testimonial-quote {
		font-size: 18px;
	}
	
	.testimonial-nav {
		padding: 5px;
	}
	
	.testimonial-prev {
		left: -22px;
	}
	
	.testimonial-next {
		right: -22px;
	}
	
	.testimonial-nav svg {
		width: 30px;
		height: 30px;
	}
}

@media (max-width: 480px) {
	.testimonial-slide {
		padding: 0 40px;
	}
	
	.testimonial-header {
		font-size: 16px;
		margin-bottom: 30px;
	}
	
	.testimonial-quote {
		font-size: 16px;
		margin-bottom: 20px;
	}
	
	.testimonial-author {
		font-size: 14px;
	}
	
	.testimonial-dots{
		display: none;
	}
}

/* Admin preview styles */
.acf-block-preview .testimonial-slider {
	min-height: 300px;
}