/* Kompakte Produkt-Preview auf Live-Stream-Karten (Discovery) */
.lk-live-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f7f8fa;
  border: 1px solid #e8eaee;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
a.lk-live-preview:hover {
  border-color: rgba(255, 121, 0, 0.45);
  background: #fff8f2;
}
.lk-live-preview__img {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: #eef0f3;
  display: block;
}
.lk-live-preview__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1 1 auto;
  line-height: 1.25;
}
.lk-live-preview__type {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ff7900;
}
.lk-live-preview__title {
  font-size: 0.82rem;
  font-weight: 650;
  color: #14161a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lk-live-preview__meta {
  font-size: 0.78rem;
  color: #656a70;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lk-live-preview__meta strong {
  color: #14161a;
  font-weight: 800;
}
.lk-live-preview__extra {
  color: #92979d;
  font-weight: 500;
}

/* Homepage-Streamkarte: Preview im Body */
.lk-stream-card .lk-live-preview {
  margin-top: 8px;
}
.lk-stream-card__body .lk-live-preview {
  pointer-events: none; /* Karte ist schon ein Link */
}

/* /streams.php */
.lk-st-card__body > .lk-live-preview {
  margin-top: 2px;
}

/* Featured Desktop/Mobile Live-Zeile */
.lk-shop-liveapp__body .lk-live-preview,
.lk-hm-liveapp__body .lk-live-preview {
  margin: 6px 0 2px;
}

@media (max-width: 575.98px) {
  .lk-live-preview {
    padding: 7px 9px;
    gap: 8px;
  }
  .lk-live-preview__img {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }
  .lk-live-preview__title {
    font-size: 0.78rem;
  }
  .lk-live-preview__meta {
    font-size: 0.74rem;
  }
}
