/* Everest Custom Elements — testimonials.css
   Static quote grid. No carousel, no JS.
   Quote body #111827 on #f4f6f8 = 16.37:1.
   Figcaption #5c6570 on #f4f6f8 = 5.46:1 (clears 4.5:1). */

.ehf-testimonials {
	background: #ffffff;
	padding: 96px 24px;
}

.ehf-testimonials__inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.ehf-testimonials__heading {
	margin: 0;
	font-family: "Nunito", sans-serif;
	font-size: 38px;
	font-weight: 800;
	line-height: 1.15;
	color: #111827;
	text-align: center;
}

.ehf-testimonials__sub {
	margin: 0;
	font-family: "Nunito Sans", sans-serif;
	font-size: 18px;
	line-height: 1.6;
	color: #5c6570;
	text-align: center;
	max-width: 60ch;
}

.ehf-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	width: 100%;
	margin-top: 16px;
}

.ehf-testimonials__card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 32px;
	background: #f4f6f8;
	border-radius: 16px;
}

.ehf-testimonials__media {
	margin: -32px -32px 0;
}

.ehf-testimonials__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 16px 16px 0 0;
}

.ehf-testimonials__card blockquote {
	position: relative;
	margin: 0;
	padding: 16px 0 0;
}

.ehf-testimonials__card blockquote::before {
	content: "\201C";
	content: "\201C" / "";
	position: absolute;
	top: -8px;
	left: -4px;
	font-family: "Nunito", sans-serif;
	font-size: 64px;
	line-height: 1;
	color: #0b6993;
	opacity: 0.2;
	pointer-events: none;
}

.ehf-testimonials__card blockquote p {
	position: relative;
	margin: 0;
	font-family: "Nunito Sans", sans-serif;
	font-size: 18px;
	line-height: 1.6;
	color: #111827;
}

.ehf-testimonials__card figcaption {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: auto;
	font-family: "Nunito Sans", sans-serif;
	font-size: 14px;
	line-height: 1.45;
	color: #5c6570;
}

.ehf-testimonials__role {
	font-weight: 700;
	color: #111827;
}

.ehf-testimonials__facility {
	color: #5c6570;
}

@media (max-width: 1024px) {
	.ehf-testimonials {
		padding: 64px 24px;
	}

	.ehf-testimonials__heading {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.ehf-testimonials {
		padding: 48px 16px;
	}

	.ehf-testimonials__heading {
		font-size: 28px;
	}

	.ehf-testimonials__grid {
		gap: 24px;
	}
}
