.bb-slider {
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
  position: relative;
}

/* Wrapper must stretch and match height */
.swiper-wrapper {
  display: flex;
  align-items: stretch;
  height: 100% !important; /* added */
}

/* Each slide should take full height of container */
.swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto; /* changed from 100% to auto for dynamic resizing */
  min-height: 300px; /* optional fallback */
  box-sizing: border-box;
}

/* Card style */
.moo-card {
  background: #1f1f1f;
  color: white;
  padding: 45px;
  border-radius: 15px;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Header */
.moo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.moo-header h2 {
  font-size: 20px;
  margin: 0;
  color: #ff9a30;
}

.moo-id {
  color: #ff9800;
  font-weight: bold;
}

/* Main content */
.moo-content {
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1 1 auto; /* updated */
}

.moo-content blockquote {
  font-size: 18px;
  font-style: italic;
  color: #fafafa;
  flex: 1;
  margin: 5px 1px;
  line-height: normal;
  padding: 5px;
  min-height: 180px;
  overflow-y: auto;
}

/* Image inside slide */
img.moo-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

/* Meta info */
.moo-meta-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

ul.moo-meta {
  list-style: none;
  padding: 0 0 0 5px;
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  flex: 1;
}

.moo-meta li {
  margin: 5px 0;
}

.moo-twit {
  color: #ff9800;
  text-decoration: none;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: white;
}

/* Pagination bullets */
.swiper-pagination {
  bottom: 10px !important;
  text-align: center;
}

.swiper-pagination-bullet {
  background: #ffffff;
}

.swiper-pagination-bullet-active {
  background: #ff9800;
}

/* Fix: Make swiper responsive */
.swiper,
.bb-slider,
.swiper-wrapper,
.swiper-slide,
.moo-card {
  width: 100%;
  box-sizing: border-box;
}
