.lds-team-outer {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  margin: 30px 0 !important;
  width: 100%;
}

.lds-team-carousel {
  display: flex;
  gap: var(--gap, 16px);
  transition: transform 0.5s ease-in-out;
  width: max-content;
  min-width: 100%;
  padding: 0 !important;
  margin: 0 !important;
}

.lds-team-item {
  flex: 0 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px 10px;
  max-width: 220px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.lds-team-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.lds-team-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
  display: block;
}

.lds-team-item h4 {
  margin: 8px 0 4px;
  font-size: 18px;
  color: #222;
  font-weight: 600;
}

.lds-team-item p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.lds-team-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #444;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s;
}

.lds-team-arrow:hover {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

.lds-prev { left: 10px; }
.lds-next { right: 10px; }

@media (max-width: 767px) {
  .lds-team-outer {
    margin: 20px 0;
  }

  .lds-team-carousel {
    gap: var(--gap, 12px);
  }

  .lds-team-item {
    max-width: 90vw;
    padding: 20px 15px;
  }

  .lds-prev, .lds-next {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}