/* Success Stories logo track - no Swiper */
.successCaseSwiper { position: relative; }
.case-logo-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.case-logo-track::-webkit-scrollbar { display: none; }
.case-logo-item {
  flex: 0 0 auto;
  width: 200px;
  height: 72px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
  border: 2px solid transparent;
  border-radius: 4px;
}
.case-logo-item:hover,
.case-logo-item.active {
  opacity: 1;
  transform: scale(1.05);
  border-color: #0066cc;
}
.case-logo-item .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
