/** Shopify CDN: Minification failed

Line 18:14 Expected identifier but found whitespace
Line 18:16 Unexpected "{"
Line 18:25 Expected ":"
Line 18:51 Expected ":"
Line 19:17 Expected identifier but found whitespace
Line 19:19 Unexpected "{"
Line 19:28 Expected ":"
Line 19:57 Expected ":"
Line 59:8 Expected identifier but found whitespace
Line 59:10 Unexpected "{"
... and 6 more hidden warnings

**/
.testimonial-compact {
  width: 100%;
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.testimonial-compact__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonial-compact__text {
  flex: 1 1 50%;
  min-width: 280px;
}

.testimonial-compact__quote {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 12px 0;
}

.testimonial-compact__author {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  margin: 0;
}

.testimonial-compact__media {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
}

.testimonial-compact__image-circle {
  width: {{ section.settings.image_size }}px;
  height: {{ section.settings.image_size }}px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-compact__image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-compact__badge {
  position: absolute;
  top: 8px;
  right: -8px;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 6px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 749px) {
  .testimonial-compact__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .testimonial-compact__image-circle {
    width: 220px;
    height: 220px;
  }
}
