/* ═══════════════════════════════════════════════════════════════════════════
   JOIN PAGE — TESTIMONIALS (2-column)
   ═══════════════════════════════════════════════════════════════════════════ */

.join-testimonials {
	padding: var(--ci-section-padding) 0;
	background-color: #253d47;
	border-top: none;
}

.join-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}

/* Cards stretch to match height; space-between pushes quote to bottom
   so empty space is distributed in the gap, not pooled at the bottom */
.join-testimonials__grid .home-testimonials__card {
	justify-content: space-between;
}

/* Remove flex-grow so quote sits at the bottom naturally */
.join-testimonials__grid .home-testimonials__quote {
	flex-grow: 0;
}

/* ── Mobile ── */
@media (max-width: 767px) {
	.join-testimonials {
		padding: var(--ci-section-padding-mobile) 0;
	}

	.join-testimonials__grid {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.join-testimonials__grid .home-testimonials__card {
		height: auto;
	}
}
