.quotes-wall {
  overflow: hidden;
  padding: 2rem 0;
}

.quotes-row {
  display: flex;
  gap: 1.5rem;
  animation: scroll-left 30s linear infinite;
}

.quotes-row-reverse {
  animation: scroll-right 35s linear infinite;
  margin-top: 1.5rem;
}

.quotes-row:hover {
  animation-play-state: paused;
}

.quote-card {
  flex-shrink: 0;
  min-width: 280px;
  max-width: 350px;
  background: oklch(0.12 0.01 260);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border-left: 3px solid oklch(0.82 0.14 85);
}

.quote-text {
  font-style: italic;
  color: oklch(0.8 0 0);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
}

.quote-text::before {
  content: '\201C';
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.25em;
  margin-right: 0.15em;
  opacity: 0.4;
}

.quote-author {
  color: oklch(0.6 0 0);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.quote-author::before {
  content: '\2014\00a0';
}

.quotes-wall-loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted, oklch(0.6 0 0));
  font-size: 0.9rem;
}

.quotes-wall-empty {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted, oklch(0.6 0 0));
  font-size: 0.9rem;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .quotes-row,
  .quotes-row-reverse {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .quote-card {
    min-width: 240px;
    max-width: 300px;
  }
}
