.event:not(:last-child) {
  margin-bottom: 60px;
}

.event-col-media {
  position: relative;
  display: flex;
  flex-direction: column;
  width: auto;
}

.event-ratio {
  position: relative;
  width: 130px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 2px solid #f5f5f5;
  border-radius: 50%;
}

.event-ratio::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.event-img {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  object-fit: cover;
  object-position: center;
}

.event-date {
  padding: 10px 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid #f9ab2e;
}

.event-year {
  margin-bottom: 0;
  font-size: 22px;
  text-align: center;
}

.event-day-month {
  text-align: center;
}

.event-lines {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
}

.event:last-child .event-lines {
  display: none;
}

.event-lines::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 60px);
  background-color: #f9ab2e;
}

.event-title {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .event-row-root {
    flex-direction: row-reverse;
  }

  .event-col-media {
    align-items: center;
    width: 25%;
  }

  .event-date {
    margin-bottom: 0;
  }

  .event-lines {
    display: block;
  }

  .event-col-content {
    width: 75%;
  }
}

@media (min-width: 992px) {
  .event:not(:last-child) {
    margin-bottom: 120px;
  }

  .event-row-root {
    justify-content: flex-end;
    flex-direction: row;
  }

  .event:nth-child(odd) .event-row-root {
    flex-direction: row-reverse;
  }

  .event-col-media {
    width: 33.33333333%;
  }

  .event-ratio {
    width: 170px;
  }

  .event-img {
    top: 40px;
    left: 40px;
    width: calc(100% - 80px);
    height: calc(100% - 80px);
  }

  .event-lines::before {
    height: calc(100% + 120px);
  }

  .event-col-content {
    width: 33.33333333%;
  }
}

@media (min-width: 1200px) {
}
