/* CFC Testimonials - frontend styles */
.cfc-testimonials{
	/* background: var(--cfc-bg, #14103a); */
	padding: 72px 0;
	color: #fff;
}

.cfc-testimonials__inner{
	max-width: var(--cfc-max, 1200px);
	margin: 0 auto;
	padding: 0 24px;
}

/* Carousel */
.cfc-carousel{
	--cfc-spv: 2;            /* slides per view (set by JS) */
	--cfc-slide: 520px;      /* slide width (set by JS) */
	position: relative;
}

.cfc-carousel__viewport{
	overflow: hidden;
}

.cfc-carousel__track{
	display: flex;
	gap: var(--cfc-gap, 120px);
	align-items: flex-start;
	transition: transform 420ms ease;
	will-change: transform;
}

.cfc-carousel__slide{
	flex: 0 0 var(--cfc-slide, 100%);
}

/* Controls */
.cfc-carousel__controls{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 28px;
}

.cfc-carousel__btn{
	width: 26px;
	height: 26px;
	border-radius: 100%;
	border: 1px solid rgba(255,255,255,0.35);
	background: transparent;
	color: #ffffff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cfc-carousel__btn:disabled{
	opacity: 0.35;
	cursor: not-allowed;
}

.cfc-carousel__dots{
	display: inline-flex;
	gap: 10px;
	align-items: center;
}

.cfc-carousel__dot{
	width: 9px;
	height: 9px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.55);
	background: transparent;
	cursor: pointer;
	padding: 0;
}

.cfc-carousel__dot.is-active{
	background: #ffffff;
	border-color: #ffffff;
}

/* Testimonial */
.cfc-testimonial{
	display: block;
}

.cfc-testimonial__avatar{
	width: var(--cfc-avatar, 120px);
	height: var(--cfc-avatar, 120px);
	border-radius: 999px;
	overflow: hidden;
	margin: 0 0 32px 0;
}

.cfc-testimonial__img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cfc-testimonial__body{
	position: relative;
	padding-left: 44px; /* space for the big quote mark */
}

.cfc-testimonial__quote-mark{
	position: absolute;
	left: 0;
	top: -6px;
	font-size: 48px;
	line-height: 1;
	font-weight: 700;
	opacity: 0.95;
	color: #ffffff;
	font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	display: block;
}

.cfc-testimonial__text{
	font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 14px;
	line-height: 21px;
	color: #ffffff;
}

.cfc-testimonial__text p{
	margin: 0 0 10px 0;
}

.cfc-testimonial__text p:last-child{
	margin-bottom: 0;
}

.cfc-testimonial__byline{
	margin-top: 22px;
	display: flex;
	gap: 10px;
	align-items: baseline;
	font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cfc-testimonial__bullet{
	font-size: 18px;
	line-height: 1;
	opacity: 0.95;
}

.cfc-testimonial__name{
	font-size: 16px;
	line-height: 26px;
	font-weight: 600;
	color: #ffffff;
}

.cfc-testimonial__info{
	font-size: 16px;
	line-height: 26px;
	font-weight: 600;
	color: #ffffff;
	opacity: 0.95;
}

/* Mobile: always 1 visible */
@media (max-width: 900px){
	.cfc-testimonials{
		padding: 56px 0;
	}

	.cfc-carousel__track{
		gap: 48px;
	}

	.cfc-testimonial__avatar{
		margin-bottom: 24px;
	}
}
