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

  background: var(--grayscale-gray-900, #212121);
}

div.cost-savings-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;

  width: 100%;
  max-width: 1200px;
}

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

div.cost-savings-section__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}

div.cost-savings-section__item-details {
  display: flex;
  width: 100%;
  height: 256px;
  padding: 32px 56px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

img.cost-savings-section__image {
  display: flex;
  width: 120px;
  height: 88px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

span.cost-savings-section__subtitle {
  color: var(--white, #fff);
  text-align: center;
  font-size: 32px;
  font-family: Pretendard;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}

@media screen and (max-width: 1024px) {
  div.cost-savings-section__content {
    align-items: center;
    gap: 68px;

    padding: 0 24px;

    max-width: unset;
  }

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

  div.cost-savings-section__item {
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
  }

  div.cost-savings-section__item-details {
    height: fit-content;
    padding: 24px 68px 20px 68px;
    gap: 26px;
  }

  img.cost-savings-section__image {
    width: 100px;
    height: 72px;
  }

  span.cost-savings-section__subtitle {
    color: var(--white, #fff);
    text-align: center;
    font-size: 24px;
    font-family: Pretendard;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
  }
}
