@charset "utf-8";

.process-section {
  width: 100%;
  box-sizing: border-box;

  display: flex;
  padding: 0px 96px 0px 96px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.process-section .process-title-container {
  display: flex;
  padding-top: 60px;
}

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

.process-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 */
}

.process-section .process-flow {
  display: flex;
  align-items: center;
  color: var(--ref-neutral-900, #373d44);
  font-family: Pretendard;
  font-size: var(--ref-font-size-6-static, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 38.4px */
}

.process-section .processes {
  width: 100%;
  max-width: 1248px;
  align-items: stretch; /* 여기 변경 */

  display: flex;
  align-content: center;
  justify-content: center;
}

.process-section .process-item {
  min-width: 0;
  flex-grow: 1; /* 공간을 균등 분배해줌 */
  flex-basis: 0; /* 기본 크기를 0으로 설정해서 균등 분배를 명확히 함 */

  display: flex;
  max-width: 312px;
  flex-direction: column;
  align-items: flex-start;
}

.process-section .process-item .process-title-container {
  position: relative;
  display: flex;
  height: 60px;
  padding: 14px 20px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.process-section .process-item .process-title-container img {
  position: absolute;

  width: 40px;
  height: 40px;

  top: 50%; /* 세로 중앙 기준 */
  right: -16px; /* 오른쪽에서 16px 바깥으로 */
  transform: translateY(-50%); /* 정확한 수직 가운데 정렬 */
  z-index: 10; /* ✅ 다른 요소보다 위에 오도록 */
}

.process-section .process-item.first .process-title-container {
  border-radius: 16px 0px 0px 0px;
  background: var(--ref-primary-50, #a2edee);
}

.process-section .process-item.second .process-title-container {
  background: var(--ref-primary-100, #70dcdc);
}

.process-section .process-item.third .process-title-container {
  background: var(--ref-primary-200, #3cd0d0);
}

.process-section .process-item.fourth .process-title-container {
  border-radius: 0px 16px 0px 0px;
  background: var(--ref-primary-300, #00bbba);
}

.process-section .process-item .process-title-container .process-title-text {
  color: var(--sys-bg-alt, #fff);
  text-align: center;

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

.process-section
  .process-item.first
  .process-title-container
  .process-title-text {
  color: var(--ref-primary-300, #00bbba);
}

.process-section .process-item .process-content-container {
  display: flex;
  flex: 1;
  padding: 25px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.process-section .process-item.first .process-content-container {
  border-radius: 0px 0px 0px 16px;
  background: var(--comp-style-neutral-lightest-10, #fafbfc);
}

.process-section .process-item.second .process-content-container {
  background: var(--comp-style-neutral-light-50, #f3f5f7);
}

.process-section .process-item.third .process-content-container {
  background: var(--comp-style-neutral-default-100, #eef0f2);
}

.process-section .process-item.fourth .process-content-container {
  border-radius: 0px 0px 16px 0px;
  background: var(--comp-style-neutral-deep-150, #e1e4e8);
}

.process-section
  .process-item
  .process-content-container
  ul.process-content-single-depth-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.process-section
  .process-item
  .process-content-container
  ul.process-content-single-depth-list
  li.process-content-single-depth-item {
  position: relative;
  padding-left: 1.5em;

  color: var(--sys-text-light-700, #4e5760);
  /* Title/Small */
  font-family: Pretendard;
  font-size: var(--ref-font-size-3-static, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
}

.process-section
  .process-item
  .process-content-container
  ul.process-content-single-depth-list
  li.process-content-single-depth-item
  span {
  color: var(--sys-text-light-700, #4e5760);
  /* Title/XSmall */
  font-family: Pretendard;
  font-size: var(--ref-font-size-2-static, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.process-section
  .process-item
  .process-content-container
  ul.process-content-single-depth-list
  li.process-content-single-depth-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.25em;
  height: 0.25em;
  background-color: #3cd0d0;
  border-radius: 50%;
}

.process-section
  .process-item
  .process-content-container
  ul.process-content-single-depth-list
  li
  ul.process-content-multi-depth-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 20px;
}

.process-section
  .process-item
  .process-content-container
  ul.process-content-single-depth-list
  li
  ul.process-content-multi-depth-list
  li {
  position: relative;
  padding-left: 1.5em;

  color: var(--sys-text-light-700, #4e5760);
  /* Body/Small */
  font-family: Pretendard;
  font-size: var(--ref-font-size-2-static, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}

.process-section
  .process-item
  .process-content-container
  ul.process-content-single-depth-list
  li
  ul.process-content-multi-depth-list
  li::before {
  content: "-";
  position: absolute;
  left: 0; /* ✅ 왼쪽으로 위치 */
  top: 0.1em; /* ✅ 위에서 살짝 내려오게 */
  color: var(--sys-text-light-700, #4e5760);
  font-weight: bold;
}

@media screen and (max-width: 1023px) {
  .process-section {
    width: 100%;
    box-sizing: border-box;

    display: flex;
    padding: 50px 24px 30px 24px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .process-section .title-text {
    color: var(--ref-base-black, #151818);
    text-align: center;
    /* Headline/Medium */
    font-family: Pretendard;
    font-size: var(--ref-font-size-7-fluent, 28px);
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 39.2px */
  }

  .process-section .processes {
    max-width: 600px;
    width: 100%;
    gap: 10px;

    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

  .process-section .processes img {
    width: 34px;
    height: 34px;
  }

  .process-section .process-item {
    max-width: 100%;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .process-section .process-item .process-title-container {
    display: flex;
    padding: 6px 20px;
    height: auto;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .process-section .process-item.first .process-title-container {
    border-radius: 16px 16px 0px 0px;
    background: var(--ref-primary-50, #a2edee);
  }

  .process-section .process-item.second .process-title-container {
    border-radius: 16px 16px 0px 0px;
    background: var(--ref-primary-100, #70dcdc);
  }

  .process-section .process-item.third .process-title-container {
    border-radius: 16px 16px 0px 0px;
    background: var(--ref-primary-200, #3cd0d0);
  }

  .process-section .process-item.fourth .process-title-container {
    border-radius: 16px 16px 0px 0px;
    background: var(--ref-primary-300, #00bbba);
  }

  .process-section .process-item .process-title-container .process-title-text {
    color: var(--sys-bg-alt, #fff);
    text-align: center;
    /* Title/Medium */
    font-family: Pretendard;
    font-size: var(--ref-font-size-4-static, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 28.8px */
  }

  .process-section .process-item .process-content-container {
    display: flex;
    flex: 1;
    padding: 25px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
  }

  .process-section .process-item.first .process-content-container {
    border-radius: 0 0 16px 16px;
    background: var(--comp-style-neutral-lightest-10, #fafbfc);
  }

  .process-section .process-item.second .process-content-container {
    border-radius: 0 0 16px 16px;
    background: var(--comp-style-neutral-light-50, #f3f5f7);
  }

  .process-section .process-item.third .process-content-container {
    border-radius: 0 0 16px 16px;
    background: var(--comp-style-neutral-default-100, #eef0f2);
  }

  .process-section .process-item.fourth .process-content-container {
    border-radius: 0 0 16px 16px;
    background: var(--comp-style-neutral-deep-150, #e1e4e8);
  }

  .process-section
    .process-item
    .process-content-container
    ul.process-content-single-depth-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
  }

  .process-section
    .process-item
    .process-content-container
    ul.process-content-single-depth-list
    li.process-content-single-depth-item {
    position: relative;
    padding-left: 1.5em;

    color: var(--sys-text-light-700, #4e5760);
    /* Body/Small */
    font-family: Pretendard;
    font-size: var(--ref-font-size-2-static, 14px);
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 22.4px */
  }

  .process-section
    .process-item
    .process-content-container
    ul.process-content-single-depth-list
    li.process-content-single-depth-item
    span {
    color: var(--sys-text-light-700, #4e5760);
    /* Body/Small */
    font-family: Pretendard;
    font-size: var(--ref-font-size-2-static, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
  }

  .process-section
    .process-item
    .process-content-container
    ul.process-content-single-depth-list
    li.process-content-single-depth-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.25em;
    height: 0.25em;
    background-color: #3cd0d0;
    border-radius: 50%;
  }

  .process-section
    .process-item
    .process-content-container
    ul.process-content-single-depth-list
    li
    ul.process-content-multi-depth-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .process-section
    .process-item
    .process-content-container
    ul.process-content-single-depth-list
    li
    ul.process-content-multi-depth-list
    li {
    position: relative;
    padding-left: 1.5em;

    color: var(--sys-text-light-700, #4e5760);
    /* Body/XSmall */
    font-family: Pretendard;
    font-size: var(--ref-font-size-1-static, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 19.2px */
  }

  .process-section
    .process-item
    .process-content-container
    ul.process-content-single-depth-list
    li
    ul.process-content-multi-depth-list
    li::before {
    content: "-";
    position: absolute;
    left: 0; /* ✅ 왼쪽으로 위치 */
    top: 0.1em; /* ✅ 위에서 살짝 내려오게 */
    color: var(--sys-text-light-700, #4e5760);
    font-weight: bold;
  }
}
