


.timeline {
  position: relative;
  display: grid;
  
  gap: 40px;
  padding: 0;
  margin: 0;
  max-width: 600px;
  font-size: 0.75rem;
  line-height: 1;
  color: #000;
  font-family: "Noto Sans SC";
  list-style-type: none;
  clip-path: inset(0 0 100% 0);
  animation: expand 5s forwards linear;
}
.timeline .timeline__line {
  position: absolute;
  top: 0;
  left: 48px;
  width: 4px;
  height: 100%;
  background: #c92430;
}
.timeline .timeline__item .info {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  display: -ms-flexbox;
  -moz-grid-template-columns: repeat(3, auto) 1fr;
  align-items: center;
  gap: 3rem;
}
.timeline .timeline__item .info h4 {
  margin: 0;
}
.timeline .timeline__item .info a {
  text-decoration: none;
  color: #3498db;
}
.timeline .timeline__item .info .dot {
  position: relative;
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
}
.timeline .timeline__item .info .dot::before {
  position: absolute;
  content: "";
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
}
.timeline .timeline__item .info .dot::after {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border: 4px solid #fff;
  border-radius: inherit;
}
.timeline .timeline__item .info .time {
  margin-right: 8px;
}
.timeline .timeline__item .content {
  /* margin: 1rem 0 0 3.9rem; */
  line-height: 1.5;
  line-height: 1.5;
  margin-left: 4.3rem;
  
}

@keyframes expand {
  to {
    clip-path: inset(0 0 0 0);
  }
}
