/** Shopify CDN: Minification failed

Line 95:0 Unexpected "<"
Line 97:19 Expected identifier but found whitespace
Line 97:21 Unexpected "{"
Line 97:30 Expected ":"
Line 98:14 Expected identifier but found whitespace
Line 98:16 Unexpected "{"
Line 98:25 Expected ":"
Line 98:65 Expected ":"
Line 99:17 Expected identifier but found whitespace
Line 99:19 Unexpected "{"
... and 6 more hidden warnings

**/


/* CSS from section stylesheet tags */
.blog-featured-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 40px;
}

.blog-featured-left {
  flex: 1.2;
}

.blog-featured-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 460px;
}

.blog-featured-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-article {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.top-article img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.blog-category {
  font-size: 12px;
  text-transform: uppercase;
  color: #c89a93;
  margin-bottom: 4px;
  margin-top: 10px;
}

.blog-title {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 6px 0;
    font-family: 'Fraunces';
}

.blog-link {
  text-decoration: underline;
  font-size: 13px;
  font-family: 'Inter';
}
.section-full {
  max-width: 100%;
  width: 100%;
  padding: 60px 0;
  margin: 0 auto;
}

.section-full img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (min-width: 990px) {
  .section-full {
    padding: 100px 0;
  }
}
<style>
.kheira-testimonials {
  background-color: {{ section.settings.background_color }};
  padding-top: {{ section.settings.padding_top | default: 40 }}px;
  padding-bottom: {{ section.settings.padding_bottom | default: 40 }}px;
}
.kheira-testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
.kheira-testimonials h2 {
  color: {{ section.settings.title_color }};
  font-size: 22px;
  font-family: 'fraunces';
  margin: 0;
}
.kheira-testimonials a.all-reviews-link {
  font-size: 14px;
  text-decoration: underline;
  color: inherit;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}
.testimonial-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}
.testimonial-images {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.testimonial-images img {
  width: 100%;
  object-fit: cover;
  height: auto;
}
.testimonial-images.portrait img {
  aspect-ratio: 3/4;
}
.testimonial-images.landscape img {
  aspect-ratio: 4/3;
}
.testimonial-images.square img {
  aspect-ratio: 1/1;
}
.testimonial-content p {
  margin: 5px 0;
}
.testimonial-content p strong {
  text-transform: uppercase;
  font-weight: normal;
}
.testimonial-content a {
  text-decoration: underline;
  font-style: normal;
  font-family: 'fraunces';
  display: inline-block;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .kheira-testimonials h2 {
    font-size: 18px;
  }
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-left: 16px;
  }
  .testimonial-item {
    min-width: 70%;
    max-width: 70%;
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: 1px solid #eee;
    padding: 12px;
    box-sizing: border-box;
    background: white;
    border-radius: 8px;
  }
  .testimonial-images img {
    max-height: 220px;
    object-fit: cover;
  }
  .testimonial-content {
    font-size: 13px;
  }
  .testimonial-content a {
    font-size: 13px;
  }
}
</style>