/*--------------------------------------------------------------
Homepage — Named quote / testimonial band
--------------------------------------------------------------*/
.quote-band-v2 {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(rgba(12, 22, 25, 0.30), rgba(12, 22, 25, 0.30)),
		linear-gradient(115deg, #ef950d 0%, #1d7e6f 55%, #002f3a 100%);
}

.quote-band-v2 .container {
	position: relative;
	z-index: 2;
}

.testi-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 44px;
	text-align: left;
}

.testi-inner .fade-anim-box {
	display: block;
}

/* Keep attribution row as flex — .fade-anim-box { display:block } would stack logo/name */
.testi-inner .testi-src.fade-anim-box {
	display: flex;
}

.quote-band-v2 img {
	max-width: none;
}

.testi-photo {
	flex: none;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.85);
	box-shadow: 0 20px 44px -20px rgba(0, 0, 0, 0.6);
}

.testi-body {
	flex: 1;
	min-width: 0;
}

.testi-quote {
	position: relative;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	font-size: clamp(21px, 2.2vw, 30px);
	line-height: 1.18;
	letter-spacing: 0.4px;
	color: #fff;
	margin: 0;
	border: 0;
	padding: 0;
}

.testi-quote::before {
	content: '“';
	font-family: Georgia, 'Times New Roman', serif;
	color: rgba(255, 255, 255, 0.3);
	font-size: 1.6em;
	line-height: 0;
	margin-right: 6px;
	vertical-align: -0.32em;
}

/* Logo | divider | name — horizontal, as mockup */
.testi-src {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	margin-top: 22px;
}

.testi-logo {
	height: 40px;
	width: auto;
	flex: none;
	display: block;
	object-fit: contain;
}

.testi-div {
	width: 1px;
	height: 34px;
	background: rgba(255, 255, 255, 0.35);
	flex: none;
}

.testi-who {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.testi-who b {
	display: block;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.6px;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 3px;
}

.testi-who span {
	font-family: 'Open Sans', sans-serif;
	font-size: 13.5px;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.78);
}

@media only screen and (max-width: 720px) {
	.testi-inner {
		flex-direction: column;
		text-align: center;
		gap: 26px;
	}

	.testi-quote::before {
		display: block;
		margin: 0 0 8px;
	}

	.testi-src {
		justify-content: center;
		flex-wrap: wrap;
	}
}
