/* Container */
.mbs-root {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Track */
.mbs-track {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}
.blog_carousel-header{
    h2{
        text-align: center;
        line-height: 1.5;
        margin: 3.5rem 0 1.5rem;
    }
}

/* Slides — JS will set the width */
.mbs-slide {
  flex: 0 0 auto;
  padding: 10px;
  box-sizing: border-box;
}
.mbs-card {
  display: flex;
  flex-direction: column;
}
/* Image */
.mbs-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

/* Title */
.mbs-title {
  font-size: 1rem;
  margin-top: 8px;
}

/* Buttons */
.mbs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 10;
}

.mbs-prev {
  left: 10px;
}
.mbs-next {
  right: 10px;
}
