/** Shopify CDN: Minification failed

Line 17:10 Expected identifier but found whitespace
Line 17:12 Unexpected "{"
Line 17:21 Expected ":"
Line 18:15 Expected identifier but found whitespace
Line 18:17 Unexpected "{"
Line 18:26 Expected ":"
Line 19:12 Expected identifier but found whitespace
Line 19:14 Unexpected "{"
Line 19:23 Expected ":"
Line 20:12 Expected identifier but found whitespace
... and 10 more hidden warnings

**/
.section-scrolling-reviews {
  --sr-bg: {{ section.settings.bg_color }};
  --sr-card-bg: {{ section.settings.card_bg }};
  --sr-text: {{ section.settings.text_color }};
  --sr-star: {{ section.settings.star_color }};
  --sr-pt: {{ section.settings.padding_top }}px;
  --sr-pb: {{ section.settings.padding_bottom }}px;
}

.scrolling-reviews {
  background: var(--sr-bg);
  padding: var(--sr-pt) 0 var(--sr-pb);
  overflow: hidden;
}

.scrolling-reviews__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}

.scrolling-reviews__heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--sr-text);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.scrolling-reviews__subheading {
  font-size: 1rem;
  color: var(--sr-text);
  opacity: 0.7;
  margin: 0;
}

.scrolling-reviews__track-wrapper {
  overflow: hidden;
  width: 100%;
}

.scrolling-reviews__track {
  display: flex;
  gap: 0;
  will-change: transform;
}

.scrolling-reviews__card {
  flex: 0 0 auto;
  width: 340px;
  background: var(--sr-card-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  margin-right: 1.25rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.scrolling-reviews__image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.scrolling-reviews__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scrolling-reviews__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.scrolling-reviews__stars {
  display: flex;
  gap: 2px;
  color: var(--sr-star);
}

.scrolling-reviews__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--sr-text);
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
}

.scrolling-reviews__reviewer {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sr-text);
  margin: auto 0 0;
}

.scrolling-reviews__reviewer-title {
  font-weight: 400;
  opacity: 0.6;
  display: block;
  margin-top: 0.15rem;
}

@media (max-width: 749px) {
  .scrolling-reviews__card {
    width: 280px;
    padding: 1.25rem;
  }
  .scrolling-reviews__heading {
    font-size: 1.4rem;
  }
}
