/* Download page styles. */
.download-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.download-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 6px;
}

.download-card .icon {
  margin: 0 auto;
}

.download-card h3 { margin-top: 4px; }

.download-btn {
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

a.download-btn.primary {
  background: var(--grad);
  background-size: 200% 100%;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 22px -8px var(--glow-1);
  transition: background-position 0.45s ease, box-shadow 0.3s ease, transform 0.15s ease;
}

a.download-btn.primary:hover {
  background-position: 100% 0;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 30px -10px var(--glow-2);
  transform: translateY(-1px);
}

.download-meta {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
}

.download-asset { font-family: var(--font-mono, monospace); }

@media (max-width: 760px) {
  .download-grid { grid-template-columns: 1fr; }
}
