@charset "UTF-8";

/* ====================================
   BOARD COMMON STYLES
==================================== */
.board-main {
  background: white;
  min-height: calc(100vh - 200px);
}

/* ====================================
   BOARD LIST PAGE
==================================== */
.board-section {
  padding: 66px 0 120px;
}

.board-section .container {
  max-width: 1220px;
  margin: 0 auto;
}

/* Page Title */
.board-title-area {
  margin-bottom: 30px;
}

.board-page-title {
  margin: 0;
  font-size: 54px;
  line-height: normal;
  letter-spacing: -1.62px;
  font-weight: 600;
  color: #202124;
}

/* Board Navigation */
.board-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-bottom: 46px;
  padding-bottom: 6px;
}

.board-nav-item {
  color: #9c9ca4;
  font-size: 20px;
  letter-spacing: -0.6px;
  font-weight: 400;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.board-nav-item:hover {
  color: #202124;
  font-weight:600;
}

.board-nav-item.active {
  color: #202124;
  font-weight: 600;
  border-bottom-color: #202124;
}

/* Board Table */
.board-table-wrapper {
  display: flex;
  flex-direction: column;
}

.board-table-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 27px 0;
  border-top: 1px solid #eceef2;
  color: #6e6e73;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.48px;
}

.board-col-no {
  width: 60px;
  flex-shrink: 0;
  text-align: center;
}

.board-col-title {
  flex: 1;
  min-width: 0;
}
.board-table-header .board-col-title {
  text-align: center;
}

.board-col-date {
  width: 79px;
  flex-shrink: 0;
  text-align: center;
}

.board-col-views {
  width: 79px;
  flex-shrink: 0;
  text-align: center;
}

.board-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 27px 0;
  border-top: 1px solid #eceef2;
  text-decoration: none;
  color: #202124;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.48px;
  transition: background 0.2s;
}

.board-row:hover {
  background: #f9f9f9;
}

.board-row .board-col-no {
  color: #6e6e73;
}

.board-row .board-col-title {
  color: #202124;
}

.board-row .board-col-date {
  color: #6e6e73;
}

.board-row .board-col-views {
  color: #6e6e73;
}

/* Pagination */
.board-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 60px;
}

.pagination-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.pagination-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-arrow:hover:not(:disabled) {
  opacity: 0.7;
}

.pagination-arrow svg {
  width: 30px;
  height: 20px;
}

.page-numbers {
  display: flex;
  gap: 0;
  align-items: center;
}

.page-number {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #9c9ca4;
  transition: all 0.2s;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.48px;
  border-radius: 50px;
}

.page-number:hover {
  color: #202124;
}

.page-number.active {
  background: #202124;
  color: white;
  font-weight: 600;
}

/* ====================================
   BOARD VIEW PAGE
==================================== */
.board-view-section {
  padding: 66px 0 120px;
  display: flex;
  justify-content: center;
}

.container-view {
  width: 970px;
  max-width: 100%;
}

/* View Header */
.view-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 46px;
}

.view-category {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.48px;
  color: #6e6e73;
}

.view-title {
  margin: 0;
  font-size: 48px;
  line-height: 64px;
  letter-spacing: -1.44px;
  font-weight: 600;
  color: #202124;
}

.view-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.view-date {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.8px;
  color: #9c9ca4;
}

.view-views {
  display: flex;
  align-items: center;
  gap: 2px;
}

.view-views svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.view-views span {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.8px;
  color: #9c9ca4;
}

/* View Content */
.view-content {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 27px 0;
  border-top: 1px solid #eceef2;
  border-bottom: 1px solid #eceef2;
}

.view-text {
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.48px;
  font-weight: 400;
  color: #202124;
}

.view-text p {
  margin: 0;
}

.view-link {
  color: #202124;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
}

.view-link:hover {
  color: #fb7126;
}

/* Attachment */
.view-attachment {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #f1f3f9;
  border-top: 1px solid #eceef2;
  border-bottom: 1px solid #eceef2;
  margin-top: -1px;
}

.attachment-label {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.42px;
  font-weight: 400;
  color: #202124;
  flex-shrink: 0;
}

.attachment-file {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.42px;
  font-weight: 400;
  color: #6e6e73;
  text-decoration: none;
}

.attachment-file:hover {
  color: #202124;
  text-decoration: underline;
}

/* View Footer */
.view-footer {
  padding-top: 46px;
}

.btn-back-to-list {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-back-to-list:hover {
  opacity: 0.7;
}

.btn-back-to-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-back-to-list span {
  color: black;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.45px;
  font-weight: 400;
}

/* ====================================
   FAQ PAGE
==================================== */

/* FAQ Tab Area */
.faq-tab-area {
  margin-top: 30px;
  margin-bottom: 30px;
}

.faq-tab-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.faq-tab {
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid #eceef2;
  color: #9c9ca4;
  background-color: #fff;
  cursor: pointer;
}

.faq-tab:hover {
  border-color: #202124;
  color: #202124;
}

.faq-tab.active {
  background-color: #202124;
  color: #fff;
  border-color: #202124;
}

/* FAQ Container */
.faq-container {
  display: flex;
  flex-direction: column;
}

/* FAQ Item */
.faq-item {
  background: white;
  border-top: 1px solid #eceef2;
}

.faq-item:last-child {
  border-bottom: 1px solid #eceef2;
}

/* FAQ Question */
.faq-question {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 26px 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-category {
  width: 120px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.48px;
  color: #6e6e73;
}

.faq-title {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.48px;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.faq-item.active .faq-title {
  font-weight:600;
}


.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-toggle svg {
  width: 20px;
  height: 20px;
}

/* Toggle icon states */
.faq-item .icon-up {
  display: none;
}

.faq-item .icon-down {
  display: block;
}

.faq-item.active .icon-up {
  display: block;
}

.faq-item.active .icon-down {
  display: none;
}

/* FAQ Answer */
.faq-answer {
  display: none;
  background: #f1f3f9;
  padding: 20px;
}

.faq-item.active .faq-answer {
  display: block;
  padding-left: 140px;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.48px;
  font-weight: 400;
  color: black;
}
.faq-answer p a {
  text-decoration:underline;
  color:#4150f8;
}
.faq-answer p a svg {
  vertical-align: sub;
}

.faq-answer .process-steps {
  display: flex;
  gap: 10px;
}

.faq-answer .process-step {
  flex: 1;
  background: #fff;
  border-radius: 7px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 1ex;
  text-align: center;
}

.faq-answer .step-number {
  font-size: 18px;
  line-height: 21px;
  letter-spacing: -0.63px;
  color: var(--gray-l-200);
}

.faq-answer .step-icon {
  width: 32px;
  height: 32px;
}

.faq-answer .step-title {
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.48px;
  font-weight: 500;
  color: var(--blk);
  margin: 0;
}

.faq-answer .step-desc {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.48px;
  color: var(--gray-l-100);
  margin: 0;
}