/* 랜딩페이지 섹션 3 스타일 */
.section_3 {
  background: #fff;
  padding: 160px 0;
  gap: 80px;
}
.section_3_subtitle {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px; /* 100% */
  letter-spacing: -1.08px;
  background: linear-gradient(90deg, #313743 0%, #899dc8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 4px;
}

.section_3_box_container {
  display: grid;
  flex-direction: column;
  gap: 24px;
}
.box_container {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

/* 박스 부분 */
.section_3_box {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  border-radius: 12px;
  background: #313743;
  color: #fff;
  max-width: 450px;
  min-width: 450px;
  min-height: 298px;
}
.white_box {
  background: #f6f7fa;
  color: #313743;
}
.section_3_box > img {
  width: 36px;
  height: 36px;
}
.section_3_box > h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px; /* 100% */
  letter-spacing: -0.72px;
}
.section_3_box > p {
  width: 100%;

  color: rgba(240, 242, 247, 0.6);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 1.5;
  margin-top: -2px;
}
.white_box > p {
  color: #656e81;
}
.text_bold {
  color: #fff;

  font-weight: 700;
}
.text_bold_black {
  color: #434d62;
  font-weight: 700;
}
/* 섹션3 애니메이션용 초기 상태 */
#section_3_text_container,
#section_3_box_container_top,
#section_3_box_container_bottom {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s, transform 0.2s;
}

/* 모바일 스타일 */

@media (max-width: 767px) {
  .section_3 {
    padding: 100px 0;
    gap: 48px;
  }
  .section_3_subtitle {
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: -0.78px;
    word-break: keep-all;
    margin-top: 0px;
  }

  .section_3_box_container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .box_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* 박스 부분 */
  .section_3_box {
    min-width: fit-content;
    width: 100%;
    padding: 28px;
    flex-direction: column;
    max-width: fit-content;
    min-height: fit-content;
  }

  .section_3_box > h1 {
    font-size: 22px;
    letter-spacing: -0.66px;
  }

  .section_3_box > p {
    width: 100%;
    font-size: 18px;
    letter-spacing: -0.66px;
    line-height: 1.5;
    margin-top: 0px;
    padding-top: 4px;
  }

  /* 섹션3 애니메이션용 초기 상태 */
  #section_3_text_container {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.2s, transform 0.2s;
  }

  #section_3_box_container_top,
  #section_3_box_container_bottom {
    opacity: 1;
    transform: translateY(0px);
  }
  #section_3_box_1,
  #section_3_box_2,
  #section_3_box_3,
  #section_3_box_4,
  #section_3_box_5,
  #section_3_box_6 {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.2s, transform 0.2s;
  }
}

/* 테블릿 스타일 */
@media (min-width: 768px) and (max-width: 1400px) {
  .mobile-br {
    display: none;
  }
  .web-br {
    display: none;
  }
  .tab-br {
    display: inline;
  }
  .section_3 {
    padding: 100px 0;
    gap: 48px;
  }
  .section_3_subtitle {
    font-size: 36px;
    line-height: 1.5;
    letter-spacing: -1.08px;
    word-break: keep-all;
    margin-top: 0px;
  }

  .section_3_box_container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .box_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* 박스 부분 */
  .section_3_box {
    max-width: 100%;
    min-height: fit-content;
    width: 100%;
    padding: 28px;
    flex-direction: column;
  }

  .section_3_box > h1 {
    font-size: 22px;
    letter-spacing: -0.66px;
  }

  .section_3_box > p {
    width: 100%;
    font-size: 18px;
    letter-spacing: -0.66px;
    line-height: 1.5;
    margin-top: 0px;
    padding-top: 4px;
  }

  /* 섹션3 애니메이션용 초기 상태 */
  #section_3_text_container {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.2s, transform 0.2s;
  }

  #section_3_box_container_top,
  #section_3_box_container_bottom {
    opacity: 1;
    transform: translateY(0px);
  }
  #section_3_box_1,
  #section_3_box_2,
  #section_3_box_3,
  #section_3_box_4,
  #section_3_box_5,
  #section_3_box_6 {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.2s, transform 0.2s;
  }
}

.section_3_box_container,
.box_container {
  box-sizing: border-box;
}

.box_container {
  display: flex;
  align-items: stretch; /* 핵심! */
  gap: 24px;
  /* padding: 0px 40px; */
}

.section_3_box {
  flex: 1 1 0;
  height: auto;
  /* min-height: 298px; */
  overflow: visible;
}
