

.stage-tiktok {
  
}
.ssr-tiktok {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  background: var(--c-gray-950);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ssr-tiktok .tiktok-embed {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.tiktok-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.tiktok-author-text {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.tiktok-author-handle {
  font-weight: 600;
  font-size: 1.05rem;
}
.verified-badge {
  display: inline-block;
  margin-left: 4px;
  width: 18px;
  height: 18px;
  background: var(--c-brand);
  color: white;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: bold;
}
.open-on-tiktok {
  color: var(--c-brand);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.open-on-tiktok:hover {
  text-decoration: underline;
}

.tiktok-caption {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--c-text);
}
.caption-link {
  color: var(--c-brand);
  text-decoration: none;
}
.caption-link:hover {
  text-decoration: underline;
}

.tiktok-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.tiktok-hashtag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--c-gray-100);
  color: var(--c-brand);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  text-decoration: none;
}
.tiktok-hashtag:hover {
  background: var(--c-gray-200);
}

.tiktok-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: 0.9rem;
  color: var(--c-text-muted, var(--c-gray-600));
}
.tiktok-stats b {
  color: var(--c-text);
  font-weight: 600;
}

.tiktok-duration {
  color: var(--c-text-muted, var(--c-gray-600));
  font-size: 0.85rem;
  margin: 0;
}

body[data-feed-shell="1"] .detail-tiktok { padding: 0; }
