/* 랜딩페이지 Current + RX. 섹션 스타일 */

.section_current_rx {
  width: 100%;
  background: var(--bg, linear-gradient(0deg, #E0E6F2 0%, #FFF 100%));
  padding: 160px 0px;
  gap: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section_2_content_container {
  margin-bottom: 0;
}


.section_2_subtitle {
  color: #434D62;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 100% */
  letter-spacing: -0.84px;
}

.section_2_title {
  color: #313743;
  font-family: Pretendard;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -1.08px;
  background: linear-gradient(90deg, #313743 0%, #899dc8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-top: 4px;
}

.section_2_content_container {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 24px;
  box-sizing: border-box;
  padding: 0 40px;
}

.section_2_step_box {
  width: 100%;
  min-height: 456px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  box-sizing: border-box;
  gap: 24px;
}

.section_2_step_img {
  width: 100%;
  height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.section_2_step_text {
  color: #313743;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px; 
  letter-spacing: -0.72px;

}

.section_2_step_img > img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 애니메이션 관련 */
#section_2_text_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s;
}

#section_2_content_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s;
}

/* 모바일/테블릿용 step_box 초기 상태 */
@media (max-width: 1024px) {
  #section_2_step_box_1,
  #section_2_step_box_2,
  #section_2_step_box_3,
  #section_2_step_box_4 {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.3s, transform 0.3s;
  }
}
/* 섹션 2-1 RX. 스타일 (섹션 2 내부로 통합) */

.section_2_1_text_container {
  padding-top: 228px;
}

.section_2_1_subtext {
  text-align: center;
  font-family: Pretendard;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -1.08px;
  background: linear-gradient(90deg, #434d62 0%, #899dc8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section_2_1_img_container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1396px;
  margin: 0 auto;
  padding: 0 40px;
}

.section_2_1_img_container > img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 반응형 이미지 클래스 */
.section2_img_pc {
  display: block;
}
.section2_img_tab {
  display: none;
}
.section2_img_mo {
  display: none;
}

/* 애니메이션 관련 */
#section_2_1_text_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s;
}

#section_2_1_img_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s;
}

/* 모바일 스타일 */

@media (max-width: 767px) {
  .section_current_rx {
    padding: 80px 0px;
    gap: 48px;
  }

  .section_2_subtitle {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.54px;

  }

  .section_2_title {
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: -0.78px;
    margin-top: 4px;
  }
  #section_2_content_container{
    transform: translateY(0px);
    opacity: 1;
  }
  .section_2_content_container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;

  }

  .section_2_step_box {
    width: 100%;
    min-height: auto;
    padding: 0;
    gap: 24px;
  }

  .section_2_step_img {
    width: 100%;
    height: 200px;

  }

  .section_2_step_img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .section_2_step_text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.48px;
    font-weight: 600;
    text-align: center;
  }

  .section_2_1_text_container {
    padding-top: 72px;
    gap: 24px;
  }

  .section_2_1_text_container .section_text {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.54px;
    word-break: keep-all;
  }

  .section_2_1_subtext {
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: -0.78px;
    word-break: keep-all;
    margin-top: 0;
  }

  .section_2_1_img_container {
    padding: 0 24px;
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 0;
  }
  .section_2_1_img_container > img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .section2_img_pc {
    display: none;
  }
  .section2_img_tab {
    display: none;
  }
  .section2_img_mo {
    display: block;
  }
}

/* 테블릿 스타일 */
@media (min-width: 767px) and (max-width: 1024px) {
  .mobile-br {
    display: none;
  }
  .web-br {
    display: none;
  }
  .tab-br {
    display: inline;
  }
  #section_2_content_container{
    transform: translateY(0px);

  }

  .section_2_title{
font-size: 28px;
line-height: 28px; 
letter-spacing: -0.84px;
  }

  .section_2_subtitle{
font-size: 22px;
line-height: 22px; 
letter-spacing: -0.66px;
  }

  .section_current_rx {
    width: 100%;
    padding: 100px 0px;
    gap: 64px;
  }
  .section_2 {
    padding: 100px 0px;
    gap: 64px;
  }

  .section_2_content_container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 40px;
  }

  .section_2_step_box{
    gap: 32px;
    height: 456px;
  }
  .section_2_step_img > img{
    height: 400px;
    object-fit: contain;
  }

  .section_2_step_text {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -0.66px;
  }

  .section_2_1_text_container {
    padding-top: 96px;
  }

  .section_2_1_subtext {
    line-height: 1.4;
    word-break: keep-all;
font-size: 28px;
letter-spacing: -0.84px;
  }

  .section_2_1_img_container {
    padding: 0 40px;
    height: auto;
  }
  .section_2_1_img_container > img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .section2_img_pc {
    display: none;
  }
  .section2_img_tab {
    display: block;
  }
  .section2_img_mo {
    display: none;
  }
}

