.artist-quote-section {
  background: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.quote-text {
  font-size: 1.7rem;
  color: #444;
  line-height: 1.6;
  max-width: 1030px;
  margin: 0 auto;
}

.quote-author {
  font-size: 1.2rem;
  color: #b29a67;
}

/* Fade-In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}