/**
 * Frontend styles for Expert Testimonial block
 */

.expert-testimonial-block {
	background-color: #f5f5f0;
	padding: 3rem 2rem;
	margin: 2rem 0;
	border-radius: 8px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.expert-testimonial-content {
	max-width: 100%;
}

.expert-testimonial-heading {
	font-size: 2rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1.5rem;
	font-family: 'Playfair Display', serif;
	line-height: 1.2;
}

.expert-testimonial-text {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 2rem;
	font-style: normal;
}

.expert-testimonial-separator {
	width: 100%;
	height: 1px;
	background-color: #ddd;
	margin: 2rem 0;
}

.expert-testimonial-author {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.author-image {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	background-color: #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.author-info {
	flex: 1;
}

.author-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin: 0 0 0.25rem 0;
	line-height: 1.3;
}

.author-title {
	font-size: 0.95rem;
	color: #666;
	margin: 0;
	line-height: 1.4;
}

/* Responsive styles */
@media (max-width: 768px) {
	.expert-testimonial-block {
		padding: 2rem 1.5rem;
		margin: 1.5rem 0;
	}
	
	.expert-testimonial-heading {
		font-size: 1.75rem;
	}
	
	.expert-testimonial-text {
		font-size: 1rem;
	}
	
	.expert-testimonial-author {
		gap: 1rem;
	}
	
	.author-image {
		width: 70px;
		height: 70px;
	}
}

@media (max-width: 480px) {
	.expert-testimonial-block {
		padding: 1.5rem 1rem;
	}
	
	.expert-testimonial-author {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.author-image {
		width: 80px;
		height: 80px;
	}
}
