/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 27 2025 | 22:50:43 */
/* Container grid untuk daftar artikel */
.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 30px;
  padding: 40px;
  background-color: #f9f9f9;
}

/* Artikel utama di tengah */
.blog-post-grid .featured-post {
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  border-radius: 8px;
}

/* Artikel biasa */
.blog-post-grid .post-item {
  background-color: #fff;
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Gaya judul */
.blog-post-grid h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

/* Gaya metadata */
.blog-post-grid .meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 8px;
}

/* Gaya kategori */
.blog-post-grid .category {
  font-size: 0.75rem;
  font-weight: bold;
  color: #005f73;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
  .blog-post-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .blog-post-grid .featured-post {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}
