.fzg-quote-banner {
  background-color: #1F625F;
  color: #FFFFF1;
  font-family: "Century Gothic", Arial, sans-serif;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 70px;
  
}

.fzg-quote-track {
  display: flex;
  gap: 40px;
  animation: fzg-scroll 25s linear infinite;
}

.fzg-quote-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.fzg-quote-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fzg-quote-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fzg-quote-text {
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
}

@keyframes fzg-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Hälfte der doppelten Liste */
}
