/* sss 랜딩페이지 seciton4 스타일 코드 */

.section_4 {
  background: #f6f7fa;
  padding: 160px 0px;
  gap: 80px;
}

/* 애니메이션 관련 */

#section_4_text_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s, transform 0.2s;
}

#section4_bottom_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s, transform 0.2s;
}

.section4_bottom_container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.section4_team_card_wrapper {
  display: flex;
  gap: 24px;
  animation: scroll_left 30s linear infinite;
  width: max-content;
}

.section4_team_card_wrapper:hover {
  animation-play-state: paused;
}

.section4_team_card {
  width: 400px;
  min-height: 396px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 40px;
}

@keyframes scroll_left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section4_card_icon {
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section4_card_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section4_card_title {
  color: #434d62;
  font-family: Pretendard;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 100% */
  letter-spacing: -0.84px;
}

.section4_card_desc {
  width: 100%;
  color: #434d62;
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.54px;
  word-break: keep-all;
}

@media (max-width: 1800px) {
  .section4_team_card_wrapper {
    gap: 20px;
  }
  .section4_team_card {
    width: 300px;
    padding: 32px 20px 24px 20px;
  }
}

@media (max-width: 1200px) {
  .section4_team_card_wrapper {
    gap: 16px;
  }
  .section4_team_card {
    width: 280px;
    min-width: 240px;
    max-width: 360px;
  }
}

@media (max-width: 800px) {
  .section4_team_card_wrapper {
    gap: 12px;
  }
  .section4_team_card {
    width: 280px;
    min-width: unset;
    max-width: unset;
    padding: 24px 12px 16px 12px;
  }
  .section4_card_icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  .section4_card_icon img {
    width: 48px;
    height: 48px;
  }
  .section4_card_title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .section4_card_desc {
    font-size: 1rem;
  }
}
