/* Slick testimonials slider styles (scoped to this plugin module) */

.sports-testimonials-module {
	background: #ebebec;
	padding: 60px 0;
}

.sports-testimonials-module .container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

.sports-testimonials-module .testimonial-content-wrapper {
	display: flex;
	gap: 5.5%;
	align-items: center;
}

.sports-testimonials-module .testimonial-image {
	width: 50%;
}

.sports-testimonials-module .testimonial-image img {
	width: 100%;
	border-radius: 12px;
	display: block;
}

/* Right Content */
.sports-testimonials-module .testimonial-content {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

/* Quote Icon */
.sports-testimonials-module .quote-icon {
	width: 100px;
	height: 82px;
	font-size: 80px;
	color: #76c044;
	line-height: 1;
}

/* Quote Text */
.sports-testimonials-module .quote-text {
	font-family: "Gibson", sans-serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.52;
	margin: 0;
	color: #000;
	text-align: center;
}

/* Author */
.sports-testimonials-module .author {
	font-family: "Gibson", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.52;
	margin: 0;
	color: #4a494a;
}

/* Button */
.sports-testimonials-module .btn-read {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 5px 17px;
	background-color: #76c044;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.7;
	border-radius: 4px;
	transition: 0.3s;
	margin: 10px 0;
}

.sports-testimonials-module .btn-read svg {
	color: #fff;
	width: 0px;
	height: 27px;
	transition: 0.3s ease;
}

.sports-testimonials-module .btn-read:hover {
	opacity: 0.85;
}

.sports-testimonials-module .btn-read:hover svg {
	width: 27px;
}

@media screen and (max-width: 767px) {
	.sports-testimonials-module .testimonial-content-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.sports-testimonials-module .testimonial-content {
		width: 100%;
	}

	.sports-testimonials-module .testimonial-image {
		width: 100%;
	}
}

/* Slider layout */
.sports-testimonials-module .testimonial-slider-wrap {
	position: relative;
}

.sports-testimonials-module .testimonial-slider .testimonial-slide {
	outline: none;
}

/* Optional: keep arrows above slide content */
.sports-testimonials-module .testimonial-slider-wrap .slick-prev,
.sports-testimonials-module .testimonial-slider-wrap .slick-next {
	z-index: 3;
	width: 40px;
	height: 40px;
}

/* Place arrows 40px from container edges */
.sports-testimonials-module .testimonial-slider-wrap .slick-prev {
	left: -100px;
}

.sports-testimonials-module .testimonial-slider-wrap .slick-next {
	right: -100px;
}

/* Use provided SVGs for arrow glyphs */
.sports-testimonials-module .testimonial-slider-wrap .slick-arrow-svg {
	/* keep Slick's absolute positioning from slick-theme */
	background: transparent;
	border: 0;
	padding: 0;
}

.sports-testimonials-module .testimonial-slider-wrap .slick-arrow-svg:before {
	display: none; /* hide slick-theme default chevrons */
	content: '';
}

.sports-testimonials-module .testimonial-slider-wrap .slick-arrow-svg img {
	display: block;
	width: 40px;
	height: 40px;
}

