/* :root {
	--TESTI_SLIDER_SECTION_TITLE_COLOR: var(--color2);
	--TESTI_SLIDER_SECTION_CARD_BG: linear-gradient(300deg, #36a5d9, #1b5876);
	--TESTI_SLIDER_SECTION_CARD_COLOR: var(--color2);
	--TESTI_SLIDER_SECTION_CONTENT_COLOR: var(--color2);
	--TESTI_SLIDER_SECTION_AUTHOR_COLOR: var(--color2);
	--TESTI_SLIDER_BULLET_BG: var(--color4);
	--TESTI_SLIDER_ACTIVE_BULLET_BG: var(--blue);
} */

.testimonials {
	width: 100%;
	padding: 20px 0;
	text-align: center;
}

.testimonials .testimonial-title {
	margin-bottom: 10px;
	color: var(--TESTI_SLIDER_SECTION_TITLE_COLOR);
    font-family: var(--SECONDARY_FONT_FAMILY);
    letter-spacing: var(--SECONDARY_FONT_LETTER_SPACING);
	font-size: var(--SECTION_HEADER_LARGE_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
}

.testimonials .testimonial-card {
	height: 100%;
	padding: 20px 30px;
	border-radius: 16px;
	background: var(--TESTI_SLIDER_SECTION_CARD_BG);
	color: var(--TESTI_SLIDER_SECTION_CARD_COLOR);
	cursor: default;
	transition: transform .2s cubic-bezier(0, 0, .2, 1);
}

.testimonials .testimonial-card:hover {
    transform: scale(1.01);
}

.testimonials .testimonial-card .testimonial-stars {
	margin-bottom: 16px;
}

.testimonials .testimonial-card .testimonial-stars img {
	width: 100%;
	height: auto;
}

.testimonials .testimonial-card .testimonial-content {
	margin-bottom: 16px;
}

.testimonials .testimonial-card .testimonial-content * {
	color: var(--TESTI_SLIDER_SECTION_CONTENT_COLOR);
	font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
	font-weight: var(--MED_FONT_WEIGHT);
	line-height: 1.5;
}

.testimonials .testimonial-card .testimonial-author {
	color: var(--TESTI_SLIDER_SECTION_AUTHOR_COLOR);
	font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
	font-weight: var(--SEMIBOLD_FONT_WEIGHT);
}

/* Swiper tweaks */
.testimonial-swiper {
	padding: 10px;
}

.testimonial-swiper:not(:has(.swiper-pagination-lock)) {
	padding-bottom: 36px;
}

.testimonial-swiper .swiper-slide {
	height: auto;
}

.testimonial-swiper .swiper-pagination-bullet {
	background: var(--TESTI_SLIDER_BULLET_BG);
}

.testimonial-swiper .swiper-pagination-bullet-active {
	background: var(--TESTI_SLIDER_ACTIVE_BULLET_BG);
}