.faq-section-wrap {
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 1490px;
  margin: 0 auto;
  background: #fff;
  padding-bottom: 40px;
}

.faq-list-section {
  flex: 1 1 45%;      /* grow: 1, shrink: 1, basis: 43%(640px)  */
  min-width: 450px;
 /*  max-width: 640px; */     /* 고정폭 */
  border: 1px solid #dae4f3;
  border-radius: 10px;
  background: #f7fafd;
  padding: 10px;
  box-sizing: border-box;
}

.faq-list-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 35px;
}
.faq-list-title h3 {
  font-size: 1.16rem;
  font-weight: 500;
  margin: 0;
}
.faq-list-title img {
  width: 22px; height: 22px;
}

/* 검색 영역 등은 announce-search-area 스타일 참고하여 .faq-search-area로 조정 */
.faq-search-area {
  display: flex;
  gap: 20px;
  align-items: center;
  /* width: 100%; */
  padding: 0px 20px;
  margin-bottom: 8px;
}
.search-controls {
  display: flex;
  /* flex-direction: column; */
  flex: 5 1 0;
  gap: 7px;
}
.btn-serch-wrap {
  display: flex;
  flex: 5 1 0;
  align-items: center;
  justify-content: center;
}
.faq-search-type,
#faqSearchTerm {
  height: 40px;
  font-size: 1.04rem;
  border: 1px solid #0799F4;
  border-radius: 5px;
  padding: 0 11px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.17s, background 0.17s;
  box-sizing: border-box;
}
#faqSearchTerm {
  width: 250px;
}
.faq-search-type {
  min-width: 200px;
  appearance: none;
  background: #fff url('/resources/images/comm/icon/arrow_down.svg') no-repeat right 10px center/24px 24px;
  letter-spacing: 0.15em;
  cursor: pointer;
}
.faq-search-type:focus {
  border-color: #43a2f7;
  background: #eaf2fe url('/resources/images/comm/icon/arrow_down.svg') no-repeat right 5px center/30px 30px;
  box-shadow: 0 0 0 2px #bae2ff;
}

/* 포커스 시 효과 */
#searchTerm:focus {
  border-color: #43a2f7;          /* 더 진한 파랑 */
  background: #eef7fe;            /* 연한 파랑 배경 */
  box-shadow: 0 0 0 2px #bae2ff;  /* 부드러운 외곽선 강조 */
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 590px
}
.faq-question-row {
  padding: 9px 6px;
  border-bottom: 1px solid #e2ebfa;
  font-size: 1.03rem;
  color: #2c3a59;
  cursor: pointer;
  transition: background 0.16s;
  white-space: nowrap;
  overflow: hidden;
  margin: auto;
  text-overflow: ellipsis;
}
.faq-question-row:hover {
  background: #e2ebfa;
}

.faq-list-area {
  /* padding: 0 20px 20px 20px; */
  margin: 0 20px;
  max-height: 600px;
  overflow-y: auto;      /* 세로 스크롤 활성화 */
}

.faq-subject-label {
  padding: 10px 0 8px 0;
  font-weight: 500;
  color: #1c2b4d;
  font-size: 1.03rem;
}
/* Q 아이콘만 작게 */
.faq-q-icon {
  width: 15px;
  height: 15px;
  margin-right: 7px;
  vertical-align: middle;
}

.btn-question-list {
  height: 40px;
  font-size: 1.05rem;
  font-weight: 400;
  display: flex;
}
.btn-question-list img {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
  align-self: flex-end;
}
.btn-question-list:hover {
  background: #318cfb;
}

/* 답변영역(우측)도 announce-contents-section 스타일을 복사해 faq-contents-section 으로 */
.faq-contents-section {
  flex: 1 1 55%;
  min-width: 450px;
  border: 1px solid #dae4f3;
  border-radius: 10px;
  background: #f7fafd;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 10px;
  height: 740px;
}

.faq-contents-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.faq-contents-title h3 {
  font-size: 1.16rem;
  font-weight: 500;
  margin: 0;
}
.faq-contents-title img {
  width: 22px; height: 22px;
}
.faq-contents-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0px 20px;
  margin-bottom: 8px;
}
.faq-meta-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
}
.faq-meta-col {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 5px;
}
.faq-label {
  font-size: 1.05rem;
  font-weight: 400;
  color: #343a40;
  min-width: 76px;
  text-align: right;
}
.faq-value {
  font-weight: 300;
  color: #21295b;
  min-width: 110px;
  display: inline-block;
}
.faq-date-box {
  background: #f4f8ff;
  border-radius: 4px;
  text-align: center;
  min-width: 120px;
}
.faq-contents-body {
  flex: 1 1 auto;          /* 남는 세로공간 차지 */
  margin: 0px 20px 10px 20px;
  font-size: 1.03rem;
  color: #222;
  min-height: 350px;
  word-break: break-all;
  font-weight: 300;
  overflow-y: auto;
}
hr {
  margin: 0px 10px 10px 10px;
  border: none;
  border-top: 2px solid #43a2f7;
}
/* 반응형 */
@media (max-width: 1200px) {
  .faq-section-wrap { flex-direction: column; }
  .faq-list-section, .faq-contents-section { max-width: 100%; min-width: 0; }
  .faq-meta-row { flex-direction: column; gap: 4px; }
  .faq-meta-col { min-width: 0; }
  .faq-date-box { min-width: 0; }
}
@media (max-width: 800px) {
  .page-category-wrap { padding: 8px 2vw 16px 2vw; }
  .faq-list-section, .faq-contents-section {
    padding: 11px 4px 10px 7px;
    border-radius: 5px;
  }
  .page-title-section h2 { font-size: 1.08rem; }
  .faq-list-title h3, .faq-contents-title h3 { font-size: 0.97rem; }
}