.bcs-brand-carousel {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  overflow-x: auto;
}
.bcs-brand-card {
  min-width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #f0f0f0;
  transition: transform 0.3s;
}
.bcs-brand-card img {
  max-height: 80px;
  max-width: 100px;
}
.bcs-brand-card:hover {
  transform: scale(1.05);
}
