/**
 * Testimonials Module
 *
 * Styles for template-part/modules/testimonials_module.php
**/

.testimonials-module__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonials-module__item {
  display: flex;
  flex-direction: column;
}

.testimonials-module__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.875rem;
}

.testimonials-module__star {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonials-module__quote {
  flex: 1;
  margin: 0 0 1.5rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, .9);
}

.testimonials-module__attribution {
  display: flex;
  flex-direction: column;
  font-style: normal;
}

.testimonials-module__name {
  font-weight: 600;
}

.testimonials-module__role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .testimonials-module__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
