/**
 * Testimonial Block Styles
 */

.testimonial-block {
	padding: 2em;
	margin: 2em 0;
	background: #f5f5f5;
}

.testimonial-content {
	max-width: 800px;
	margin: 0 auto;
}

.testimonial-quote {
	font-family: 'Lora', serif;
	font-size: 1.25em;
	font-style: italic;
	line-height: 1.6;
	margin: 0 0 1.5em 0;
	padding: 0;
	border: none;
	position: relative;
}

.testimonial-quote::before {
	content: '"';
	font-size: 3em;
	line-height: 0;
	position: absolute;
	left: -0.5em;
	top: 0.5em;
	color: #000;
	opacity: 0.2;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1em;
}

.testimonial-author-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.testimonial-author-info {
	flex: 1;
}

.testimonial-author-name {
	font-weight: 700;
	margin: 0 0 0.25em 0;
	font-size: 1.1em;
}

.testimonial-author-title {
	margin: 0;
	font-size: 0.9em;
	color: #666;
}

/* Alignment variations */
.testimonial-block.alignment-left .testimonial-content {
	margin-left: 0;
	text-align: left;
}

.testimonial-block.alignment-center .testimonial-content {
	text-align: center;
}

.testimonial-block.alignment-center .testimonial-author {
	justify-content: center;
}

.testimonial-block.alignment-right .testimonial-content {
	margin-right: 0;
	text-align: right;
}

.testimonial-block.alignment-right .testimonial-author {
	justify-content: flex-end;
	flex-direction: row-reverse;
}

/* Editor specific styles */
.editor-styles-wrapper .testimonial-block {
	border: 1px dashed #ddd;
}

/* Responsive */
@media (max-width: 768px) {
	.testimonial-block {
		padding: 1.5em;
	}
	
	.testimonial-quote {
		font-size: 1.1em;
	}
	
	.testimonial-author {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.testimonial-block.alignment-center .testimonial-author {
		align-items: center;
	}
	
	.testimonial-block.alignment-right .testimonial-author {
		align-items: flex-end;
	}
}

