/* ════════════════════════════════════════
   FAQ 검색
════════════════════════════════════════ */
.faq-search {
  display: flex;
  gap: 0;
  margin: 60px 80px ;
  /* margin-top: 60px;
  margin-bottom: 100px; */
  border: 2px solid var(--color-purple);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(123, 47, 190, 0.12);
  transition: box-shadow 0.2s;
}

.faq-search:focus-within {
  box-shadow: 0 4px 20px rgba(123, 47, 190, 0.25);
}

.faq-search__input {
  flex: 1;
  padding: 16px 22px;
  border: none;
  background: #fff;
  font-family: var(--font-main);
  font-size: 16px;
  color: #333;
  outline: none;
}

.faq-search__input::placeholder {
  color: #bbb;
}

.faq-search__btn {
  padding: 16px 26px;
  background: var(--color-purple);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-search__btn:hover {
  background: #6a28a0;
}

/* ════════════════════════════════════════
   FAQ 카테고리 필터
════════════════════════════════════════ */
.faq-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.faq-cat-btn {
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  font-family: var(--font-main);
  font-size: 13px;
  color: #555;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.faq-cat-btn:hover {
  border-color: var(--color-purple);
  color: var(--color-purple);
}

.faq-cat-btn.active {
  background: var(--color-purple);
  border-color: var(--color-purple);
  color: #fff;
}

/* ════════════════════════════════════════
   FAQ 카테고리 + 태그 필터 (그리드형)
════════════════════════════════════════ */
.faq-filter {
  border-top: 2px solid #222;
  margin-bottom: 20px;
}

.faq-filter__reset-bar {
  display: flex;
  justify-content: flex-end;
  padding: 8px 0 4px;
}

.faq-filter__reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  border: 1px solid #d0b8f8;
  border-radius: 20px;
  font-size: 12px;
  color: var(--color-purple);
  background: #f3eeff;
  text-decoration: none;
  transition: all 0.18s;
}

.faq-filter__reset-btn:hover {
  background: var(--color-purple);
  color: #fff;
  border-color: var(--color-purple);
}

.faq-filter__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.faq-filter__cat-name {
  min-width: 100px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.2s;
  white-space: nowrap;
}

.faq-filter__cat-name:hover {
  color: var(--color-purple);
}

.faq-filter__cat-name.active {
  color: var(--color-purple);
}

.faq-filter__sep {
  color: #ccc;
  padding: 0 8px;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 300;
}

.faq-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.faq-filter__chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 13px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 12px;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  background: #fff;
  transition: all 0.18s;
}

.faq-filter__chip:hover {
  border-color: var(--color-purple);
  color: var(--color-purple);
  background: #f3eeff;
}

.faq-filter__chip.active {
  background: var(--color-purple);
  border-color: var(--color-purple);
  color: #fff;
}

/* ════════════════════════════════════════
   FAQ 아코디언 목록
════════════════════════════════════════ */
.faq-list {
  list-style: none;
  border-top: 2px solid #222;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  list-style: none;
  transition: background 0.15s, color 0.15s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: #f8f4ff;
  color: var(--color-purple);
}

.faq-item[open] summary {
  color: var(--color-purple);
  background: #f3eeff;
}

.faq-item__q-icon {
  width: 22px;
  height: 22px;
  background: var(--color-purple);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item__arrow {
  margin-left: auto;
  font-size: 16px;
  color: #aaa;
  transition: transform 0.2s;
  display: inline-block;
}

.faq-item[open] .faq-item__arrow {
  transform: rotate(90deg);
  color: var(--color-purple);
}

.faq-item__answer {
  padding: 16px 16px 20px 44px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}

.faq-empty {
  padding: 60px 20px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

/* ════════════════════════════════════════
   다운로드 페이지
════════════════════════════════════════ */
.download-banner {
  display: block;
  margin: 0 auto 28px;
  text-align: center;
}

.download-banner img {
  display: inline-block;
  width: auto;
  height: auto;
}

.download-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #222;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 28px;
}

.spec-table th,
.spec-table td {
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.spec-table thead th {
  background: var(--color-purple);
  color: #fff;
  font-weight: 700;
}

.spec-table tbody th {
  background: #f8f4ff;
  color: var(--color-purple);
  font-weight: 600;
  white-space: nowrap;
}

.spec-table tbody td {
  color: #444;
}

.driver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.driver-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.driver-card:hover {
  border-color: var(--color-purple);
  box-shadow: 0 2px 10px rgba(123, 47, 190, 0.1);
}

.driver-card img {
  height: 40px;
  object-fit: contain;
}

.download-notice {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.download-notice p {
  margin: 0 0 4px;
}

.download-notice p:last-child {
  margin-bottom: 0;
}

/* ════════════════════════════════════════
   1:1문의 폼 메시지
════════════════════════════════════════ */
.inquiry-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.inquiry-message {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.inquiry-message--error {
  background: #fff0f0;
  border: 1px solid #ffb3b3;
  color: #c0392b;
}

.inquiry-message--success {
  background: #f0fff4;
  border: 1px solid #b3ffcc;
  color: #1a7a40;
}

/* ════════════════════════════════════════
   1:1문의 폼
════════════════════════════════════════ */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inquiry-form__label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  display: block;
}

.inquiry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inquiry-chip {
  padding: 7px 15px;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  background: #fff;
  font-family: var(--font-main);
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1.4;
}

.inquiry-chip:hover {
  border-color: var(--color-purple);
  color: var(--color-purple);
}

.inquiry-chip--active,
.inquiry-chip--active:hover {
  border-color: var(--color-purple);
  background: var(--color-purple);
  color: #fff;
}

.inquiry-chip-hint {
  margin-top: 6px;
  font-size: 12px;
  color: #c0392b;
}

.inquiry-form__select,
.inquiry-form__input,
.inquiry-form__textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.inquiry-form__select:focus,
.inquiry-form__input:focus,
.inquiry-form__textarea:focus {
  border-color: var(--color-purple);
}

.inquiry-form__textarea {
  min-height: 200px;
  resize: none;
  overflow: hidden;
}

.inquiry-form__label-sub {
  font-size: 12px;
  color: #999;
  font-weight: normal;
}

.inquiry-attach__drop {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border: 2px dashed #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.inquiry-attach__drop:hover,
.inquiry-attach__drop--over {
  border-color: var(--color-purple);
  background: #f8f4ff;
}
.inquiry-attach__input {
  display: none;
}
.inquiry-attach__icon {
  font-size: 20px;
}
.inquiry-attach__text {
  font-size: 14px;
  color: #888;
}
.inquiry-attach__preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.attach-thumb {
  position: relative;
  width: 100px;
  height: 100px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.attach-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.attach-thumb__remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  font-size: 11px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.attach-thumb__remove:hover {
  background: #e74c3c;
}

.inquiry-detail__attachment {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.inquiry-detail__attachment-label {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}
.inquiry-detail__attachment-img {
  max-width: 100%;
  max-height: 400px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.inquiry-form__submit {
  align-self: flex-start;
  padding: 20px 56px;
  background: var(--color-purple);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.inquiry-form__submit:hover {
  background: #6a28a0;
}

.inquiry-list-header {
  font-size: 14px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 10px 10px 8px;
  padding-bottom: 6px;
}

.inquiry-new-btn-wrap {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.inquiry-new-btn-wrap .inquiry-form__submit {
  display: inline-block;
  text-decoration: none;
}

/* ════════════════════════════════════════
   내 질문 목록
════════════════════════════════════════ */
.inquiry-list {
  border-top: 2px solid #222;
}

.inquiry-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  transition: background 0.15s;
}

.inquiry-row:hover {
  background: #f8f4ff;
}

.inquiry-row__title {
  flex: 1;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inquiry-row__meta {
  font-size: 12px;
  color: #aaa;
  white-space: nowrap;
}

.inquiry-empty {
  padding: 60px 20px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

/* ════════════════════════════════════════
   문의 상세
════════════════════════════════════════ */
.inquiry-detail__header {
  border-bottom: 2px solid #222;
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.inquiry-detail__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.inquiry-detail__meta {
  font-size: 13px;
  color: #aaa;
  display: flex;
  gap: 16px;
}

.inquiry-detail__confirm-info {
  margin-top: 8px;
  font-size: 12px;
  color: #888;
}

.inquiry-detail__content {
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  min-height: 120px;
}

.inquiry-detail__reply {
  margin-top: 24px;
  background: #f8f4ff;
  border: 1px solid #e0d0ff;
  border-radius: 10px;
  padding: 20px;
}

.inquiry-detail__reply-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-purple);
  margin-bottom: 10px;
}

.inquiry-detail__reply-date {
  font-size: 12px;
  font-weight: 400;
  color: #999;
}

.inquiry-detail__reply-content {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

.inquiry-detail__no-reply {
  margin-top: 24px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
  background: #fafafa;
  border-radius: 8px;
}

.inquiry-detail__addendum {
  margin-top: 12px;
  background: #fffdf0;
  border: 1px solid #ffe58f;
  border-radius: 8px;
  padding: 14px 18px;
}
.inquiry-detail__addendum-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #b8860b;
  margin-bottom: 8px;
}
.inquiry-detail__addendum-content {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.inquiry-addendum-form {
  margin-top: 16px;
}
.inquiry-addendum-toggle {
  background: none;
  border: 1px dashed #ccc;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: #888;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.inquiry-addendum-toggle:hover {
  border-color: var(--color-purple);
  color: var(--color-purple);
}

.inquiry-back-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.inquiry-back-btn:hover {
  border-color: var(--color-purple);
  color: var(--color-purple);
}

/* ════════════════════════════════════════
   자료실 목록 - 첨부파일 아이콘
════════════════════════════════════════ */
.archive-file-icon {
  font-size: 14px;
  margin-left: 4px;
}

/* ════════════════════════════════════════
   자료실 상세 - 첨부파일 다운로드
════════════════════════════════════════ */
.archive-download-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 18px;
  background: #f8f4ff;
  border: 1px solid #e0d0ff;
  border-radius: 10px;
}

.archive-download-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-purple);
  white-space: nowrap;
}

.archive-download-btn {
  padding: 8px 20px;
  background: var(--color-purple);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.archive-download-btn:hover {
  background: #6a28a0;
}

/* ════════════════════════════════════════
   FAQ 검색 + 자동완성 래퍼
════════════════════════════════════════ */
.faq-search-wrap {
  position: relative;
  margin-bottom: 20px;
}
.faq-search-wrap .faq-search {
  margin-bottom: 100px;
}

/* ════════════════════════════════════════
   FAQ 자동완성 드롭다운
════════════════════════════════════════ */
.faq-suggest {
  position: absolute;
  top: calc(100%);
  left: 90px;
  right: 160px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}

.faq-suggest__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.15s;
}
.faq-suggest__item:last-child { border-bottom: none; }
.faq-suggest__item:hover,
.faq-suggest__item--active {
  background: #f3eeff;
}

.faq-suggest__cat {
  font-size: 11px;
  color: #fff;
  background: var(--color-purple);
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.faq-suggest__q {
  font-size: 13px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ════════════════════════════════════════
   최근/인기 FAQ 가로 배치 래퍼
════════════════════════════════════════ */
.faq-highlights {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.faq-highlights .faq-recent,
.faq-highlights .faq-popular {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .faq-highlights {
    flex-direction: column;
  }
}

/* ════════════════════════════════════════
   최근 추가된 FAQ 섹션
════════════════════════════════════════ */
.faq-recent {
  background: #f8f4ff;
  border: 1px solid #e0d0ff;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 14px;
}

.faq-recent__header {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-purple);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.faq-recent__header::before {
  content: '✨';
  font-size: 14px;
}

.faq-recent__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  margin: 0;
}

.faq-recent__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.faq-recent__link:hover { background: #ede5ff; }

.faq-recent__cat {
  font-size: 11px;
  color: #fff;
  background: var(--color-purple);
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0.75;
}

.faq-recent__q {
  font-size: 13px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ════════════════════════════════════════
   인기 FAQ 섹션
════════════════════════════════════════ */
.faq-popular {
  background: #fff8f0;
  border: 1px solid #ffe0b0;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.faq-popular__header {
  font-size: 13px;
  font-weight: 700;
  color: #c07000;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.faq-popular__header::before {
  content: '🔥';
  font-size: 14px;
}

.faq-popular__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  margin: 0;
}

.faq-popular__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.faq-popular__link:hover { background: #fff0dc; }

.faq-popular__rank {
  font-size: 12px;
  font-weight: 700;
  color: #c07000;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.faq-popular__q {
  font-size: 13px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ════════════════════════════════════════
   FAQ 도움이 됐나요? 평가 위젯
════════════════════════════════════════ */
.faq-helpful {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.faq-helpful__label {
  font-size: 13px;
  color: #888;
}

.faq-helpful__btn {
  padding: 5px 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 13px;
  font-family: var(--font-main, inherit);
  color: #555;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.faq-helpful__btn:hover { border-color: var(--color-purple); color: var(--color-purple); }
.faq-helpful__btn--yes:hover { background: #f3eeff; }
.faq-helpful__btn--no:hover  { background: #fff8f0; }

.faq-helpful__thanks {
  font-size: 13px;
  color: var(--color-purple);
  font-style: italic;
}

/* ════════════════════════════════════════
   관련 FAQ
════════════════════════════════════════ */
.faq-related {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed #e0d0ff;
}

.faq-related__label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 6px;
}

.faq-related__link {
  display: block;
  font-size: 13px;
  color: var(--color-purple);
  padding: 4px 0;
  text-decoration: none;
}
.faq-related__link:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   FAQ 검색 결과 없음 (빈 상태)
════════════════════════════════════════ */
.faq-empty {
  padding: 48px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.faq-empty__icon {
  font-size: 36px;
  line-height: 1;
}

.faq-empty__text {
  font-size: 15px;
  color: #444;
  text-align: center;
}

.faq-empty__sub {
  font-size: 13px;
  color: #aaa;
  text-align: center;
}

.faq-empty__btn {
  margin-top: 12px;
  display: inline-block;
  padding: 10px 24px;
  background: var(--color-purple);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.faq-empty__btn:hover { background: #6a28a0; }

/* ════════════════════════════════════════
   1:1 문의 폼 디플렉션 박스
════════════════════════════════════════ */
.inquiry-deflect {
  background: #f3eeff;
  border: 1px solid #d5b8ff;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 8px;
}

.inquiry-deflect__label {
  font-size: 13px;
  color: var(--color-purple);
  font-weight: 700;
  margin-bottom: 8px;
}

.inquiry-deflect__list {
  list-style: none;
  margin-bottom: 12px;
  padding: 0;
}

.inquiry-deflect__list li { padding: 4px 0; }

.deflect-faq-btn {
  width: 100%;
  background: none;
  border: none;
  font-size: 13px;
  color: #333;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-radius: 4px;
  transition: color 0.15s;
}
.deflect-faq-btn:hover { color: var(--color-purple); }
.deflect-faq-btn__arrow { margin-left: auto; color: #aaa; }

.inquiry-deflect__answer {
  background: #fff;
  border: 1px solid #d5b8ff;
  border-radius: 8px;
  padding: 14px 16px;
  margin: 10px 0;
  font-size: 13px;
}
.inquiry-deflect__answer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.inquiry-deflect__answer-q {
  font-weight: 700;
  color: var(--color-purple);
  font-size: 13px;
}
.inquiry-deflect__answer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 14px;
  padding: 0 4px;
}
.inquiry-deflect__answer-close:hover { color: #333; }
.inquiry-deflect__answer-body {
  max-height: 260px;
  overflow-y: auto;
  line-height: 1.7;
}

.inquiry-deflect__actions { display: flex; gap: 8px; }

.inquiry-deflect__btn--ok {
  padding: 7px 16px;
  background: var(--color-purple);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
.inquiry-deflect__btn--ok:hover { background: #6a28a0; }

.inquiry-deflect__btn--skip {
  padding: 7px 16px;
  background: #fff;
  color: #666;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.inquiry-deflect__btn--skip:hover { border-color: #bbb; }

/* 운영정책 본문 */
.policy-article__body {
  padding: 32px 8px;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  min-height: 300px;
}

.policy-article__body figure.table {
  margin: 20px 0;
  overflow-x: auto;
  max-width: 100%;
}

.policy-article__body table {
  border-collapse: collapse;
  font-size: 14px;
}

.policy-article__body th,
.policy-article__body td {
  border: 1px solid #ccc;
  padding: 8px 12px;
}

/* ════════════════════════════════════════
   문의 답변 CKEditor 콘텐츠 스타일
════════════════════════════════════════ */
.inquiry-detail__reply-content.ck-content a {
  color: var(--color-purple);
  text-decoration: underline;
  word-break: break-all;
}

.inquiry-detail__reply-content.ck-content a:hover {
  opacity: 0.75;
}

.inquiry-detail__reply-content.ck-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

