/* Wrapper to isolate the style and avoid messing with the rest of the site */
.kenya-map-wrapper {
  padding: 40px;
  display: flex;
  justify-content: center;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.kenya-map-wrapper .route-map {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap; /* makes it mobile-friendly */
}

.kenya-map-wrapper .point {
  text-align: center;
  position: relative;
  flex: none;
}

.kenya-map-wrapper .circle {
  width: 28px;
  height: 28px;
  background-color: #2a9d8f;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}

.kenya-map-wrapper .label {
  margin-top: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.kenya-map-wrapper .circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 60px;
  height: 4px;
  background-color: #2a9d8f;
  transform: translateY(-50%);
}

.kenya-map-wrapper .point:last-child .circle::after {
  content: none;
}
