.history-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--size-24);
  font-family: var(--font-family-en);
}

.history-item {
  position: relative;
  padding-left: var(--size-56);
  display: flex;
  min-height: var(--size-36);
}

.history-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--color-main-blue);
}

.history-item::after {
  content: "";
  position: absolute;
  left: var(--size-11);
  top: 0;
  width: 1px;
  bottom: -32px;
  background-color: var(--color-main-blue);
}

.history-item:first-child::after {
  top: var(--size-8);
}

.history-item:last-child::after {
  bottom: auto;
}

.history-date {
  flex: 0 0 var(--size-270);
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--color-bg-light-gray1);
}

.history-description {
  flex: 1 1 auto;
  padding-left: var(--size-24);
  border-bottom: 1px solid var(--color-bg-light-gray1);
}

@media (max-width: 768px) {
  .history-item {
    flex-direction: column;
    gap: var(--size-10);
  }
  .history-date {
    flex: unset;
    border: initial;
    width: 100%;
  }
  .history-description {
    padding-left: 0;
    padding-bottom: var(--size-10);
  }
}
