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

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

/* ================================
CARD BLOG
================================ */
.blog-post {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 300px;
  min-height: 460px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Card */
.blog-post:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

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

/* ================================
JUDUL ARTIKEL
================================ */
.blog-post h2 {
  font-size: 18px;
  color: #1a1a1a;
  margin: 18px 18px 10px;
  font-weight: 700;
  line-height: 1.4;
  min-height: 54px;
}

.blog-post h2 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

/* ================================
DESKRIPSI ARTIKEL
================================ */
.blog-post p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.6;
  flex-grow: 1;
}

/* ================================
FOOTER CARD
================================ */
.blog-post .card-footer {
  margin: 0 18px 18px;
}

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

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

/* ================================
ISI DETAIL ARTIKEL
================================ */
.artikel-isi {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* ================================
BLOG INTRO
================================ */
.blog-intro {
  width: 100%;
  padding: 50px 20px 40px;
  background: #ffffff;
}

.blog-intro .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.blog-intro h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.25;
}

.blog-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 760px;
  margin: 0 auto;
}

.blog-intro strong {
  color: #d60000;
  font-weight: 700;
}

/* ================================
BLOG LIST TITLE
================================ */
.blog-list-title {
  width: 100%;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 45px 0 30px;
  letter-spacing: 0.3px;
}

/* ================================
RESPONSIVE TABLET
================================ */
@media (max-width: 992px) {
  .blog-intro h2 {
    font-size: 24px;
  }
  .blog-intro p {
    font-size: 15px;
  }

  .blog-list-title {
    font-size: 23px;
    margin: 38px 0 26px;
  }
}

/* ================================
RESPONSIVE MOBILE
================================ */
@media (max-width: 768px) {
  .content-section {
    padding: 45px 16px;
  }

  .blog-post {
    width: 100%;
  }

  .blog-intro {
    padding: 38px 16px 30px;
  }

  .blog-intro h2 {
    font-size: 21px;
  }

  .blog-intro p {
    font-size: 14.5px;
  }

  .blog-list-title {
    font-size: 20px;
    margin: 32px 0 22px;
  }
}
