section.collectable-data-section {
  display: flex;
  padding: 188px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  background: #17181a;
}

div.collectable-data-section__container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
}

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

div.collectable-data-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

ul.collectable-data-section__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

li.collectable-data-section__item {
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

img.collectable-data-section__icon {
  width: 90px;
  height: 90px;
}

span.collectable-data-section__text {
  color: var(--white, #fff);
  text-align: center;
  font-size: 32px;
  font-family: Pretendard;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
}

div.collectable-data-section__info {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

span.collectable-data-section__asterisk {
  color: var(--grayscale-gray-600, #5f656a);
  font-size: 18px;
  font-family: Pretendard;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

p.collectable-data-section__info-text {
  color: var(--grayscale-gray-600, #5f656a);
  font-size: 18px;
  font-family: Pretendard;
  line-height: 24px;
}

@media screen and (max-width: 1024px) {
  div.collectable-data-section__container {
    gap: 68px;

    padding: 0 24px;
  }

  span.collectable-data-section__title {
    font-size: 28px;
    line-height: 40px;
  }

  div.collectable-data-section__content {
    align-items: center;
    gap: 0;
  }

  ul.collectable-data-section__list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
  }

  li.collectable-data-section__item {
    padding: 20px 0 24px 0;
    gap: 26px;
  }

  img.collectable-data-section__icon {
    width: 90px;
    height: 90px;
  }

  span.collectable-data-section__text {
    font-size: 24px;
    line-height: 40px;
  }

  span.collectable-data-section__asterisk {
    font-size: 14px;
    line-height: 24px;
  }

  p.collectable-data-section__info-text {
    font-size: 14px;
    line-height: 20px;
  }
}
