/* Blog Section */
.blog-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.blog-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.blog-section p {
  font-size: 16px;
  margin-bottom: 40px;
}

/* Blog Grid */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Blog Card */
.blog-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  min-height: 450px; /* tambahkan tinggi minimum agar semua box sejajar */
}

/* Gambar */
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Konten Utama */
.blog-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 15px;
}

/* Judul */
.blog-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
  min-height: 60px; /* tinggi tetap agar sejajar */
}

.blog-card h3 a {
  text-decoration: none;
  color: #333;
  display: inline-block;
}

.blog-card h3 a:hover {
  color: #007bff;
}

/* Ringkasan Isi Artikel */
.blog-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 1;
  line-height: 1.4;
  min-height: 80px; /* agar isi artikel sejajar */
}

/* Tombol Read More */
.blog-card a.read-more {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
  align-self: flex-start; /* pastikan rata kiri */
}

.blog-card a.read-more:hover {
  text-decoration: underline;
}
