.ecs-wrapper {
  text-align: left;
  margin-bottom: 40px;
}

.ecs-title {
  margin-bottom: 10px;
}

.ecs-thumbs {
  display: flex;
  gap: 10px;
  margin: 10px 0 25px;
}

.ecs-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ccc;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.ecs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ecs-thumb.active {
  border-color: #000;
  transform: scale(1.05);
}

.ecs-slider {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.ecs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.ecs-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.ecs-slide.active {
  opacity: 1;
  position: relative;
}
