/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials {
	position: relative;
	padding: 120px 0;
	background: #f7f5f1;
}

.testimonials .container {
	max-width: 1216px;
	margin: 0 auto;
	padding: 0 48px;
}


/* =========================================================
   HEADER
========================================================= */

.testimonials__header {
	max-width: 820px;
	margin-bottom: 64px;
}

.testimonials__eyebrow {
	display: block;
	margin-bottom: 18px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #c58a20;
}

.testimonials__title {
	margin: 0;
	max-width: 760px;
	font-size: clamp(42px, 4vw, 64px);
	line-height: 1.05;
	letter-spacing: -0.025em;
	color: #0f2e63;
}

.testimonials__title span {
	display: block;
}

.testimonials__description {
	max-width: 700px;
	margin: 24px 0 0;
	font-size: 17px;
	line-height: 1.75;
	color: #66748b;
}


/* =========================================================
   TESTIMONIAL GRID
========================================================= */

.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(15, 46, 99, 0.16);
	border-left: 1px solid rgba(15, 46, 99, 0.16);
}

.testimonial-card {
	position: relative;
	min-height: 390px;
	padding: 42px 40px 38px;
	background: #ffffff;
	border-right: 1px solid rgba(15, 46, 99, 0.16);
	border-bottom: 1px solid rgba(15, 46, 99, 0.16);
	display: flex;
	flex-direction: column;
}

.testimonial-card__quote {
	margin-bottom: 24px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 64px;
	line-height: 0.7;
	color: #c58a20;
}

.testimonial-card blockquote {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
	line-height: 1.55;
	color: #182d4d;
}

.testimonial-card__meta {
	margin-top: auto;
	padding-top: 36px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.testimonial-card__meta strong {
	font-size: 14px;
	font-weight: 700;
	color: #0f2e63;
}

.testimonial-card__meta span {
	font-size: 13px;
	line-height: 1.5;
	color: #748096;
}


/* =========================================================
   NAVIGATION
========================================================= */

.testimonials__navigation {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 30px;
}

.testimonials__prev,
.testimonials__next {
	width: 48px;
	height: 48px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(15, 46, 99, 0.25);
	background: transparent;
	color: #0f2e63;
	cursor: pointer;
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease;
}

.testimonials__prev:hover,
.testimonials__next:hover {
	background: #0f2e63;
	border-color: #0f2e63;
	color: #ffffff;
}

.testimonials__prev svg,
.testimonials__next svg {
	width: 18px;
	height: 18px;
}

.testimonials__counter {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #0f2e63;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.testimonials {
		padding: 96px 0;
	}

	.testimonials .container {
		padding: 0 40px;
	}

	.testimonials__header {
		margin-bottom: 48px;
	}

	.testimonials__title {
		font-size: clamp(40px, 5vw, 54px);
	}

	.testimonials__grid {
		grid-template-columns: 1fr;
	}

	.testimonial-card {
		min-height: 320px;
		padding: 36px;
	}

	.testimonial-card blockquote {
		max-width: 760px;
	}
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.testimonials {
		padding: 76px 0;
	}

	.testimonials .container {
		padding: 0 20px;
	}

	.testimonials__header {
		margin-bottom: 38px;
	}

	.testimonials__eyebrow {
		margin-bottom: 14px;
		font-size: 11px;
		letter-spacing: 0.18em;
	}

	.testimonials__title {
		font-size: clamp(34px, 9vw, 42px);
		line-height: 1.08;
	}

	.testimonials__description {
		margin-top: 18px;
		font-size: 15px;
		line-height: 1.7;
	}

	.testimonials__grid {
		display: block;
	}

	.testimonial-card {
		min-height: 0;
		padding: 32px 26px;
	}

	.testimonial-card:not(:first-child) {
		display: none;
	}

	.testimonial-card__quote {
		margin-bottom: 20px;
		font-size: 54px;
	}

	.testimonial-card blockquote {
		font-size: 18px;
		line-height: 1.6;
	}

	.testimonial-card__meta {
		margin-top: 32px;
		padding-top: 0;
	}

	.testimonials__navigation {
		margin-top: 22px;
	}
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

	.testimonials {
		padding: 64px 0;
	}

	.testimonials .container {
		padding: 0 18px;
	}

	.testimonials__title {
		font-size: 34px;
	}

	.testimonial-card {
		padding: 28px 22px;
	}

	.testimonial-card blockquote {
		font-size: 17px;
	}

	.testimonials__prev,
	.testimonials__next {
		width: 44px;
		height: 44px;
	}
}