.mobile-long-video-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
}

.mobile-long-video-card__cover {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 168 / 94;
  background: #15181a;
}

.mobile-long-video-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
}

.mobile-long-video-card__shade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .6));
  pointer-events: none;
}

.mobile-long-video-card__badge {
  position: absolute;
  top: 2px;
  left: 2px;
  padding: 0 3px;
  border-radius: 3px;
  background: rgba(247, 68, 78, .85);
  color: #fff;
  font-size: 8px;
  font-style: normal;
  line-height: 12px;
}

.mobile-long-video-card__badge--coin {
  background: rgba(233, 181, 75, .9);
  color: #080808;
}

.mobile-long-video-card__meta {
  position: absolute;
  right: 8px;
  bottom: 5px;
  left: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
}

.mobile-long-video-card__title {
  display: -webkit-box;
  min-width: 0;
  min-height: 36px;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

/* Keep the card surface stable until the decrypted cover is ready to paint. */
.mobile-long-video-card__image[data-image-reveal]:not([data-image-state]) {
  opacity: 0;
}
