/* Team Slider Styles */
.team-slider-outer {
  position: relative;
  margin-left: auto;
  margin-right: 0;
  max-width: 100vw;
  overflow: visible;
  padding-top: 2rem;
}
.team-slider-nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}
.team-slider-arrow {
  background: var(--accent);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  padding: 0;
  cursor: pointer;
}
.team-slider-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.team-slider-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.team-slider-arrow:hover:not(:disabled) {
  opacity: 0.8;
}
.team-slider-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 2.5rem 0 1rem 0;
  margin-right: calc(-50vw + 50%);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  cursor: default;
}
.team-slider-track::-webkit-scrollbar {
  display: none;
}
.team-slide {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-width: 320px;
  max-width: 320px;
  overflow: visible;
  cursor: default;
}
.team-slide-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.team-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  display: block;
}
.team-linkedin {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: box-shadow 0.2s;
}
.team-linkedin:hover {
  box-shadow: 0 4px 16px rgba(0,119,181,0.15);
}
.team-linkedin-icon svg {
  display: block;
}
.team-slide-info {
  padding: 1.25rem 1.25rem 1.5rem 1.25rem;
  width: 100%;
}
.team-slide-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.team-slide-job {
  color: #6b6b6b;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .team-slide, .team-slide-image-wrap {
    min-width: 240px;
    max-width: 240px;
  }
  .team-slider-track {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .team-slide, .team-slide-image-wrap {
    min-width: 180px;
    max-width: 180px;
  }
  .team-slider-track {
    gap: 0.5rem;
  }
  .team-slide-info {
    padding: 0.75rem 0.75rem 1rem 0.75rem;
  }
} 