/**
 * Testimonials Section Styles
 *
 * @package Aomo_Web
 * @since 1.0.0
 */

.testimonials-section {
	padding: 5rem 0;
	background-color: #f8f9fa;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.testimonial-card {
	background-color: #fff;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.testimonial-content {
	margin-bottom: 1.5rem;
}

.testimonial-quote {
	font-size: 1rem;
	line-height: 1.8;
	color: #333;
	position: relative;
	padding-left: 1.5rem;
}

.testimonial-quote::before {
	content: '"';
	position: absolute;
	left: 0;
	top: -10px;
	font-size: 3rem;
	color: #0073aa;
	opacity: 0.3;
	font-family: Georgia, serif;
}

.testimonial-footer {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #e0e0e0;
}

.testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-author {
	flex: 1;
}

.testimonial-name {
	display: block;
	font-weight: 600;
	color: #333;
	font-style: normal;
	margin-bottom: 0.25rem;
}

.testimonial-company {
	display: block;
	font-size: 0.875rem;
	color: #666;
}

.no-testimonials {
	text-align: center;
	padding: 3rem 0;
	color: #666;
}

/* Responsive */
@media (max-width: 992px) {
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.testimonials-section {
		padding: 3rem 0;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.testimonial-card {
		padding: 1.5rem;
	}
}
