.bb-slideshow {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 6px;

  /* Controlled but elegant height */
  height: 260px;

  /* Softer background instead of black bars */
  background: #f4f1ec;
}

.bb-slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
}

.bb-slides img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;

  object-fit: contain;   /* Shows full image */
  object-position: center;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .bb-slideshow {
    height: 180px;
  }

  .bb-slides img {
    height: 100%;
  }
}
