/* Blog Card */
.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 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
}

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

.blog-card h3 {
  font-size: 20px;
  padding: 15px 15px 5px;
}

.blog-card p {
  padding: 0 15px 10px;
  font-size: 14px;
  color: #555;
}

.blog-card a {
  display: block;
  padding: 10px 15px 15px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

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

section#artikel .section-title {
  font-size: 32px !important;
  margin: 16px 0 8px !important;
  font-weight: 700 !important;
  text-align: center !important;
  color: #000 !important;
}

section#artikel .section-subtitle {
  font-size: 16px !important;
  margin-bottom: 16px !important;
  color: #555 !important;
  text-align: center !important;
}
