/* FAQ 아코디언 */
.home-faq-item {
  position: relative;
}

.home-faq-item:hover {
  background: var(--Gray-200, #FDFDFD);
}

.home-faq-answer {
  display: none;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease,
    padding-bottom 0.3s ease;
}

.home-faq-item.active .home-faq-answer {
  display: flex !important;
  max-height: 1000px;
  opacity: 1;
  padding-top: 12px;
  padding-bottom: 0px;
}

.home-faq-arrow {
  transition: transform 0.3s ease;
}

.home-faq-item.active .home-faq-arrow {
  transform: rotate(180deg);
}

/* 모바일 */
@media (max-width: 769px) {
  .calculator-faq-title {
    font-size: 28px !important;
  }

  .calculator-faq-bottom-text1 {
    font-size: 14px !important;
  }

  .calculator-faq-bottom-text2 {
    font-size: 15px !important;
  }

  .calculator-faq-bottom-text3 {
    font-size: 14px !important;
  }

  .calculator-faq-bottom-text4 {
    font-size: 15px !important;
  }
}

/* 노트북 이하 */
@media (max-width: 1099px) {
}

/* 데스크톱 */
@media (min-width: 1100px) {
}
