video-animation {
  --section-header-gap: 15px;
  --section-header-space-block: 100px;
  display: block;

  .video-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);
    }

    @media screen and (width < 479px) {
      .video-animation__description {
        font-size: 1.1rem;
      }
    }
  }

  .video-animation__title {
    strong {
      font-weight: inherit;
      color: rgb(var(--color-heading-strong));
    }
  }
}