/* 1) Hintergrundbild in der Medien-Zone entfernen */
.vortrags-grid .vc_gitem-zone-a {
  background-image: none !important;
}

/* 2) Klick-Overlay komplett deaktivieren */
.vortrags-grid .vc_gitem-link {
  display: none !important;
}

/* 3) Falls das Bild trotzdem als Link gerendert wird → Link deaktivieren */
.vortrags-grid .vc_gitem-zone-a > a {
  pointer-events: none !important;
  cursor: default !important;
}

/* 4) Doppelte Bilder im Content (unter dem Bild) ausblenden */
.vortrags-grid .vc_gitem-zone-b .vc_gitem-post-data-source-post_thumbnail,
.vortrags-grid .vc_gitem-zone-b .vc_gitem-post-data-source-post_image,
.vortrags-grid .vc_gitem-zone-b .vc_single_image,
.vortrags-grid .vc_gitem-zone-b img.wp-post-image {
  display: none !important;
}

/* 5) Versteckten Langtext initial unsichtbar halten */
.vortrags-grid .hidden-text {
  display: none;
 
}

/* Titel und Auszüge weiß */
.vortrags-grid .vc_gitem-post-title,
.vortrags-grid .vc_gitem-post-excerpt {
  color: #ffffff !important;
}

/* Aufklapptext weiß */
.vortrags-grid .hidden-text,
.vortrags-grid .vc_gitem-post-content {
  color: #ffffff !important;
}

.h4 { color: orange !important; }
.h6 { color: #ffffff !important; }

/* Standard: 4 Spalten */
.vortrags-grid .vc_grid-item {
  width: 25% !important;
}

/* Tablet quer: 3 Spalten */
@media (max-width: 1200px) {
  .vortrags-grid .vc_grid-item {
    width: 33.3333% !important;
  }
}

/* Tablet hoch: 2 Spalten */
@media (max-width: 900px) {
  .vortrags-grid .vc_grid-item {
    width: 50% !important;
  }
}

/* Handy: 1 Spalte */
@media (max-width: 480px) {
  .vortrags-grid .vc_grid-item {
    width: 100% !important;
  }
}