.video-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	width: 100%;
}

.video-testimonial-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.video-testimonial-media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	overflow: hidden;
}

.video-testimonial-media iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.video-testimonial-content {
	padding: 24px;
}

.video-testimonial-name {
	margin: 0 0 4px;
	font-size: 20px;
	line-height: 1.3;
}

.video-testimonial-role {
	margin: 0 0 16px;
	font-size: 15px;
	opacity: 0.7;
}

.video-testimonial-text {
	font-size: 16px;
	line-height: 1.6;
}

.video-testimonial-text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.video-testimonials-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}
}

@media (max-width: 767px) {
	.video-testimonials-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}