.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 0 auto;
  width: fit-content;
  padding-bottom: 14px;
}

.timeline-item {
  display: flex;
}

.timeline-item__date {
  position: relative;
  font-weight: 700;
  width: 90px;
  min-width: 90px;
  padding-right: 16px;
  box-sizing: content-box;
  height: fit-content;
}

.timeline-item__date::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--black);
  top: 6px;
  right: -4px;
}

.timeline-item__event {
  position: relative;
  padding-left: 17px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline-item__event::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% + 25px);
  background-color: var(--black);
  left: -1px;
  top: 6px;
}

.timeline-item:last-child .timeline-item__event::before {
  height: calc(100% + 14px);
}

.timeline-item__content {
  display: flex;
}

@media (min-width: 768px) {
  .timeline-item__event br {
    display: none;
  }
  .timeline-item__date {
    width: 102px;
    min-width: 102px;
    padding-right: 38px;
  }

  .timeline-item__event {
    padding-left: 39px;
    gap: 32px;
  }

  .timeline-item__date::after {
    width: 12px;
    height: 12px;
    top: 11.5px;
    right: -5px;
  }

  .timeline-item__event::before {
    top: 11.5px;
  }

  @media (min-width: 1160px) {
    .tab-cards {
      margin: 105px auto 0;
    }
  }
}
