/* ── Testimonials: Karte + Kundenfoto ───────────────────────────────────── */
/* Grid: gleiche Höhe pro Zeile */
.testimonial-section .wp-block-post-template {
	align-items: stretch;
}
.artis-testimonial-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	position: relative;
	overflow: hidden;
	/* Flex: Karte füllt Grid-Zelle, Excerpt wächst → Meta immer unten */
	display: flex;
	flex-direction: column;
	height: 100%;
}
.artis-testimonial-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: #FF9446;
	z-index: 0;
	width: 0;
	height: 0;
	margin: auto;
	border-radius: 10px;
	transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}
.artis-testimonial-card:hover::after {
	width: 100%;
	height: 100%;
}
/* Alle direkten Kinder über dem Orange-Layer */
.artis-testimonial-card > * {
	position: relative;
	z-index: 1;
}
/* Excerpt wächst → schiebt Meta an den Boden */
.artis-testimonial-card .wp-block-post-excerpt {
	flex: 1;
}
.artis-testimonial-text {
	color: #757575;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 16px;
	transition: color 0.3s ease-in;
}
.artis-testimonial-card .wp-block-post-excerpt p {
	color: #757575;
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 16px;
	transition: color 0.3s ease-in;
}
.artis-testimonial-card:hover .artis-testimonial-text,
.artis-testimonial-card:hover .wp-block-post-excerpt p {
	color: #ffffff;
}
/* Meta: z-index 2 + solider Hintergrund → Orange bleibt dahinter, Meta unverändert */
.artis-testimonial-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #FFF0E4;
	border-radius: 8px;
	padding: 8px 12px;
	position: relative;
	z-index: 2;
	flex-shrink: 0;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
}
.artis-testimonial-photo {
	width: 40px;
	height: 40px;
	border-radius: 6px;
	overflow: hidden;
	flex-shrink: 0;
}
.artis-testimonial-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.artis-testimonial-name {
	font-size: 15px;
	font-weight: 700;
	color: #333333;
	margin: 0;
	line-height: 1.2;
}
.artis-testimonial-card .wp-block-post-title {
	font-size: 15px !important;
	font-weight: 700;
	color: #333333;
	margin: 0;
	line-height: 1.2;
}
.artis-testimonial-designation {
	font-size: 13px;
	color: #FF9446;
	margin: 0;
	line-height: 1.2;
}
.artis-testimonial-quote {
	position: absolute;
	bottom: 12px;
	right: 16px;
	width: 36px;
	height: 36px;
	background: #FF9446;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.artis-testimonial-quote svg {
	animation: tada 2s infinite;
}

