.category {
  margin-top: 22px;
}

.category:first-child {
  margin-top: 0;
}

.category-title {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 12px;

  color: #fffaf3;

  font-size: 1rem;
  font-weight: 700;
}

.category-title i {
  color: var(--accent);
}

.stack {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

.tag {
  display: flex;
  align-items: center;

  gap: 8px;

  border: 1px solid var(--border);
  background: rgba(255,255,255,0.035);
  color: var(--muted);

  border-radius: 999px;

  padding: 8px 12px;

  font-size: 0.86rem;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.tag:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.16);
}

.tag img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}