.image-container {
  width: 100%; /* Mengisi lebar kolom (col-lg-4) */
  aspect-ratio: 4 / 3; /* Menjaga rasio 4:3 (800/600 = 4/3) */
  overflow: hidden;
  background-color: #ffffff;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Perubahan di sini */
  object-position: center;
}

.image-container_berita {

  width: 100%; /* Mengisi lebar kolom (col-lg-4) */
  aspect-ratio: 2440 / 1578; /* Menjaga rasio 4:3 (800/600 = 4/3) */
  overflow: hidden;
  background-color: #ffffff;
}

.image-container_berita img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Perubahan di sini */
  object-position: center;
}



.post-pagi-area {
    width: 100%;
}

.prev-post {
    text-align: left;
    max-width: 45%;
}

.next-post {
    text-align: right;
    max-width: 45%;
}