.img-artikel {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.img-galeri {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.img-aktivitas {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.img-aktivitas-detail {
  height: 330px;
  width: 100%;
  object-fit: cover;
}

img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.timeline {
  position: relative;
  margin: 50px 0;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background: #ddd;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 20px;
  position: relative;
  width: 50%;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: #0d6efd;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.right::before {
  left: -8px;
}

.timeline-content {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}

/* MOBILE */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 10px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 30px;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item::before {
    left: 0;
  }
}
