/* CSS correspondente ao componente React com Tailwind */

.google-reviews-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;    /* mt-8 = 32px = 2rem */
  margin-bottom: 3rem; /* mb-12 = 48px = 3rem */
}

.google-reviews-image {
  width: 190px;
  height: 25px;
  object-fit: cover;
}

.google-reviews-text {
  color: var(--text-escuros-e-bg, #1f2937); /* Assumindo uma cor escura padrão */
  font-weight: 500; /* font-medium */
  margin-left: 0.5rem;
}

/* Versão alternativa caso você não use CSS custom properties */
.google-reviews-text-alt {
  color: #1f2937; /* Cor escura padrão */
  font-weight: 500;
}
