.section {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section__text {
  line-height: var(--line-height-body);

  > * + * {
    margin-block-start: 1.5rem;
  }
}

.section__content {
  > * + * {
    margin-block-start: 2rem;
  }
}

.section__content:not(:first-child) {
  margin-block-start: 2.5rem;
}

.section__content:not(:last-child) {
  margin-block-end: 1.5rem;
}

.section__button:not(:first-child) {
  margin-block-start: 1.5rem;
}
