/* Sponsor Carousel Container */
.dobi-sponsor-carousel {
  position: relative;
  padding: 30px 0;
  overflow: hidden;
}

/* Wrapper and Slides */
.swiper-wrapper {
  align-items: flex-start;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Logo Box */
.sponsor-logo {
  width: 250px;
  height: 140px;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.sponsor-logo:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sponsor-logo img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
}

/* Caption */
.sponsor-caption {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

/* Responsive tweaks (optional) */
@media (max-width: 768px) {
  .sponsor-logo {
    width: 140px;
    height: 100px;
  }
  .sponsor-caption {
    font-size: 13px;
  }
}
