.whatsapp-feed-slider {
  width: 95%;
  overflow: hidden;
  background: transparent;
  padding: 20px 0;
  position: relative;
  border-radius: 24px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.feed-track.whatsapp-track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Feste Größen für alle Bilder - mehrere Selektoren für Sicherheit */
.feed-track.whatsapp-track img,
.whatsapp-feed-slider .feed-track img,
.whatsapp-track img {
  height: 400px;
  width: 270px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 3px solid grey;
  transition: all 0.3s ease;
}

.feed-track.whatsapp-track img:hover,
.whatsapp-feed-slider .feed-track img:hover,
.whatsapp-track img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
  border-color: #25D366;
}

/* WhatsApp-typischer Header */
.whatsapp-feed-slider::before {
  content: '  was unsere Kunden über uns sagen';
  position: relative;
  top: -15px;
  left: 35%;
  transform: translateX(-50%);
  background: transparent;
  color: white;
  padding: 8px 25px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  z-index: 10;
}

/* Grüner WhatsApp-Akzent */
.whatsapp-feed-slider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #075E54, #25D366, #128C7E, #25D366, #075E54);
  z-index: 5;
}


