/**
 * **********************************************************************
 * Kadence Child Theme — Testimonial "Read more" Toggle
 *
 * Clamps testimonial quote text to 5 lines wherever it's displayed
 * (home page, teaching page) and styles the "Read more" toggle button
 * that appears only when the quote actually overflows.
 *
 * @package  KadenceChild
 * @version  1.0.2
 * @updated  2026-08-19
 * **********************************************************************
 */

/* =============================================================================
   Clamp
   ============================================================================= */

.mah-quote-clamp {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mah-quote-clamp.is-expanded {
	display: block;
	-webkit-line-clamp: unset;
	line-clamp: unset;
	overflow: visible;
}

/* =============================================================================
   Toggle button
   ============================================================================= */

.mah-quote-toggle[hidden] {
	display: none;
}

.mah-quote-toggle {
	display: inline-flex;
	align-items: center;
	gap: .3em;
	align-self: flex-start;
	background: none;
	border: none;
	padding: 0;
	margin: 0 0 1.25rem;
	font-size: var(--mah-font-sm);
	font-weight: 700;
	font-style: normal;
	color: var(--mah-green);
	cursor: pointer;
}

.mah-quote-toggle:hover,
.mah-quote-toggle:focus-visible {
	text-decoration: underline;
}

.mah-quote-toggle__arrow {
	transition: transform .15s ease;
}

.mah-quote-toggle.is-expanded .mah-quote-toggle__arrow {
	transform: rotate(90deg);
}
