/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 56:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .testimonial-section {
    padding: 3rem 1rem;
    background-color: #f9f9f9;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .testimonial-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-card img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
  }

  .testimonial-quote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
  }

  .testimonial-name {
    font-weight: 600;
    color: #111;
  }

  .testimonial-location {
    font-size: 0.875rem;
    color: #666;
  }
</style>