/* Testimonial Carousel — WPBakery Addon */

.tc-wpb-wrapper {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
}

.tc-wpb-wrapper .tc-carousel-track {
	display: flex;
}

.tc-wpb-wrapper .slick-list {
	margin: 0 calc(var(--tc-gap, 30px) / -2);
}

.tc-card-item {
	padding: 0 calc(var(--tc-gap, 30px) / 2);
	box-sizing: border-box;
	outline: none;
}

.tc-card {
	background: #f5f5f5;
	padding: 55px 30px 30px;
	text-align: center;
	position: relative;
	border-radius: 2px;
}

.tc-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 25px;
	border: 3px solid #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tc-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tc-text {
	color: #8a8a8a;
	font-size: 14px;
	line-height: 1.9;
	margin-bottom: 25px;
	min-height: 100px;
}

.tc-text p {
	margin: 0;
}

.tc-name {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #1a1a1a;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.tc-title {
	font-size: 12px;
	color: #a8a8a8;
}

/* Arrows */
.tc-wpb-wrapper .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	border: none;
	font-size: 0;
	padding: 0;
	transition: opacity 0.2s ease;
}

.tc-wpb-wrapper .slick-arrow:before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-style: solid;
	border-width: 0 2px 2px 0;
}

.tc-wpb-wrapper .slick-prev {
	left: 0;
	background: #e6e6e6;
}

.tc-wpb-wrapper .slick-prev:before {
	border-color: #333;
	transform: rotate(135deg);
	margin-right: -3px;
}

.tc-wpb-wrapper .slick-next {
	right: 0;
	background: #1a1a1a;
}

.tc-wpb-wrapper .slick-next:before {
	border-color: #fff;
	transform: rotate(-45deg);
	margin-left: -3px;
}

.tc-wpb-wrapper .slick-arrow.slick-disabled {
	opacity: 0.4;
	cursor: default;
}

/* Dots pagination */
.tc-wpb-wrapper .slick-dots {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 40px 0 0;
	padding: 0;
}

.tc-wpb-wrapper .slick-dots li {
	line-height: 0;
}

.tc-wpb-wrapper .slick-dots li button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: #dcdcdc;
	font-size: 0;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, width 0.2s ease;
}

.tc-wpb-wrapper .slick-dots li.slick-active button {
	background: #1a1a1a;
	width: 20px;
	border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
	.tc-wpb-wrapper {
		padding: 0 45px;
	}
	.tc-wpb-wrapper .slick-arrow {
		width: 32px;
		height: 32px;
	}
}
