/* ═══════════════════════════════════════════════════════════════════════════
   MAESTRO PAGE — SINGLE TESTIMONIAL
   ═══════════════════════════════════════════════════════════════════════════ */

.maestro-testimonial {
	padding: var(--ci-section-padding) 0;
	background-color: #751a3b;
	border-top: 0.3rem solid #ffffff;
}

.maestro-testimonial__card {
	max-width: 720px;
	margin: 0 auto !important;
	border-radius: 24px;
	overflow: hidden;
	position: relative;

	/* Same grey frosted glass as home page */
	background: rgba(180, 180, 180, 0.22);
	backdrop-filter: blur(24px) saturate(80%) brightness(0.95);
	-webkit-backdrop-filter: blur(24px) saturate(80%) brightness(0.95);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.30),
		inset 0 1px 0 rgba(255, 255, 255, 0.40);
}

.maestro-testimonial__card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.08) 0%,
		rgba(255, 255, 255, 0.00) 50%
	);
	pointer-events: none;
	z-index: 0;
}

.maestro-testimonial__card > * {
	position: relative;
	z-index: 1;
}

/* Text colours on maroon — same as home */
.maestro-testimonial .home-testimonials__name   { color: #ffffff; }
.maestro-testimonial .home-testimonials__school  { color: rgba(255, 255, 255, 0.60); }
.maestro-testimonial .home-testimonials__quote   {
	color: rgba(255, 255, 255, 0.90);
	border-top-color: rgba(255, 255, 255, 0.14);
}
.maestro-testimonial .home-testimonials__logo {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.35);
}
.maestro-testimonial .home-testimonials__cta {
	color: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.40) !important;
}
.maestro-testimonial .home-testimonials__cta:hover {
	background: rgba(255, 255, 255, 0.14) !important;
	border-color: rgba(255, 255, 255, 0.65) !important;
	color: #ffffff !important;
}

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