/* static/css/inspirational.css */

/* 9. Inspirational / Testimonials
   ---------------------------------------------------------- */
.quote {
  font-style: italic;
  border-left: 4px solid var(--accent-color);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.quote p { margin-bottom: 0.5rem; }

.testimonial {
  background-color: var(--light-gray-bg);
  padding: 1.75rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.testimonial .quote { /* Ensure quote styling is maintained and reset top margin if needed */
  margin-top: 0; /* No top margin if it follows the header */
  font-size: 1rem;
  /* border-left: 4px solid var(--accent-color); */ /* Already defined globally, but can be restated */
  /* padding-left: 1.25rem; */
  margin-bottom: 0; /* No bottom margin for the quote itself if it's the last text part */
}

.testimonial p:last-child { /* Typically the attribution line */
  margin-bottom: 0;
  font-weight: 600;
  color: var(--secondary-text);
  font-style: normal; /* Overriding .quote's italic for attribution */
}

.testimonial__header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial__avatar {
  width: 60px; /* Adjust size as needed */
  height: 60px; /* Adjust size as needed */
  border-radius: 50%; /* Makes it a circle */
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid var(--accent-color); /* Optional: adds a nice border */
}

.testimonial__attribution { /* This was p:last-child before, now more specific */
  font-weight: 600;
  color: var(--secondary-text);
  font-style: normal;
  margin-bottom: 0; /* Reset margin */
}
