/** Shopify CDN: Minification failed

Line 20:18 Unexpected "{"
Line 20:27 Expected ":"
Line 57:18 Unexpected "{"
Line 57:27 Expected ":"
Line 61:18 Unexpected "{"
Line 61:27 Expected ":"
Line 65:18 Unexpected "{"
Line 65:27 Expected ":"
Line 178:20 Unexpected "{"
Line 178:29 Expected ":"
... and 5 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* ========== SECTION WRAPPER ========== */
#shopify-section-{{ section.id }} .testimonial-section-bg {
  background-color: var(--testimonial-section-bg);
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.testimonial-tile__content {
  position: relative;
  background-color: var(--tile-bg);
  color: var(--tile-text-color);
  padding: var(--tile-padding);

  display: grid;
  grid-template-rows: auto 1fr auto; /* 🔥 */
}


/* ========== CONTAINER ========== */
.testimonial-container {
  max-width: 1350px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ========== SECTION HEADER ========== */
.testimonial-section-header {
  text-align: center;
  margin-bottom: var(--section-header-bottom-spacing);
}

.testimonial-section-header__title {
  font-weight: 600;
  line-height: 1.2;
}

/* Heading size variants */
#shopify-section-{{ section.id }} .testimonial-section-header__title[data-size="small"] {
  font-size: 24px;
}

#shopify-section-{{ section.id }} .testimonial-section-header__title[data-size="medium"] {
  font-size: 32px;
}

#shopify-section-{{ section.id }} .testimonial-section-header__title[data-size="large"] {
  font-size: 40px;
}


.testimonial-section-header__separator {
  display: flex;
  justify-content: center; /* 🔥 centers on desktop */
}

.testimonial-section-header__separator img {
  width: 100%;
  max-width: var(--separator-width);
  height: auto;
  display: block;
}


/* ========== TILE LIST ========== */
.testimonial-tiles {
  display: flex;
  flex-direction: column;
  gap: var(--testimonial-tile-gap);
}

/* ========== TESTIMONIAL TILE ========== */
.testimonial-tile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  border-width: 2px;
  border-color: #805026;
  border-style: solid;
}

.testimonial-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Quotes */
.testimonial-quotes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}


.testimonial-quote-start,
.testimonial-quote-end {
  position: absolute; /* 🔥 MISSING */
  font-size: 50px;
  opacity: 0.18;
  font-family: serif;
  pointer-events: none;
  padding: 5px;
}

.testimonial-quote-start {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 40px;
  opacity: 0.18;
}

.testimonial-quote-end {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 40px;
  opacity: 0.18;
}


.testimonial-text-wrap {
  position: relative;
  z-index: 2;
  margin-top: 40px;
margin-bottom: 40px;

}




/* Text */
.testimonial-title,
.testimonial-text {
  position: relative;
  z-index: 2;
}

.testimonial-title {
  font-size: var(--testimonial-title-size);
  margin-bottom: var(--testimonial-title-spacing);
}

.testimonial-text {
  font-size: var(--testimonial-text-size);
  line-height: 1.7;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .testimonial-tile {
    grid-template-columns: 1fr;
  }

  #shopify-section-{{ section.id }} .testimonial-section-header__title[data-size="small"] {
    font-size: 20px;
  }

  #shopify-section-{{ section.id }} .testimonial-section-header__title[data-size="medium"] {
    font-size: 26px;
  }

  #shopify-section-{{ section.id }} .testimonial-section-header__title[data-size="large"] {
    font-size: 32px;
  }
}

}