/* Grid styles */
.testimonios-grid-db92c8c7 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
    margin-top: 40px;
}

.testimonio-card-db92c8c7 {
	background: #fff;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	border: 1px solid #eaeaea;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonio-card-db92c8c7:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonio-content-db92c8c7 {
	margin-bottom: 20px;
	font-style: italic;
	color: #555;
	line-height: 1.6;
}

.testimonio-author-db92c8c7 {
	font-weight: 700;
	color: #333;
	border-top: 1px solid #eaeaea;
	padding-top: 15px;
}