@charset "utf-8";

:root {
    --qna-accent: #FC6A23;
    --qna-text: #222;
    --qna-muted: #666;
    --qna-line: #E5E5E5;
    --qna-line-strong: #333;
}

#bo_qna {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 80px;
    box-sizing: border-box;
    color: var(--qna-text);
}

/* 목록 상단 */
.qna_toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 16px;
}

.qna_write_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    height: 40px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--qna-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
}

.qna_write_btn:hover {
    color: #fff;
    filter: brightness(0.96);
}

/* 목록 테이블 */
.qna_tbl_wrap {
    width: 100%;
    overflow-x: auto;
}

.qna_tbl {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.qna_tbl caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.qna_tbl thead th {
    height: 60px;
    padding: 0 8px;
    border-top: 2px solid #424242;
    border-bottom: 1px solid #424242;
    background: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    vertical-align: middle;
    text-align: center;
}

.qna_tbl tbody td {
    height: 64px;
    padding: 0 8px;
    border-bottom: 1px solid var(--qna-line);
    background: #fff;
    font-size: 15px;
    color: #333;
    vertical-align: middle;
}

.qna_tbl .th_num,
.qna_tbl .td_num {
    width: 88px;
    text-align: center;
    color: #333;
}

.qna_tbl .th_subject {
    text-align: center;
}

.qna_tbl .td_subject {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.qna_tbl .th_date,
.qna_tbl .td_date {
    width: 140px;
    text-align: center;
    color: #555;
}

.qna_tbl .th_stat,
.qna_tbl .td_stat {
    width: 120px;
    text-align: center;
}

.qna_tbl th{text-align: center; color: #333; text-align: center;}

.qna_subject_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    color: #333;
    text-decoration: none;
}

.qna_subject_link .fa-lock {
    flex: 0 0 auto;
    color: #222;
    font-size: 14px;
}

.qna_subject_link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #333;
    line-height: 1.4;
}

.qna_subject_link:hover {
    color: var(--qna-accent);
}

.qna_subject_link:hover span {
    border-bottom-color: var(--qna-accent);
}

.qna_subject_link.is-disabled {
    cursor: default;
    pointer-events: none;
}

.qna_subject_link.is-disabled span {
    border-bottom-color: transparent;
}

.qna_tbl tr.is-locked .td_subject {
    cursor: default;
}

.qna_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    height: 28px;
    padding: 0 12px;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.qna_badge.is-wait {
    background: #A8A8A8;
}

.qna_badge.is-done {
    background: var(--qna-accent);
}

.qna_tbl .td_empty {
    height: 160px;
    text-align: center;
    color: #888;
}

/* 페이지네이션 */
.qna_pagination {
    margin-top: 36px;
}

/* 쓰기/보기: 기본 스킨 최소 보정 */
#bo_w,
#bo_v {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 80px;
    box-sizing: border-box;
}

#bo_w .btn_submit,
#bo_v .btn_submit {
    background: var(--qna-accent);
    border-color: var(--qna-accent);
}

/* ========== 문의하기(글쓰기) ========== */
.bo_qna_write {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 80px;
    box-sizing: border-box;
}

.bo_qna_write .qna_section {
    margin-bottom: 70px;
}

.bo_qna_write .qna_section_head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.bo_qna_write .qna_section_title {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.bo_qna_write .qna_section_head .qna_section_title {
    margin-bottom: 0;
}

.bo_qna_write .qna_section_desc {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.bo_qna_write .qna_section_box {
    padding: 28px;
    border-radius: 12px;
    background: #F5F5F5;
    box-sizing: border-box;
    overflow: visible;
}

.bo_qna_write .qna_form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}

.bo_qna_write .qna_field {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.bo_qna_write .qna_field_control {
    position: relative;
    flex: 1;
    min-width: 0;
}

.bo_qna_write .qna_field_control.is-invalid > .qna_input {
    border-color: var(--qna-accent);
}

.bo_qna_write .qna_field_control.is-invalid .qna_date_wrap {
    border-color: var(--qna-accent);
}

.bo_qna_write .qna_field_control.is-invalid .qna_section_box {
    box-shadow: inset 0 0 0 1px var(--qna-accent);
}

.bo_qna_write .qna_section_box {
    overflow: visible;
}

.bo_qna_write .qna_field label {
    flex: 0 0 auto;
    min-width: 88px;
    font-size: 16px;
    font-weight: 700;
    color: var(--qna-accent);
    white-space: nowrap;
}

.bo_qna_write .qna_field .qna_field_control {
    flex: 1;
    min-width: 0;
}

.bo_qna_write .qna_input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    color: #222;
    box-sizing: border-box;
}

.bo_qna_write .qna_input::placeholder {
    color: #B0B0B0;
}

.bo_qna_write .qna_date_wrap:focus-within {
    border-color: #FC6A23;
}

.bo_qna_write .qna_kit_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bo_qna_write .qna_kit_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 52px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
}

.bo_qna_write .qna_kit_name {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    word-break: keep-all;
}

.bo_qna_write .qna_qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    font-family: 'Paperlogy', sans-serif;
}

.bo_qna_write .qna_qty_btn,
.bo_qna_write .qna_qty_input {
    font-family: 'Paperlogy', sans-serif;
}

.bo_qna_write .qna_qty_btn {
    width: 36px;
    height: 36px;
    border: 0;
    background: #F3F3F3;
    color: #333;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.bo_qna_write .qna_qty_btn:hover {
    background: #EAEAEA;
}

.bo_qna_write .qna_qty_input {
    width: 48px;
    height: 36px;
    border: 0;
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
    text-align: center;
    font-size: 15px;
    color: #222;
    background: #fff;
    -moz-appearance: textfield;
}

.bo_qna_write .qna_qty_input::-webkit-outer-spin-button,
.bo_qna_write .qna_qty_input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bo_qna_write .qna_kit_summary {
    margin-top: 20px;
    margin-right: 12px;
    text-align: right;
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.bo_qna_write .qna_kit_summary strong {
    position: relative;
    top: 4px;
    margin-right: 4px;
    color: var(--qna-accent);
    font-weight: 700;
    font-family: 'Paperlogy', sans-serif;
    font-size: 35px;
}

.bo_qna_write .qna_kit_empty {
    margin: 0;
    color: #888;
    font-size: 14px;
}

.bo_qna_write .qna_date_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
    cursor: pointer;
}

.bo_qna_write .qna_date_wrap .fa-calendar {
    color: #999;
    font-size: 16px;
}

.bo_qna_write .qna_date_input {
    flex: 1;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 15px;
    color: #222;
    cursor: pointer;
}

.bo_qna_write .qna_date_input:focus {
    outline: none;
}

.bo_qna_write .qna_footer_row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-top: 8px;
}

/* 키트 왼쪽 열 흰색 박스 오른쪽 끝선과 날짜 input 끝선 맞춤
   키트: section_box padding 28*2 + gap 16 / 2열 */
.bo_qna_write .qna_section_date {
    flex: 0 1 auto;
    width: calc((100% - 72px) / 2 + 56px);
    max-width: calc((100% - 72px) / 2 + 56px);
    min-width: 0;
    margin-bottom: 0;
}

.bo_qna_write .qna_section_date .qna_section_box {
    width: 100%;
}

.bo_qna_write .qna_section_date .qna_date_wrap {
    width: 100%;
    max-width: none;
}

.bo_qna_write .qna_write_foot {
    flex: 0 0 420px;
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 0;
    padding-bottom: 0;
}

.bo_qna_write .qna_captcha {
    width: 100%;
}

.bo_qna_write .qna_agree {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #444;
}

.bo_qna_write .qna_agree input {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    background: #fff;
    flex: 0 0 auto;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
}

.bo_qna_write .qna_agree input:checked {
    background: #FC6A23;
    border-color: #FC6A23;
}

.bo_qna_write .qna_agree input:checked::after {
    content: "";
    position: absolute;
    left: 4.5px;
    top: 1.5px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.bo_qna_write .qna_agree_text {
    display: inline;
    line-height: 1.4;
    font-size: 17px;
}

.bo_qna_write .qna_agree_text label {
    cursor: pointer;
}

.bo_qna_write .qna_privacy_link {
    display: inline;
    padding: 0;
    border: 0;
    background: none;
    color: #444;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    cursor: pointer;
}

.bo_qna_write .qna_privacy_body {
    line-height: 1.7;
    font-size: 14px;
    color: #222;
    word-break: keep-all;
}

.bo_qna_write .qna_privacy_body table {
    width: 100%;
    border-collapse: collapse;
}

.bo_qna_write .qna_privacy_body img {
    max-width: 100%;
    height: auto;
}

.bo_qna_write .qna_submit_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 8px;
    background: var(--qna-accent);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.bo_qna_write .qna_submit_btn:hover {
    filter: brightness(0.96);
}

.bo_qna_write .qna_submit_btn:disabled {
    opacity: 0.7;
    cursor: default;
}

@media (max-width: 1440px) {
    #bo_qna,
    #bo_w,
    #bo_v,
    .bo_qna_write,
    .bo_qna_view {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 1024px) {
    .qna_tbl .th_date,
    .qna_tbl .td_date {
        width: 110px;
    }

    .qna_tbl .th_stat,
    .qna_tbl .td_stat {
        width: 100px;
    }

    .bo_qna_write .qna_section_box {
        padding: 20px;
    }

    .bo_qna_write .qna_kit_list {
        gap: 12px 24px;
    }

    .bo_qna_write .qna_section_date {
        width: calc((100% - 64px) / 2 + 40px);
        max-width: calc((100% - 64px) / 2 + 40px);
    }
}

@media (max-width: 640px) {
    #bo_qna {
        padding: 0 0 60px;
    }

    .qna_tbl thead th,
    .qna_tbl tbody td {
        height: 52px;
        font-size: 13px;
    }

    .qna_tbl .th_num,
    .qna_tbl .td_num {
        width: 52px;
    }

    .qna_tbl .th_date,
    .qna_tbl .td_date {
        width: 92px;
        font-size: 12px;
    }

    .qna_tbl .th_stat,
    .qna_tbl .td_stat {
        width: 84px;
    }

    .qna_badge {
        min-width: 64px;
        height: 24px;
        padding: 0 8px;
        font-size: 12px;
    }

    .qna_subject_link {
        gap: 6px;
    }

    .bo_qna_write {
        padding-bottom: 60px;
    }

    .bo_qna_write .qna_section_title {
        font-size: 18px;
    }

    .bo_qna_write .qna_form_grid,
    .bo_qna_write .qna_kit_list {
        grid-template-columns: 1fr;
    }

    .bo_qna_write .qna_footer_row {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .bo_qna_write .qna_section_date {
        width: 100%;
        max-width: none;
    }

    .bo_qna_write .qna_write_foot {
        align-items: stretch;
        flex: none;
        width: 100%;
    }

    .bo_qna_write .qna_submit_btn {
        max-width: none;
    }

    .bo_qna_write .qna_date_wrap {
        max-width: none;
    }
}

/* ========== 문의 보기 ========== */
.bo_qna_view {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 0 80px;
    box-sizing: border-box;
    color: var(--qna-text);
}

.bo_qna_view .qna_view_breadcrumb {
    margin-bottom: 28px;
}

.bo_qna_view .qna_view_head {
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--qna-line);
}

.bo_qna_view .qna_view_head_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.bo_qna_view .qna_view_actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bo_qna_view .qna_view_list_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 14px;
    border: 1px solid var(--qna-line);
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.bo_qna_view .qna_view_list_btn:hover {
    border-color: #cfcfcf;
    color: #111;
}

.bo_qna_view .qna_view_more {
    position: relative;
}

.bo_qna_view .qna_view_more_btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--qna-line);
    border-radius: 8px;
    background: #fff;
    color: #555;
    cursor: pointer;
}

.bo_qna_view .qna_view_more_menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 20;
    min-width: 120px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    border: 1px solid var(--qna-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bo_qna_view .qna_view_more_menu a {
    display: block;
    padding: 10px 14px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

.bo_qna_view .qna_view_more_menu a:hover {
    background: #f7f7f7;
}

.bo_qna_view .qna_view_title {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    word-break: keep-all;
}

.bo_qna_view .qna_view_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 14px;
    color: #666;
}

.bo_qna_view .qna_view_meta_item strong {
    margin-right: 6px;
    color: #333;
    font-weight: 700;
}

.bo_qna_view .qna_section {
    margin-bottom: 40px;
}

.bo_qna_view .qna_section_title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.bo_qna_view .qna_view_box {
    padding: 28px;
    border-radius: 12px;
    background: #F5F5F5;
    box-sizing: border-box;
}

.bo_qna_view .qna_view_dl {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
}

.bo_qna_view .qna_view_row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.bo_qna_view .qna_view_row dt {
    flex: 0 0 auto;
    min-width: 88px;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--qna-accent);
}

.bo_qna_view .qna_view_row dd {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 12px 16px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #E5E5E5;
    font-size: 15px;
    color: #222;
    line-height: 1.4;
    word-break: break-all;
}

.bo_qna_view .qna_view_kit_list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.bo_qna_view .qna_view_kit_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 52px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
}

.bo_qna_view .qna_view_kit_name {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    word-break: keep-all;
}

.bo_qna_view .qna_view_kit_qty {
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 700;
    color: var(--qna-accent);
}

.bo_qna_view .qna_kit_summary {
    margin-top: 12px;
    font-size: 15px;
    color: #555;
}

.bo_qna_view .qna_kit_summary strong {
    color: #111;
}

.bo_qna_view .qna_view_date_value {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.bo_qna_view .qna_view_date_value .fa-calendar {
    color: #999;
}

.bo_qna_view .qna_view_content {
    background: #fff;
    border: 1px solid var(--qna-line);
    line-height: 1.7;
    font-size: 15px;
}

.bo_qna_view .qna_view_content img {
    max-width: 100%;
    height: auto;
}

.bo_qna_view .qna_view_file_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bo_qna_view .qna_view_file_list li + li {
    margin-top: 8px;
}

.bo_qna_view .qna_view_file_list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.bo_qna_view .qna_view_file_list a:hover {
    color: var(--qna-accent);
}

.bo_qna_view .qna_view_nav {
    margin: 8px 0 40px;
    border-top: 1px solid var(--qna-line);
    border-bottom: 1px solid var(--qna-line);
}

.bo_qna_view .qna_view_nav_item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 12px 4px;
    color: #333;
    text-decoration: none;
}

.bo_qna_view .qna_view_nav_item + .qna_view_nav_item {
    border-top: 1px solid var(--qna-line);
}

.bo_qna_view .qna_view_nav_item:hover {
    color: var(--qna-accent);
}

.bo_qna_view .qna_view_nav_label {
    font-size: 13px;
    font-weight: 700;
    color: #888;
}

.bo_qna_view .qna_view_nav_subject {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
}

.bo_qna_view .qna_view_nav_date {
    font-size: 13px;
    color: #999;
}

/* 댓글 영역 */
.bo_qna_view .cmt_btn {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 0 16px;
    padding: 0 0 12px;
    border: 0;
    border-bottom: 2px solid #333;
    background: transparent;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    cursor: default;
}

.bo_qna_view .cmt_btn .cmt_more {
    display: none;
}

.bo_qna_view #bo_vc {
    margin-bottom: 28px;
}

.bo_qna_view #bo_vc > h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.bo_qna_view #bo_vc article {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid var(--qna-line);
}

.bo_qna_view #bo_vc .pf_img {
    display: none;
}

.bo_qna_view #bo_vc .cm_wrap {
    flex: 1;
    min-width: 0;
}

.bo_qna_view #bo_vc header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.bo_qna_view #bo_vc header .qna_answer_name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.bo_qna_view #bo_vc header .bo_vc_hdinfo {
    color: #999;
}

.bo_qna_view #bo_vc .cmt_contents {
    font-size: 15px;
    line-height: 1.6;
    color: #222;
    word-break: keep-all;
}

.bo_qna_view #bo_vc_w {
    padding: 24px;
    border-radius: 12px;
    background: #F5F5F5;
}

.bo_qna_view #bo_vc_w h2 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
}

.bo_qna_view #wr_content {
    width: 100%;
    min-height: 120px;
    padding: 14px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
    font-size: 15px;
    resize: vertical;
}

.bo_qna_view .btn_confirm {
    margin-top: 12px;
    text-align: right;
}

.bo_qna_view #btn_submit,
.bo_qna_view .btn_submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: var(--qna-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 768px) {
    .bo_qna_view {
        padding: 20px 16px 60px;
    }

    .bo_qna_view .qna_view_title {
        font-size: 22px;
    }

    .bo_qna_view .qna_view_box {
        padding: 18px;
    }

    .bo_qna_view .qna_view_dl,
    .bo_qna_view .qna_view_kit_list {
        grid-template-columns: 1fr;
    }

    .bo_qna_view .qna_view_nav_item {
        grid-template-columns: 72px 1fr;
    }

    .bo_qna_view .qna_view_nav_date {
        display: none;
    }
}

