main {
  padding-top: var(--space-8);
  padding-bottom: var(--space-12);
}

.terms-hero {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.terms-hero__intro {
  max-width: 44rem;
}

.terms-hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.terms-section {
  margin-top: var(--space-6);
}

.terms-list {
  list-style: disc;
  padding-left: var(--space-6);
  color: var(--color-text-muted);
}

.terms-list li {
  margin-bottom: var(--space-2);
}

.terms-anchor {
  text-decoration: underline;
}

.terms-cta-buttons {
  width: 100%;
}

@media (min-width: 768px) {
  .terms-hero {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .terms-hero__cta {
    align-items: flex-end;
    max-width: 18rem;
  }

  .terms-cta-buttons {
    width: auto;
    min-width: 14rem;
  }
}
