/* Hover-Effekt für Bilder */
.vc_single_image-wrapper img {
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vc_single_image-wrapper img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
/* Alle Bilder gleich groß machen */
.vc_single_image-wrapper img {
  width: 100% !important;
  height: 250px !important;
  object-fit: cover;
  display: block;
}
/* Spalten auseinanderziehen und Text auf gleiche Höhe */
.produkt-spalte {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
}

/* Textblöcke auf gleiche Mindesthöhe */
.produkt-spalte .wpb_text_block {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Mehr Abstand zwischen den Spalten */
.produkt-spalte:first-child {
  padding-right: 50px;
}

.produkt-spalte:last-child {
  padding-left: 50px;
}