.hbl-wrap {
  background: #0f0f10;
  color: #e6e6e6;
  border-radius: 14px;
  padding: 20px;
  font-family: system-ui, sans-serif;
}

.hbl-card {
  background: #18181b;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hbl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.hbl-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

.hbl-post-title a {
  color: white;
  text-decoration: none;
}

.hbl-meta {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 6px;
}

.hbl-excerpt {
  font-size: 14px;
  opacity: 0.85;
}

.hbl-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff2d2d, #b30000);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease;
}

.hbl-btn:hover {
  transform: scale(1.03);
}

.hbl-share {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hbl-share-btn {
  background: #242428;
  border: 1px solid #303036;
  color: #ccc;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hbl-share-btn:hover {
  background: #2f2f35;
}
