
.jedi-highlights-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 10px 0 4px 0;
  width: 100%;
}

.jedi-highlights-strip > * {
    flex: 1;
    min-width: 0;
}

.jedi-highlights-strip .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
  position: relative;
}

.jedi-highlights-strip .highlight-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% + 32px); /* half of visual spacing */
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 1px 0 8px rgba(0, 0, 0, 0.12);
}

.jedi-highlights-strip .highlight-item:last-child .icon {
    width: 200px;
}

.jedi-highlights-strip .highlight-item .icon {
   width: 27px;
}

.jedi-highlights-strip .highlight-item .text {
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
	text-wrap: wrap;
  font-weight: bold;
}

.jedi-highlights-strip .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;  /* added */
  white-space: nowrap;
  position: relative;
}

.jedi-highlights-strip {
  gap: 32px;
  width: 100%;
}

@media (max-width: 1258px) {

  .jedi-highlights-strip .highlight-item .icon {
    width: 22px;
    flex: 0 0 22px;
  }

  .jedi-highlights-strip .highlight-item:last-child .icon {
    width: 140px;
    flex: 0 0 180px;
  }

  .jedi-highlights-strip .highlight-item .text {
    font-size: 12px;
    letter-spacing: 0.2px;
  }

  .jedi-highlights-strip .highlight-item:not(:last-child)::after {
    left: calc(100% + 2.5vw);
  }
}

@media (max-width: 1148px) {
  .jedi-highlights-strip {
    gap: 24px;
  }

  .jedi-highlights-strip .highlight-item:not(:last-child)::after {
    left: calc(100% + 1vh);
  }
}