/**
 * Testimonials — clearance for cards with no avatar.
 *
 * The quote glyph is absolutely positioned inside the card (right: 30px;
 * top: 30px; width: 36px), so it sits outside the flex flow and nothing
 * reserves space for it. In the demo content every card carried a 48px avatar
 * as the first child of .content-wrp, and that avatar was what pushed the
 * review text down clear of the glyph.
 *
 * The Mueen reviews have no avatars, so the first line of the quote ran
 * straight under the glyph. This gives that clearance back — but only to cards
 * that actually lack an image, so adding a client photo later restores the
 * original spacing on its own.
 *
 * Values put the text at ~78px from the card top on every breakpoint
 * (the glyph ends at 66px; card padding shrinks from 30px to 25px to 18px).
 */

.jkd-testimonials .testimonial-item .content-wrp:not(:has(img)) {
	padding-top: 48px;
}

@media (max-width: 768px) {

	.jkd-testimonials .testimonial-item .content-wrp:not(:has(img)) {
		padding-top: 53px;
	}
}

@media (max-width: 576px) {

	.jkd-testimonials .testimonial-item .content-wrp:not(:has(img)) {
		padding-top: 60px;
	}
}
