  ._viewFaq {
        max-width: 852px;
        margin: 0 auto;
  }

  /* 브레드크럼 */
  ._viewFaq .breadcrumb {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 0 4px 0 0;
        margin-bottom: 20px;
  }

  ._viewFaq .breadcrumb-arrow {
        width: 5.35px;
        height: 9.36px;
        color: #2F3642;
  }

  ._viewFaq .breadcrumb-text {
        font-family: 'Pretendard', sans-serif;
        font-weight: 600;
        font-size: 13px;
        line-height: 1em;
        color: #66768F;
  }

  /* 상세 컨텐츠 */
  ._viewFaq .detail-content {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        /* gap: 22px; */
  }

  .vFileDv {
        font-size: 14px;
        width: 100%;
        padding: 10px 0px;
        display: flex;
        flex-direction: column;
        gap: 4px;
  }

  /* 헤더 섹션 */
  ._viewFaq .detail-header {
        display: flex;
        flex-direction: column;
        gap: 3px;
        padding: 0 0 15px;
        border-bottom: 1px solid #8898AF;
        width: 100%;
  }

  ._viewFaq .header-top {
        display: flex;
        flex-direction: column;
        gap: 8px;
  }

  ._viewFaq .category-badge {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 3px 5px;
        background: #EFF2F6;
        border-radius: 6px;
        width: fit-content;
  }

  ._viewFaq .category-text {
        font-family: 'Pretendard', sans-serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 1.5em;
        letter-spacing: -0.02em;
        color: #2F3642;
  }

  ._viewFaq .question-info {
        display: flex;
        align-items: flex-end;
        gap: 14px;
        width: 100%;
  }

  ._viewFaq .question-title {
        font-family: 'Pretendard', sans-serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 1.5em;
        letter-spacing: -0.03em;
        color: #040404;
        flex: 1;
  }

  ._viewFaq .question-meta {
        display: flex;
        align-items: center;
        gap: 15px;
  }

  ._viewFaq .meta-item {
        font-family: 'Pretendard', sans-serif;
        font-weight: 400;
        font-size: 12px;
        line-height: 1.4em;
        letter-spacing: -0.02em;
        color: #737373;
  }

  .brdConEtcDiv {
        /* margin-bottom: 10px; */
        min-height: 1px;
        display: flex;
        gap: 12px;
        width: 100%;
        margin-top: 22px;
        flex-wrap: wrap;
  }

  .brdEDiv {
        font-size: 14px;
        border-radius: 10px;
        border: 1px solid var(--GY-300, #D9D9D9);
        padding: 5px 9px;
        display: flex;
        align-items: center;
        gap: 14px;
  }

  /* 답변 영역 */
  ._viewFaq .answer-content {
        min-height: 314px;
        /* background: #F5F5F5; */
        /* padding: 40px; */
        margin-bottom: 0;
        /* display: flex; */
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 22px;
        margin-bottom: 22px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--GY-200, #EBEBEB);
  }

  ._viewFaq .content-placeholder {
        font-family: 'Pretendard', sans-serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 1.5em;
        letter-spacing: -0.03em;
        color: #D9D9D9;
        text-align: center;
  }

  ._viewFaq .answer-text {
        font-family: 'Pretendard', sans-serif;
        font-weight: 400;
        font-size: 15px;
        line-height: 1.8em;
        color: #040404;
        white-space: pre-wrap;
        text-align: left;
        width: 100%;
  }

  /* 버튼 영역 */
  ._viewFaq .action-buttons {
        display: flex;
        gap: 10px;
  }

  ._viewFaq .action-btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 9px;
        padding: 10px 14px;
        height: 34px;
        background: #FFFFFF;
        border: 1px solid #66768F;
        border-radius: 8px;
        font-family: 'Pretendard', sans-serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 1.5em;
        letter-spacing: -0.02em;
        color: #040404;
        cursor: pointer;
        transition: all 0.2s ease;
  }

  ._viewFaq .action-btn:hover {
        background: #F8FAFB;
  }

  /* 복사 토스트 팝업 */
  /* 토스트 팝업 기본 스타일 */
  .toast-container {
        position: fixed;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        padding: 12px 24px;
        border-radius: 30px;
        font-size: 14px;
        z-index: 9999;
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
        /* 클릭 방해 금지 */
  }

  /* 활성화 상태 */
  .toast-container.active {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
  }


  .question-meta {
        font-size: 12px;
  }

  .onlyPc {
        display: block;

  }

  .onlyMo {
        display: none;
  }

  /* 모바일 반응형 */
  @media screen and (max-width: 768px) {

        .onlyPc {
              display: none !important;
        }

        .onlyMo {
              display: block;
        }

        .realCon {
              width: 100%;
        }

        .csmCon {
              width: 100%;
              min-height: -webkit-fill-available;
              border-radius: 0px;
              width: calc(100% - 40px);
              padding: 20px;
        }

        #top_btn2,
        #top_btn,
        #topBtn4Rn {
              display: none;
        }

        #header {
              display: none;
        }

        #footer {
              display: none;
        }

        ._leftMenu {
              display: none;
        }


        ._subRight {
              margin: 0px;
              width: 100%;
        }

        .subRcon {
              width: calc(100% - 32px);
              margin-top: 20px;
              padding: 0px 16px;
        }


        ._viewFaq .detail-header {
              padding: 0 0 13px;
        }

        ._viewFaq .question-title {
              font-size: 20px;
        }

        ._viewFaq .question-info {
              flex-direction: row;
              align-items: center;
              gap: 8px;
        }

        ._viewFaq .answer-content {
              min-height: 250px;
              /* padding: 20px; */
              margin-top: 12px;
        }

        ._viewFaq .content-placeholder {
              font-size: 18px;
        }

        ._viewFaq .answer-text {
              font-size: 14px;
        }

        ._viewFaq .action-buttons {
              width: 100%;
        }

        ._viewFaq .action-btn {
              flex: 1;
        }

        ._viewFaq .detail-content {
              align-items: stretch;
        }

        ._viewFaq .breadcrumb-text {
              font-size: 12px;
        }

        .category-text {
              font-size: 12px;
        }

        .question-info {
              display: flex;
        }

        .TitleRightBtn {
              cursor: pointer;
              display: block;
        }



        /* 드롭다운 메뉴 */
        .dropdown-menu {
              display: none;
              position: absolute;
              top: 120px;
              right: 6px;
              background: #fff;
              border: 1px solid #ddd;
              border-radius: 8px;
              box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
              z-index: 100;
              min-width: 90px;
              overflow: hidden;
        }

        .dropdown-menu.show {
              display: block;
        }

        .dropdown-menu a {
              display: block;
              padding: 14px 20px;
              font-size: 14px;
              color: #222;
              text-decoration: none;
              border-bottom: 1px solid #f0f0f0;
              font-weight: 400;
        }

        .dropdown-menu a:last-child {
              border-bottom: none;
        }

        .dropdown-menu a:hover {
              background: #f8f8f8;
        }

        .dropdown-menu a.delete {
              /* color: #e53935; */
        }

        .action-btn {
              width: 54px;
              justify-content: center;
        }

        ._viewFaq .action-buttons {
              flex-direction: column;
              align-items: flex-end;
        }
  }