/* Board FAQ */
.bbs-faq .list li {
  cursor: pointer;
  background-color: #FFF9F0;
  border-radius: 20px;
  transition: all .3s ease;
}

.bbs-faq .list li:not(:first-child) {
  margin-top: 20px;
}

.bbs-faq .list .question {
  display: flex;
  align-items: start;
  position: relative;
  gap:8px;
  padding: 24px 60px 24px 0px;
  margin: 0px 40px;
}

.bbs-faq .list .question::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  right: 0px;
  transform: translateY(-50%);
  width: 14px;
  height:9px;
  background: url('/asset/img/icon/ico_arr06.png') no-repeat center;
  transition: all 0.3s ease-in-out;
}

.bbs-faq .list .question p {
  line-height:1.4;
  overflow-wrap: anywhere;
}

.bbs-faq .list .answer {
  max-height:0;
  margin: 0px 40px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.bbs-faq .list .answer-wrap {
  padding: 24px 0px;
  border-top: 1px solid #939598;
}

.bbs-faq .list .answer-wrap * {
  line-height:1.8;
}

.bbs-faq .list li.active {
  background-color: #FEE8C6;
}

.bbs-faq .list li.active .question::after {
  transform: translateY(-50%) rotate(-180deg);
}
@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  .bbs-faq .list li:not(:first-child) {
    margin-top: 16px;
  }

  .bbs-faq .list .question {
    gap:6px;
    padding: 18px 40px 18px 0px;
    margin: 0px 30px;
  }
  
  .bbs-faq .list .question::after {
    width: 12px;
    height: 7px;
    background-size: auto 7px;
  }

  .bbs-faq .list .answer {
    margin: 0px 30px;
  }

  .bbs-faq .list .answer-wrap {
    padding: 18px 0px;
  }
}
@media screen and (max-width:768px) {
  .bbs-faq .list li:not(:first-child) {
    margin-top: 8px;
  }
}
@media screen and (max-width:576px) {
  .bbs-faq .list li {
    border-radius: 10px;
  }

  .bbs-faq .list .question {
    gap:4px;
    padding: 12px 30px 12px 0px;
    margin: 0px 20px;
  }

  .bbs-faq .list .question::after {
    height: 6px;
    background-size: auto 6px;
  }

  .bbs-faq .list .answer {
    margin: 0px 20px;
  }

  .bbs-faq .list .answer-wrap {
    padding: 12px 0px;
  }
}
