/* About Page Styles */
.tech-stack {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.tech-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-item strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 720px) {
  .tech-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
