.testimonials-section {
	width: 100%;
	background: #f5f7fb;
	padding: 120px 0;
}

.testimonials-header {
	max-width: 720px;
	margin: 0 auto 48px auto;
	text-align: center;
}

.testimonials-title {
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-subtitle {
  margin-top: 16px;
  font-size: 1.4em;
  font-weight: 200;
}

.testimonials-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
  margin-bottom: 130px;
}

.testimonial-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	box-shadow: 0 12px 30px rgba(20, 36, 56, 0.08);
}

.testimonial-quote {
	font-size: 1rem;
	line-height: 1.7;
	color: #15263d;
	margin-bottom: 28px;
	font-style: italic;
}

.testimonial-meta {
	margin-top: auto;
	font-size: 0.9rem;
	color: #5b6b7f;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.testimonial-name {
	font-size: 1rem;
	color: #122033;
}

.testimonial-role {
	font-weight: 500;
}

.testimonial-company {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
	color: #7a889a;
}

@media (max-width: 720px) {
	.testimonials-section {
		padding: 56px 0;
	}

	.testimonials-title {
		font-size: 1.6rem;
	}

	.testimonials-subtitle {
		font-size: 0.98rem;
	}

	.testimonial-card {
		padding: 24px;
	}
}
