

.tech-label {
  font-weight: 600;
  color: #333;
  margin-right: 0.5rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tech-tag {
  background: #e3f2fd;
  color: #1976d2;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #bbdefb;
}
.tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.tech-icon img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.tech-icon img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
}
