/* Chaturbate inline cards — match StreamTube .post-item tiles */

.cb-card .cb-live-badge {
  background: #ce1212 !important;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 8px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  text-transform: uppercase;
}

.cb-card .cb-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .25);
  animation: cbPulse 1.4s ease-in-out infinite;
}

@keyframes cbPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

.cb-card .cb-hd {
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 2px;
  margin-left: 4px;
  letter-spacing: .5px;
}

.cb-card .cb-tags {
  color: #aaa;
  margin-top: 2px;
}

.cb-card .cb-tag {
  display: inline-block;
  margin-right: 6px;
  color: #aaa;
  font-size: 12px;
}

.cb-card .post-meta__author .post-meta__text {
  color: #aaa;
}

/* Live iframe overlay on hover */
.cb-card .post-thumbnail { position: relative; }
.cb-card .cb-hover-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 5;
  background: #000;
}
.cb-card:hover .video-length.cb-live-badge { z-index: 6; }
