curve-animation {
  --section-header-gap: 15px;
  --section-header-space-block: 130px;
  display: block;

  .curve-animation__header {
    margin-block: var(--section-header-space-block);

    &:first-child {
      margin-top: 0;
    }

    &:last-child {
      margin-bottom: 0;
    }

    &>* {
      margin-bottom: 0;
    }

    &>*:first-child {
      margin-top: 0;
    }

    &>*+* {
      margin-top: var(--section-header-gap);
    }
  }

  .curve-animation__title {
    strong {
      font-weight: inherit;
      color: rgb(var(--color-heading-strong));
    }
  }
}