.templates-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.template-item {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.template-item:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 117, 252, 0.6);
}

.template-thumbnail {
  aspect-ratio: 3 / 2;
  background: #1e293b;
  overflow: hidden;
}

.template-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-name {
  padding: 10px;
  font-size: 0.875rem;
  font-weight: 600;
}

.template-category {
  padding: 0 10px 10px;
  font-size: 0.75rem;
  color: #94a3b8;
}