/**
 * DigitalCrave Testimonials - Public slider styles
 */

.dc-testimonial-slider-wrap {
	position: relative;
	padding: 0 40px;
	box-sizing: border-box;
}

.dc-testimonial-slider-wrap * {
	box-sizing: border-box;
}

.dc-testimonial-swiper {
	overflow: hidden;
	padding-bottom: 40px;
}

.dc-testimonial-swiper .swiper-wrapper {
	align-items: stretch;
}

.dc-testimonial-swiper .swiper-slide {
	height: auto;
	display: flex;
}

.dc-testimonial-card {
	background: #ffffff;
	border-radius: 8px;
	padding: 30px 25px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dc-align-left .dc-testimonial-card { text-align: left; }
.dc-align-center .dc-testimonial-card { text-align: center; }
.dc-align-right .dc-testimonial-card { text-align: right; }

.dc-testimonial-rating {
	color: #f5a623;
	font-size: 16px;
	letter-spacing: 2px;
}

.dc-star-empty {
	color: #d9d9d9;
}

.dc-testimonial-review p {
	margin: 0;
	line-height: 1.6;
	color: #4a4a4a;
	font-size: 15px;
}

.dc-testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.dc-align-center .dc-testimonial-author {
	justify-content: center;
}

.dc-align-right .dc-testimonial-author {
	justify-content: flex-end;
}

.dc-testimonial-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.dc-testimonial-meta {
	display: flex;
	flex-direction: column;
	line-height: 1.4;
}

.dc-testimonial-name {
	font-weight: 700;
	color: #1a1a1a;
	font-size: 15px;
}

.dc-testimonial-designation {
	font-size: 13px;
	color: #6b6b6b;
}

.dc-swiper-nav {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	background: #ffffff;
	border: 1px solid #e2e2e2;
	color: #1a1a1a;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.dc-swiper-nav:hover,
.dc-swiper-nav:focus-visible {
	background: #1a1a1a;
	color: #ffffff;
	outline: none;
}

.dc-swiper-prev {
	left: 0;
}

.dc-swiper-next {
	right: 0;
}

.dc-swiper-pagination.swiper-pagination-bullets {
	position: static;
	margin-top: 8px;
}

.swiper-pagination-bullet {
	background: #d9d9d9;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: #1a1a1a;
}

.dc-testimonials-empty {
	text-align: center;
	color: #6b6b6b;
	padding: 20px;
}

@media (max-width: 767px) {
	.dc-testimonial-slider-wrap {
		padding: 0 30px;
	}

	.dc-swiper-nav {
		width: 32px;
		height: 32px;
	}
}
