/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 91:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .hp-testimonials-section {
    padding: 3rem 1rem;
  }

  .hp-testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  @media screen and (min-width: 768px) {
    .hp-testimonials-wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }

  .hp-testimonial {
    background-color: #f3f3f3;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hp-testimonial.has-image {
    padding: 0;
  }

  .hp-testimonial-image {
    width: 100%;
    height: 100%;
  }

  .hp-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hp-testimonial-content {
    padding: 2rem;
    text-align: center;
  }

  .hp-testimonial.has-image .hp-testimonial-content {
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    bottom: auto;
    max-width: calc(100% - 120px);
    background-color: #f3f3f3;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hp-testimonial blockquote {
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.2;
    border-left:0px;
  }

  .hp-testimonial cite {
    font-size: 1.6rem;
    color: #555;
    display: block;
    margin-top: 0.5rem;
  }
</style>