/* Grundstruktur */
.item-card {
  display: flex;
  flex-direction: row;  /* Bild links, Text rechts */
  border: 1px solid #ccc;
  margin-bottom: 2rem;
  overflow: visible;
}

/* Bild */
.item-image {
  width: 100px;          /* Mini-Anzeige */
  overflow: visible;
  position: relative;
  margin-right: 1rem;
}

.item-image a {
  display: block;
  text-decoration: none;
}

.item-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: zoom-in;
}

.item-image img:hover {
  opacity: 0.96;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Inhalt */
.item-content {
  flex: 1;
}

.item-header {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.item-description {
  font-style: italic;
  margin-bottom: 0.3rem;
  color: #555;
}

.item-features {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.item-link {
  text-align: left;
}


.item-link a {
  color: #cc5c00;
  text-decoration: none;
  font-weight: bold;
}

/* Hover Effekt für gesamten Block optional */
.item-card:hover {
  background-color: #f9f9f9;
}

/* Responsive für Handy */
@media (max-width: 600px) {
  .item-card {
    flex-direction: column; /* Bild oben, Inhalt unten */
  }

  .item-image {
    width: 100%;           /* Bild volle Breite */
    margin-right: 0;
  }
}
