@keyframes arrow-shoot {
  0% {
    background-position: center;
    opacity: 1;
  }
  44% {
    background-position: 200% center;
    opacity: 0;
  }
  45% {
    background-position: -200% center;
    opacity: 0;
  }
  100% {
    background-position: center;
    opacity: 1;
  }
}
.timeline {
  overflow: hidden;
}
.timeline__inner {
  position: relative;
}
.timeline__line {
  position: absolute;
  top: 40px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: #C12C2D;
  transform-origin: left center;
  z-index: 1;
}
.timeline__items {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .timeline__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .timeline__items {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.timeline__item {
  text-align: center;
  position: relative;
  padding-top: 20px;
  border-radius: 4px;
}
.timeline__item:nth-child(odd) {
  background: #eeeae5;
  padding: 2rem;
}
.timeline__marker {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: #C5964C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.timeline__number {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-family: var(--wp--preset--font-family--secondary);
}
.timeline__date {
  font-size: var(--wp--preset--font-size--font-28);
  margin: 0 0 18px;
  color: #111417;
}
.timeline__event {
  max-width: 180px;
  margin: 0 auto;
}
.timeline__event p {
  margin: 0;
  font-size: var(--wp--preset--font-size--font-16);
}/*# sourceMappingURL=block-timeline.css.map */