section.video-container {
  background-color: #060606;

  color: white;
}

div.video-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

div.video-contents__text {
  display: flex;
  flex-direction: column;
  row-gap: 54px;
}

span.video-contents__text--title {
  font-size: 44px;
  font-family: Pretendard;
  font-weight: 700;
  line-height: 50px;
}

p.video-contents__text--description {
  font-size: 20px;
  font-family: Pretendard;
  line-height: 30px;

  color: #5f656a;
}

div.video-contents__video-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 500px;
  flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
  div.video-contents {
    flex-direction: column;
    justify-content: initial;
    row-gap: 60px;

    padding: 0 20px;
  }

  div.video-contents__text {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }

  span.video-contents__text--title {
    font-size: 28px;
    line-height: 32px;
  }

  p.video-contents__text--description {
    font-size: 16px;
    line-height: 22px;
  }

  div.video-contents__video-container {
    width: 100%;
    height: unset;
    aspect-ratio: 1/1;
  }
}
