@media (min-width: 768px) {
  .data-highlights-grid > div {
    position: relative;
  }

  .data-highlights-grid > div:not(:nth-child(3n + 1))::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -12px;
    width: 2px;
    background-color: #fea92f;
  }
}

@media (max-width: 767px) {
  .data-highlights-grid > div {
    border-bottom: 2px solid #fea92f;
    margin-top: 40px;
  }

  .data-highlights-grid > div:last-child {
    border-bottom: none;
  }
}

@media (min-width: 1024px) {
  .data-highlights-grid > div:not(:nth-child(3n + 1))::before {
    left: -20px;
  }
}
