section.docs-container {
  background-color: #2e3032;

  color: white;
}

div.docs-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 100px;
}

span.docs-contents__title {
  text-align: center;
  font-size: 44px;
  font-family: Pretendard;
  font-weight: 800;
  line-height: 60px;
}

div.docs-contents__body {
  display: flex;
  align-items: center;
  column-gap: 64px;
  width: 100%;
}

img.docs-contents__body__image {
  width: 660px;
  height: 382px;

  flex-shrink: 0;
}

div.docs-contents__body__detail-container {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

span.docs-contents__body__title {
  font-size: 32px;
  font-family: Pretendard;
  font-weight: 700;
  line-height: 48px;
}

p.docs-contents__body__description {
  font-size: 20px;
  font-family: Pretendard;
  line-height: 36px;

  color: #c6cacf;
}

button.docs-contents__body__button {
  border: 1px solid #c6cacf;
  border-radius: 4px;
  padding: 12px 50px;
  background-color: white;

  width: fit-content;

  font-size: 16px;
  font-family: Pretendard;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (max-width: 1024px) {
  div.docs-contents {
    row-gap: 68px;

    padding: 0 20px;
  }

  span.docs-contents__title {
    font-size: 28px;
    line-height: 40px;
  }

  div.docs-contents__body {
    flex-direction: column;
    justify-content: flex-start;
    column-gap: 0;
    row-gap: 28px;
  }

  img.docs-contents__body__image {
    width: 100%;
    height: 182px;
  }

  div.docs-contents__body__detail-container {
    row-gap: 20px;
  }

  span.docs-contents__body__title {
    font-size: 24px;
    line-height: 40px;
  }

  p.docs-contents__body__description {
    font-size: 18px;
    line-height: 30px;
  }

  button.docs-contents__body__button {
    padding: 12px 30px;
  }
}
