.bbr-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  user-select: none;
}
.bbr-carousel__track {
  width: 100%;
  height: 100%;
}
.bbr-carousel__slide {
  width: 100%;
}
.bbr-carousel--fade .bbr-carousel__track {
  position: relative;
}
.bbr-carousel--fade .bbr-carousel__slide {
  display: none;
}
.bbr-carousel--fade .bbr-carousel__slide--active {
  display: block;
  animation: bbr-carousel-fade 0.3s ease;
}
.bbr-carousel--slide .bbr-carousel__track {
  display: flex;
  transition: transform 0.35s ease;
}
.bbr-carousel--slide .bbr-carousel__slide {
  display: block;
  flex: 0 0 100%;
  min-width: 100%;
}
.bbr-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.bbr-carousel__arrow:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.65);
}
.bbr-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.bbr-carousel__arrow--prev {
  left: 0.6rem;
}
.bbr-carousel__arrow--next {
  right: 0.6rem;
}
.bbr-carousel__dots {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}
.bbr-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.bbr-carousel__dot--active {
  background: #fff;
  transform: scale(1.3);
}

@keyframes bbr-carousel-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
