  /* ── Hero tags ── */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 8px 0 12px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: #c8c8c8;
  background: #0f1a0f;
  border: 1px solid #2a4a2a;
  border-radius: 4px;
  padding: 3px 10px 3px 6px;
  text-decoration: none;
  transition: background 0.14s, border-color 0.14s, color 0.14s;
  white-space: nowrap;
}

.hero-tag:hover {
  background: #162616;
  border-color: #4caf50;
  color: #e8e8e8;
}