/* 与主题 bili-feed 轮播一致，组件包内自包含 */
.bili-feed__carousel {
  position: relative;
  border-radius: var(--radius, 8px);
  overflow: hidden;
  background: #1a1a1a;
  min-height: 0;
  aspect-ratio: auto;
  height: 100%;
}
.bili-feed__slides { position: relative; width: 100%; height: 100%; min-height: 280px; }
.bili-feed__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.bili-feed__slide.is-on {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.bili-feed__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bili-feed__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 48px 16px 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}
.bili-feed__tools {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.bili-feed__dots { display: flex; gap: 6px; align-items: center; }
.bili-feed__dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}
.bili-feed__dot.is-on {
  width: 14px;
  border-radius: 4px;
  background: #fff;
}
.bili-feed__btns { display: flex; gap: 8px; }
.bili-feed__btn {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.bili-feed__btn:hover { background: rgba(255, 255, 255, 0.35); }

@media (max-width: 640px) {
  .bili-feed__slides { min-height: 200px; }
  .bili-feed__cap {
    padding: 40px 12px 56px;
    font-size: 15px;
    line-height: 1.4;
  }
  .bili-feed__tools {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
