/* ============================================================================
   WOW — Element Strip Card (small, production-like layout)
   ========================================================================== */

.wow-element-strip-card {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 0;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  background: var(--wow-white, #fff);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  font-family: var(--wow-font-family, 'Assistant', sans-serif);
  flex-direction: row-reverse;
}

.wow-element-strip-card__body {
  flex: 1;
  padding: 16px 16px 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
}

.wow-element-strip-card__title {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  color: var(--text, #1f1f1f);
}

.wow-element-strip-card__title--two-lines {
  font-size: 20px;
}

.wow-element-strip-card__creator {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted, #5c5c5c);
}

.wow-element-strip-card__text {
  margin: 0 0 12px 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text, #333);
}

.wow-element-strip-card__actions {
  margin-top: -8px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 8px;
}

.wow-element-strip-card__cta {
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background-image: linear-gradient(90deg, #ff8640, #ff3c19);
  color: var(--wow-white, #fff);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: inherit;
}

.wow-element-strip-card__cta:hover {
  opacity: 0.9;
}

.wow-element-strip-card__media {
  position: relative;
  flex: 0 0 230px;
  width: 230px;
  overflow: hidden;
  background: var(--bg-2, #f1f1f1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px 0 0 4px;
}

.wow-element-strip-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 33%);
  pointer-events: none;
}

.wow-element-strip-card__media img,
.wow-element-strip-card__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wow-element-strip-card__media--empty {
  border: 1px dashed rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .wow-element-strip-card {
    flex-direction: column;
    gap: 12px;
  }

  .wow-element-strip-card__media {
    width: 100%;
    flex: none;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
  }
}
