      .tags-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.tag-label {
  color: #777;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.tag-item {
  color: #1565c0;
  background: #e3f2fd;
  padding: 5px 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.2s;
}

.tag-item:hover {
  background: #bbdefb;
  color: #0d47a1;
}