<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 35:2 Unexpected "{"
Line 35:3 Expected identifier but found "%"
Line 35:31 Unexpected "{"
Line 35:32 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.carousel {
  container-type: inline-size;
  container-name: carousel;
  display: flex;
  flex-direction: column;
}

.slider {
  flex-grow: 1;
  display: grid;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  overflow: scroll;
  scroll-snap-type: both mandatory;
  scroll-padding: 1rem;
  scroll-behavior: smooth;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.slider__actions {
  display: none;
  {% comment %} display: flex; {% endcomment %}
  justify-content: space-between;
  margin-inline: 1rem;
}

.slider {
  grid-template-columns: repeat(var(--count), 85%);
}

@container carousel (min-width: 600px) {
  .slider {
    grid-template-columns: repeat(var(--count), 45%);
  }

  .carousel:not(:has(.slider .slider__item:nth-child(3))) .slider__actions {
    display: none;
  }
}

@container carousel (min-width: 750px) {
  .slider {
    grid-template-columns: repeat(var(--count), 33.3333%);
  }

  .carousel:not(:has(.slider .slider__item:nth-child(5))) .slider__actions {
    display: none;
  }
}

.slider__item {
  padding: 1rem;
  text-align: center;
}

.slider__item figure {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.slider__item figure img {
  border-radius: 100%;

  max-width: 150px;
  height: auto;
  border: 1px solid;
}

.slider__item h3 {
  margin-bottom: 0;
}</pre></body></html>