.testimonial-reusable-component {
  position: relative;
}

.testimonial-reusable-component.custom-width {
  width: 100%;
}

@media (width >= 1000px) {
  .testimonial-reusable-component.custom-width {
    width: var(--component-width-desktop, 100%);
  }
}

.testimonial-reusable-component.image-position-mobile-top .testimonial-media {
  order: 1;
}

.testimonial-reusable-component.image-position-mobile-top .testimonial-content-container, .testimonial-reusable-component.image-position-mobile-bottom .testimonial-media {
  order: 2;
}

.testimonial-reusable-component.image-position-mobile-bottom .testimonial-content-container {
  order: 1;
}

.testimonial-reusable-component.text-align-mobile-left .testimonial-content-container {
  text-align: left;
}

.testimonial-reusable-component.text-align-mobile-center .testimonial-content-container {
  text-align: center;
}

@media (width >= 1000px) {
  .testimonial-reusable-component.image-position-desktop-left .testimonial-media {
    order: 1;
  }

  .testimonial-reusable-component.image-position-desktop-left .testimonial-content-container, .testimonial-reusable-component.image-position-desktop-right .testimonial-media {
    order: 2;
  }

  .testimonial-reusable-component.image-position-desktop-right .testimonial-content-container {
    order: 1;
  }

  .testimonial-reusable-component .testimonial-content-container {
    flex: 1;
  }

  .testimonial-reusable-component.text-align-desktop-left .testimonial-content-container {
    text-align: left;
  }

  .testimonial-reusable-component.text-align-desktop-center .testimonial-content-container {
    text-align: center;
  }
}

.testimonial-reusable-component .testimonial-media {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-height: 1200px;
}

@media (width >= 1000px) {
  .testimonial-reusable-component .testimonial-media {
    max-width: clamp(280px, 30vw, 420px);
    max-height: 620px;
  }
}

.testimonial-reusable-component .testimonial-image img {
  object-fit: cover;
  object-position: center;
}

.testimonial-reusable-component .testimonial-content-container {
  padding: 2rem;
}

.testimonial-reusable-component .testimonial-name {
  font-size: var(--font-size-mobile);
  font-weight: var(--skin-font-weight-medium);
  line-height: 2rem;
}

@media (width >= 1000px) {
  .testimonial-reusable-component .testimonial-name {
    font-size: var(--font-size-desktop);
    line-height: 3rem;
  }
}

.testimonial-reusable-component .testimonial-description {
  font-size: var(--font-size-mobile);
  margin-block-start: 1.25rem;
  line-height: 1.5rem;
}

@media (width >= 1000px) {
  .testimonial-reusable-component .testimonial-description {
    font-size: var(--font-size-desktop);
    margin-block-start: 2rem;
    line-height: 1.8125rem;
  }
}

.testimonial-reusable-component .testimonial-body {
  font-size: var(--font-size-mobile);
  line-height: 1.75rem;
  font-weight: var(--skin-font-weight-medium);
  margin-block-start: .75rem;
  font-style: italic;
}

@media (width >= 1000px) {
  .testimonial-reusable-component .testimonial-body {
    font-size: var(--font-size-desktop);
    margin-block-start: 1.5rem;
    line-height: 2.375rem;
  }
}

.testimonial-reusable-component .testimonial-cta {
  margin-block-start: 1.5rem;
}

.testimonial-reusable-component .testimonial-cta.cta-align-left {
  text-align: left;
}

.testimonial-reusable-component .testimonial-cta.cta-align-center {
  text-align: center;
}

.testimonial-reusable-component .testimonial-cta.cta-align-right {
  text-align: right;
}


/*# sourceMappingURL=testimonialReusableComponent.css.map*/