/* Timeline container */
.steps-timeline {
  position: relative;
  margin: 0;
  padding: 0;
}

/* Single item */
.steps-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

/* Stop line nicely after last dot */
.steps-item:last-child::before {
  bottom: 20px;            /* icon radius */
}

/* Round bullet with icon */
.steps-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--linear-gradient-bluegrey);
}

.steps-icon-red {
  background: var(--lenear-gradient-darkred);
}

/* Icon size */
.steps-icon i {
  font-size: 1.1rem;
  line-height: 1;
}

.right {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* place indicators under carousel */
#reviewsCarousel .carousel-indicators {
  position: static;
  margin-top: 1rem;
}

/* reset Bootstrap defaults */
#reviewsCarousel .carousel-indicators [data-bs-target] {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: none;
  background: none;
  margin: 0 0.3rem;
  position: relative;
}

/* --- inactive indicator: gradient ring --- */
#reviewsCarousel .carousel-indicators [data-bs-target]::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;

  /* gradient border using border-box trick */
  border: 2px solid transparent;
  background:
    radial-gradient(circle, transparent 55%, transparent 56%) padding-box,
    var(--linear-gradient-bluegrey-opaque) border-box;

  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* --- active indicator: fully filled gradient circle --- */
#reviewsCarousel .carousel-indicators .active::before {
  border: none;
  background: var(--linear-gradient-bluegrey-opaque);
  opacity: 1;
  transform: scale(1.12);
}