.company-info-section {
  box-sizing: border-box;

  display: flex;
  width: 100%;
  padding: 120px 96px 60px 96px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 100px;
}

.company-info-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.company-info-section .title-text {
  color: var(--ref-base-black, #151818);
  text-align: center;

  /* Display/Medium */
  font-family: Pretendard;
  font-size: var(--ref-font-size-10-fluent, 45px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 63px */
}

.company-info-section .content-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 760px;
  background: #ebebeb;
  padding: 20px 46px;
}

.company-info-section .content-container .company-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.company-info-section
  .content-container
  .company-info-item
  .company-info-item-text {
  color: #077;
  text-align: center;
  width: 70px;
  /* Title/XLarge */
  font-family: Pretendard;
  font-size: var(--ref-font-size-6-static, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 38.4px */
  margin-right: 60px;
  white-space: nowrap;
}

.company-info-section
  .content-container
  .company-info-item
  .company-info-item-description {
  word-break: break-all;
  flex: 1;
  color: var(--ref-base-black, #151818);

  /* Title/Large */
  font-family: Pretendard;
  font-size: var(--ref-font-size-5-static, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
}

@media screen and (max-width: 1023px) {
  .company-info-section {
    padding: 50px 24px 30px 24px;
  }
  .company-info-section
    .content-container
    .company-info-item
    .company-info-item-text {
    font-size: var(--ref-font-size-6-static, 16px);
  }

  .company-info-section
    .content-container
    .company-info-item
    .company-info-item-description {
    font-size: var(--ref-font-size-5-static, 16px);
  }
}
