body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #c8d4a0 0%, #b5c78a 100%);
}

.blog-section {
  text-align: center;
  padding: 60px 20px;
}

.blog-section h2 {
  font-size: 32px;
  margin-bottom: 5px;
  color: #5a6b2f;
}

.underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #7a8f3d 0%, #5a6b2f 100%);
  margin: 10px auto 40px;
}

.blog-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* --- CARD STYLE --- */
.blog-card {
  background: linear-gradient(145deg, #fef9e8 0%, #f5efd0 100%);
  width: 300px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.35s ease;
  cursor: pointer;
  border: 2px solid #dbc77f;
}

/* --- CARD HOVER ANIMATION --- */
.blog-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(90, 107, 47, 0.25);
  border-color: #c9b05f;
}

/* --- Image Style --- */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
  border: 3px solid #dbc77f;
}

/* Image zoom saat hover */
.blog-card:hover img {
  transform: scale(1.08);
  border-color: #c9b05f;
}

.blog-card h3 {
  margin: 15px 0 10px;
  color: #6d7d3a;
  font-weight: bold;
}

.blog-card p {
  color: #7a8855;
  font-size: 14px;
  line-height: 1.6;
}

/* --- Button --- */
.read-btn {
  display: inline-block;
  margin-top: auto;
  padding: 10px 20px;
  background: linear-gradient(135deg, #a8914d 0%, #8a7840 100%);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(122, 136, 85, 0.2);
}

.blog-card {
  display: flex;
  flex-direction: column;
}


/* Button animasi */
.blog-card:hover .read-btn {
  background: linear-gradient(135deg, #8a7840 0%, #6d5f33 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(90, 107, 47, 0.3);
}

.highlight {
  background: linear-gradient(145deg, #fffef5 0%, #f8f3dd 100%);
  box-shadow: 0px 0px 20px rgba(201, 176, 95, 0.35);
  border: 2px solid #c9b05f;
}