/* ================================
   Section: Blog / Artikel Website
   ================================ */

/* Container Section */
.content-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f7f7f7 0%, #e8f5e9 100%);
}

/* Grid Layout */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Artikel */
.blog-post {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 300px;
  min-height: 480px;
  position: relative; /* diperlukan untuk full-link */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efek Hover */
.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

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

/* Judul Artikel */
.blog-post h2 {
  font-size: 18px;
  color: #333;
  margin: 20px 20px 10px 20px;
  font-weight: 700;
  line-height: 1.4;
  min-height: 56px;
}

.blog-post h2 a {
  text-decoration: none;
  color: #333;
  position: relative;
  z-index: 2;
}

.blog-post h2 a:hover {
  color: #007bff;
}

/* Deskripsi Singkat */
.blog-post p {
  font-size: 14px;
  color: #555;
  margin: 0 20px 20px 20px;
  line-height: 1.6;
  flex-grow: 1;
  min-height: 72px;
  position: relative;
  z-index: 2;
}

/* Tombol Baca Selengkapnya */
.blog-post .card-footer {
  margin: auto 20px 20px 20px;
  position: relative;
  z-index: 2;
}

.blog-post .card-footer a {
  font-size: 14px;
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
}

.blog-post .card-footer a:hover {
  text-decoration: underline;
}

/* Artikel Isi */
.artikel-isi {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* Full clickable link */
.blog-post a.full-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}
