.comment-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Alinha tudo à esquerda */
    width: 300px;
    /* largura do container do comentário */
    margin: 20px;
    font-family: Arial, sans-serif;
}

.speech-bubble {
    
    position: relative;
    background: white;
    color: grey;
    padding: 20px 25px;
    border-radius: 5px;
    width: 570px;
    max-width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}



.speech-bubble span{
    color: rgb(100, 100, 100);
    font-weight: 700;
    font-style: italic;
}

/* Triângulo do balão de fala apontando para a imagem */
.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    /* coloca abaixo do balão */
    left: 20px;
    /* ajusta a ponta alinhada à esquerda */
    border-width: 15px 15px 0 0;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.avatar {
    margin-top: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0E345F;
}










.comment-container {
  position: relative;
  font-style: italic;
  color: #333;
  font-size: 16px;
  line-height: 1.6;

  width: 370px;
}

.comment-container::before,
.comment-container::after {
  position: absolute;
  font-family: Georgia, serif;
  font-size: 60px;
  color: #ccc;
  font-weight: bold;
  font-style: normal;
  user-select: none;
}

.comment-container::before {
  content: "“";
  top: -30px;
  left: -16px;

  z-index: 9999999;
  
}
