.bravo-testi,
.bravo-testi * { box-sizing: border-box; }

.bravo-testi {
	--gold: #B88A3B;
	--cols: 3;
	--mobile-w: 80%;
	--gap: 28px;
	font-family: 'Inter', sans-serif;
	width: 100%;
	position: relative;
}

.bravo-testi .btesti-head { margin-bottom: 22px; text-align: center; }
.bravo-testi .btesti-head h2 {
	margin: 0;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 26px;
	line-height: 1.1;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #111;
}

.bravo-testi .btesti-track {
	display: flex;
	gap: var(--gap);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 4px 2px 10px;
}
.bravo-testi .btesti-track::-webkit-scrollbar { display: none; }

.bravo-testi .btesti-card {
	flex: 0 0 calc((100% - (var(--gap) * (var(--cols) - 1))) / var(--cols));
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 28px;
	box-shadow: 0 8px 28px rgba(0,0,0,.03);
	min-height: 180px;
	display: flex;
	flex-direction: column;
}

.bravo-testi .btesti-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 12px;
	color: #c79b36;
	font-size: 17px;
	letter-spacing: 1px;
}
.bravo-testi .btesti-stars .is-empty { opacity: .25; }

.bravo-testi .btesti-quote {
	color: #333;
	font-size: 14px;
	line-height: 1.55;
	margin-bottom: 22px;
}

.bravo-testi .btesti-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}
.bravo-testi .btesti-avatar {
	width: 42px; height: 42px; min-width: 42px;
	border-radius: 50%;
	overflow: hidden;
	background: #f1f1f1;
	display: flex; align-items: center; justify-content: center;
	color: #111; font-size: 13px; font-weight: 700;
}
.bravo-testi .btesti-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bravo-testi .btesti-author-info { display: flex; flex-direction: column; gap: 2px; }
.bravo-testi .btesti-author-info strong { color: #111; font-size: 13px; font-weight: 700; }
.bravo-testi .btesti-author-info small { color: #666; font-size: 12px; }

/* ---- CONTROLS: streepjes-bar links, arrows rechts ---- */
.bravo-testi .btesti-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 18px;
}

.bravo-testi .btesti-bars {
	display: flex;
	align-items: center;
	gap: 8px;
}
.bravo-testi .btesti-bar {
	width: 26px;
	height: 3px;
	border: none;
	padding: 0;
	border-radius: 2px;
	background: rgba(0,0,0,.18);
	cursor: pointer;
	transition: width .3s ease, background .3s ease;
}
.bravo-testi .btesti-bar.is-active {
	width: 40px;
	background: var(--gold);
}

.bravo-testi .btesti-arrows {
	display: flex;
	gap: 10px;
}
.bravo-testi .btesti-arrow {
	width: 42px; height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(0,0,0,.15);
	background: #fff;
	color: #111;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.bravo-testi .btesti-arrow:hover {
	background: #14110c;
	border-color: #14110c;
	color: #fff;
}

/* ---------- MOBIEL ---------- */
@media (max-width: 749px) {
	.bravo-testi .btesti-head h2 { font-size: 22px; }
	.bravo-testi .btesti-card {
		flex: 0 0 var(--mobile-w);
		padding: 22px;
	}
	/* streepjes links, arrows rechtsonder ernaast */
	.bravo-testi .btesti-controls {
		margin-top: 16px;
	}
	.bravo-testi .btesti-arrow { width: 38px; height: 38px; }
	.bravo-testi .btesti-bar { width: 22px; }
	.bravo-testi .btesti-bar.is-active { width: 34px; }
}
