.testimonial-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;
}
.testimonial-card {
	box-shadow: 0px 10px 35px -2.47px #8E93A81A;
	background: #FFF;
	border-radius: 12px;
	padding: 68px 45px 50px;
	flex: 1;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.testimonial-card .testimonial__img {
	object-fit: contain;
	width: 150px;
	height: 60px;
	margin-bottom: 50px;
}
.testimonial-card .testimonial__content {
	margin: 0;
	font-family: var(--font);
	font-weight: 500;
	font-size: 30px;
	line-height: 130%;
	color: var(--e-global-color-primary);
	height: 195px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonial__footer {
	margin-top: 60px;
}
.testimonial-card .testimonial__footer {
	display: flex;
	gap: 20px;
	align-items: center;
}
.testimonial-card .testimonial__author-img {
	object-fit: cover;
	aspect-ratio: 1;
	width: 80px;
	height: auto;
	border-radius: 50%;
}
.testimonial__author-content {
	font-family: var(--font);
	font-weight: 400;
	font-size: 18px;
	line-height: 160%;
}
.testimonial__author-content h4 {
	margin: 0;
	font-weight: 700;
}