section.video-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  align-self: stretch;

  background: var(--grayscale-gray-800, #2e3032);
}

div.video-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 120px;
}

span.video-section__title {
  color: var(--white, #fff);
  font-size: 44px;
  font-family: Pretendard;
  font-style: normal;
  font-weight: 800;
  line-height: 60px;
}

p.video-section__text {
  color: var(--grayscale-gray-300, #dfe3e9);
  font-size: 20px;
  font-family: Pretendard;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

@media screen and (max-width: 1024px) {
  section.video-section {
    justify-content: flex-start;
    align-items: flex-start;
  }

  div.video-section__content {
    gap: 32px;

    padding: 0 24px;
  }

  span.video-section__title {
    color: var(--white, #fff);
    font-size: 28px;
    font-family: Pretendard;
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
  }

  p.video-section__text {
    color: var(--grayscale-gray-300, #dfe3e9);
    font-size: 16px;
    font-family: Pretendard;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }
}
