main {
  padding: 64px 0 72px;
}

.hero {
  max-width: 820px;
  margin-bottom: 28px;
}

.hero-copy {
  padding: clamp(28px, 5vw, 48px);
}

h1 {
  max-width: 680px;
  margin: 18px 0 8px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.slug {
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 750;
  line-height: 1.2;
}

.lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 42px 0 16px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-title {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.downloads {
  display: grid;
  gap: 18px;
}

.group {
  padding: 24px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.group:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: var(--surface-2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .3), 0 10px 26px rgba(0, 0, 0, .24);
}

.group-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.group h2 {
  margin-bottom: 6px;
  font-size: 30px;
}

.group p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(154, 213, 202, .14);
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.files {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  transition: border-color .18s ease, background .18s ease;
}

.file:hover {
  border-color: var(--line-strong);
  background: var(--surface-3);
}

.file h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.file p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

@media (max-width: 840px) {
  main {
    padding-top: 56px;
  }

  .files {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .actions,
  .button,
  .file {
    width: 100%;
  }

  .group-head,
  .file {
    align-items: stretch;
    flex-direction: column;
  }
}
