/* HB Latest Posts Styles */

.HB-latest-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.HB-post-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: all 0.3s ease;
}

.HB-post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.HB-post-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.HB-post-title a {
  color: #333;
  text-decoration: none;
}

.HB-post-title a:hover {
  color: #0073aa;
}

.HB-post-excerpt {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
