.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.post {
  width: calc(25% - 20px);

  padding: 27px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 10px;
  font-family: roboto;
  animation: slideInFromRight 0.5s ease-in-out;
}

.post:hover {
  transform: scale(1.02);
}

.recent-image {
  width: 200px;
  align-items: center;


  /* Menyembunyikan gambar secara default */
}



.post h2 {
  font-size: 24px;
  margin: 10px 0;
}

.post p {
  font-size: 14px;
  color: #666;
}

.post .date {
  font-size: 12px;
  color: #888;
}

/* CSS untuk tampilan mobile */
@media screen and (max-width: 768px) {
  .timeline {
    flex-direction: column;
  }

  .post {
    width: 100%;
  }
}