.bc-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.bc-track {
  display: flex;
  transition: transform 350ms ease;
  will-change: transform;
}

.bc-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.bc-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.bc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 999px;
  line-height: 44px;
  font-size: 22px;
}

.bc-prev { left: 12px; }
.bc-next { right: 12px; }

.bc-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.bc-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.55);
}

.bc-dot.is-active {
  background: rgba(255,255,255,0.95);
}
