/** Shopify CDN: Minification failed

Line 22:19 Expected identifier but found whitespace
Line 22:21 Unexpected "{"
Line 22:30 Expected ":"
Line 23:2 Unexpected "{"
Line 23:3 Expected identifier but found "%"
Line 24:29 Expected ")" to end URL token
Line 27:2 Unexpected "{"
Line 27:3 Expected identifier but found "%"
Line 37:19 Expected identifier but found whitespace
Line 37:21 Unexpected "{"
... and 4 more hidden warnings

**/


/* CSS from section stylesheet tags */
.quote-carousel-wrapper {
  width: 100%;
  padding: 70px 20px;
  background-color: {{ section.settings.bg_color }};
  {% if section.settings.bg_image != blank %}
    background-image: url({{ section.settings.bg_image | image_url: width:1600 }});
    background-size: cover;
    background-position: center;
  {% endif %}
}

.quote-carousel {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-box {
  background-color: {{ section.settings.quote_bg }};
  color: {{ section.settings.quote_text }};
  padding: 40px 50px;
  border-radius: 12px;
  margin-bottom: 50px;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  font-size: 2.3rem;
}

.quote-box p { margin: 0; }
.quote-box .author {
  margin-top: 20px;
  font-weight: 600;
  opacity: 0.8;
  font-size: 1.2rem;
}

/* 手机端文案字体 */
@media (max-width: 768px) {
  .quote-box {
    font-size: 1.6rem;
    padding: 30px 20px;
  }
  .quote-box .author {
    font-size: 1rem;
  }
}

/* Carousel */
.carousel-grid-wrapper {
  width: 100%;
  overflow: hidden;
}

.carousel-grid {
  display: flex;
  gap: 10px;
  transition: transform 0.5s linear;
}

.carousel-item {
  flex: 0 0 calc((100% - 40px)/5); /* 5 个 logo */
  max-width: calc((100% - 40px)/5);
  height: 130px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transform: scale(0.8);
  opacity: 0.6;
}

.carousel-item.active {
  transform: scale(1.1);
  opacity: 1;
}

.carousel-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 移动端显示 3 个 logo */
@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 calc((100% - 20px)/3);
    max-width: calc((100% - 20px)/3);
    height: 100px;
  }
}