/* ============================================================
   downloads.css — downloads.html only
   Split "how it works" section + studio help card.
   (Download cards/grids live in base.css, shared with the home page.)
   ============================================================ */

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.studio-card {
  align-self: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg) 80%, var(--surface));
  padding: 1.5rem;
}

.studio-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.28rem 0.6rem;
}

.studio-card strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.studio-card p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 1040px) {
  .split-section {
    grid-template-columns: 1fr;
  }
}
