
    
/* --- HOMEPAGE GRID --- */
.blog-posts {
  display: grid;
  gap: 16px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  grid-template-columns: repeat(2, 1fr);
}

/* --- CARD CONTAINER --- */
.post-outer-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* --- CARD UTAMA (PUTIH SILVER) --- */
.post-outer-container .post-outer {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 16px 56px 16px;
  text-align: center;
  box-shadow: none;
  border: 1px solid #e0e4e8;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

/* --- BAGIAN KONTEN (GAMBAR, JUDUL, DESK) --- */
.post-body.entry-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Mengisi ruang kosong agar tombol terdorong ke bawah */
}

/* --- BAGIAN TOMBOL JUMP-LINK (DIPAKSA KE PALING BAWAH) --- */
.post-body.entry-content .jump-link {
  margin-top: auto !important; /* KUNCI: Ini mendorong tombol ke ujung bawah */
  padding-top: 12px;
}

/* --- RATA TENGAH SEMUA ISI --- */
.post-outer-container .post-outer,
.post-outer-container .post-outer * {
  text-align: center;
}

.post-outer-container .post-outer .post-title,
.post-outer-container .post-outer .post-labels,
.post-outer-container .post-outer .post-footer {
  text-align: center !important;
}

/* --- RESPONSIVE BREAKPOINTS --- */

@media (max-width: 480px) {
  .blog-posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 8px;
  }
  .post-outer-container .post-outer {
    padding: 12px;
    max-width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .blog-posts {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .blog-posts {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .blog-posts {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1200px;
  }
}

@media (min-width: 1441px) {
  .blog-posts {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
  }
}

.post-outer-container:last-child .post-outer {
  margin: 0 auto;
}

.post-title {
  margin: 10px 0 5px 0;
}
.post-labels {
  margin-bottom: 10px;
}
 /* AJAIB: Memaksa tombol jumplink sejajar di ujung bawah semua kartu */
.post-outer { display: flex; flex-direction: column; height: 100%; }
.post-body.entry-content { display: flex; flex-direction: column; flex-grow: 1; }
.jump-link { margin-top: auto !important; }   
