.testimonial-widget {
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 10px;
  text-align:start;
  display: grid;
  gap: 10px;
  height: 450px;
  background-color: white;

}

.testimonial-widget .testimonial-avatar{
 width: 100%;
 display: flex;
 justify-content: center;
}
.testimonial-widget .testimonial-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial-widget .testimonial-text p {
  color: #333;
}

.testimonial-widget .testimonial-author p {
  margin: 0;
  font-weight: bold;
  color: #222;
}