/* ==========================================
   Vortrag-Karte Highlight (Startseite)
   ========================================== */

.ivhz26-card-highlight {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;        /* komplette Rundung */
  overflow: hidden;           /* wichtig für Bild */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* optional dezenter Hover */
.ivhz26-card-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Bildbereich */
.ivhz26-card-highlight .ivhz26-card-image {
  height: 220px;              /* Bildhöhe */
  overflow: hidden;
}

/* Bild selbst */
.ivhz26-card-highlight .ivhz26-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* sauberes Zuschneiden */
  object-position: center;
  display: block;
}

/* Textbereich */
.ivhz26-card-highlight .ivhz26-card-content {
  padding: 24px;
}

/* Titel */
.ivhz26-card-highlight h3 {
  margin: 0 0 8px;
  font-weight: 400;
  color: #3f3f3f;
}

/* Meta (Datum etc.) */
.ivhz26-card-highlight .ivhz26-meta {
  font-size: 14px;
  color: #d98324;
  margin-bottom: 12px;
}

/* Text */
.ivhz26-card-highlight p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 14px;
}