/* Testimonial cards: CSS Grid for alignment and equal height */
.home1-testimonial-section .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 767px) {
    .home1-testimonial-section .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
.home1-testimonial-section .testimonial-grid .testimonial-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.home1-testimonial-section .testimonial-grid .testimonial-card .content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.home1-testimonial-section .testimonial-grid .testimonial-card .content p {
    flex: 1;
    min-height: 0;
}
