@charset "utf-8";

.title h2 {
  font-family: 'paperlogy-M', sans-serif;
}
.sec-1{
  padding-bottom: 4rem;
}

.sec-1 .mid {
  background: url(../img/faq/faq-bg.jpg) center no-repeat;
  background-size: cover;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 50px;
  border-radius: 20px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.sec-1 .mid>.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sec-1 .mid>.text h3 {
  font-size: 36px;
  font-family: 'paperlogy-B';
}

.sec-1 .mid>.text p {
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
}

.sec-1 .mid .bot {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sec-1 .mid .bot a {
  width: 100%;
}

.sec-1 .mid .bot .text {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.sec-1 .mid .bot .text .line {
  width: 1px;
  height: 15px;
  background: #fff;
}

.faq_wrap {
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  display: flex;
  flex-direction: column;
}

.faq_item {
  border: 1px solid transparent;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.faq_question {
  font-family: 'paperlogy-M';
}

.faq_question .label,
.faq_answer .label {
  flex: 0 0 24px;
  /* Q./A. 폭 고정 */
  color: #222;
}

.faq_question .text,
.faq_answer .text {
  height: 100%;
  display: flex;
  align-items: center;
  flex: 1;
  line-height: 1.6;
}

.faq_question {
  width: 100%;
  text-align: left;
  padding: 1.8rem 2rem;
  font-size: 1.8rem;
  font-family: 'paperlogy-SB';
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}


.faq_item:hover {
  border: 1px solid var(--po-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq_item:hover .faq_question::after {
  transform: translateY(-50%) rotate(180deg);
  color: var(--po-color);
}

.faq_item.active {
  border: 1px solid var(--po-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq_question::after {
  content: '+';
  position: absolute;
  width: 22px;
  height: 22px;
  text-align: center;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #888;
  transition: transform 0.3s ease;
}

.faq_item.active .faq_question {
  border-bottom: 1px solid #eee;
}

.faq_item.active .faq_question::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--po-color);
}

.faq_answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.3s ease;
  background: #fff;
  padding: 0rem 2rem;
}

.faq_item.active .faq_answer {
  opacity: 1;
}

.faq_answer p {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #555;
}

.faq_question,
.faq_answer .faq_inner {
  display: flex;
  align-items: center;
  gap: 5px;
}

.faq_answer .faq_inner {
  padding: 1.5rem 0;
}

.sec-2 .channel{
  margin: 50px auto ;
}

@media (max-width:500px) {
  .sec-1 .mid>.text .br {
    display: inline;
  }

  .sec-1 .mid {
    gap: 25px;
    padding: 4rem 1rem;
  }

  .sec-1 .mid>.text h3 {
    font-size: 28px;
  }

  .sec-1 .mid>.text p {
    font-size: 16px;
  }
}

@media (max-width:400px) {
  .sec-1 .mid .bot .text{
    gap: 8px;
  }
}