/* ==============================
   DMI Default Board - Scoped
   리스트/뷰 기본 게시판 전용
   .default-board 안에서만 작동하므로 media/inquiry 등 다른 게시판에 영향 없음
============================== */

.default-board {
    width: 100%;
    color: #111;
}

.default-board a {
    color: inherit;
    text-decoration: none;
}

.default-board a:hover {
    color: #07346b;
}

/* Default Board - Common Head */

.default-board .board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.default-board .board-title {
    display: block;
    margin: 0;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 800;
    color: #111;
}

.default-board .board-btn-write {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 44px;
    padding: 0 20px;
    border: 1px solid #07346b;
    border-radius: 4px;
    background: #07346b;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
}

.default-board .board-btn-write:hover {
    border-color: #052653;
    background: #052653;
    color: #fff;
}

/* Default Board - List */

.default-board .board-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #111;
    table-layout: fixed;
}

.default-board .board-table th,
.default-board .board-table td {
    height: 58px;
    padding: 0 14px;
    border-bottom: 1px solid #e1e5ec;
    font-size: 15px;
    vertical-align: middle;
    box-sizing: border-box;
}

.default-board .board-table th {
    background: #f7f9fc;
    color: #111;
    font-weight: 700;
    text-align: center;
}

.default-board .board-table td {
    color: #333;
    text-align: center;
}

.default-board .board-table .col-num {
    width: 90px;
}

.default-board .board-table .col-name {
    width: 140px;
}

.default-board .board-table .col-date {
    width: 140px;
}

.default-board .board-table .col-hit {
    width: 100px;
}

.default-board .board-table .col-subject {
    width: auto;
    text-align: left;
}

.default-board .board-table td.col-subject a {
    display: inline-block;
    max-width: 100%;
    color: #111;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.default-board .board-table td.col-subject a:hover {
    color: #07346b;
}

.default-board .board-empty {
    height: auto;
    padding: 80px 0;
    border-bottom: 1px solid #e1e5ec;
    background: #fff;
    text-align: center !important;
    font-size: 16px;
    color: #666;
}

.default-board .board-paging {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.default-board .board-paging a,
.default-board .board-paging strong,
.default-board .board-paging span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin: 0 3px;
    border: 1px solid #d8dde6;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
}

.default-board .board-paging strong {
    border-color: #07346b;
    background: #07346b;
    color: #fff;
}

/* Default Board - View */

.default-board .view-wrap {
    border-top: 2px solid #111;
}

.default-board .view-title-bar {
    padding: 28px 0 24px;
    border-bottom: 1px solid #e1e5ec;
}

.default-board .view-subject {
    margin: 0 0 16px;
    font-size: 32px;
    line-height: 1.35;
    font-weight: 800;
    color: #111;
    word-break: keep-all;
}

.default-board .view-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 15px;
    color: #666;
}

.default-board .view-meta span {
    position: relative;
}

.default-board .view-meta span + span::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    width: 1px;
    height: 12px;
    background: #d6dce7;
    transform: translateY(-50%);
}

.default-board .view-content {
    min-height: 240px;
    padding: 42px 0 54px;
    border-bottom: 1px solid #e1e5ec;
    font-size: 17px;
    line-height: 1.8;
    color: #222;
    word-break: keep-all;
}

.default-board .view-nav {
    margin-top: 42px;
    border-top: 1px solid #e1e5ec;
    border-bottom: 1px solid #e1e5ec;
}

.default-board .view-nav .nav-row {
    display: flex;
    align-items: center;
    min-height: 58px;
    border-top: 1px solid #e1e5ec;
}

.default-board .view-nav .nav-row:first-child {
    border-top: 0;
}

.default-board .view-nav .nav-label {
    flex: 0 0 100px;
    padding-left: 16px;
    font-weight: 700;
    color: #111;
    box-sizing: border-box;
}

.default-board .view-nav a {
    flex: 1;
    min-width: 0;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.default-board .view-nav a:hover {
    color: #07346b;
}

.default-board .view-btn-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.default-board .board-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 44px;
    padding: 0 18px;
    border: 1px solid #cfd6e2;
    border-radius: 4px;
    background: #fff;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
}

.default-board .board-btn:hover {
    border-color: #07346b;
    color: #07346b;
}

.default-board .board-btn-del:hover {
    border-color: #c92121;
    color: #c92121;
}

@media (max-width: 768px) {
    .default-board .board-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .default-board .board-table .col-num,
    .default-board .board-table .col-name,
    .default-board .board-table .col-hit {
        display: none;
    }

    .default-board .board-table .col-date {
        width: 110px;
    }

    .default-board .board-table th,
    .default-board .board-table td {
        height: 54px;
        padding: 0 10px;
        font-size: 14px;
    }

    .default-board .view-subject {
        font-size: 26px;
    }

    .default-board .view-meta {
        flex-direction: column;
        gap: 6px;
    }

    .default-board .view-meta span + span::before {
        display: none;
    }

    .default-board .view-nav .nav-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 16px 0;
    }

    .default-board .view-nav .nav-label {
        flex: none;
        padding-left: 0;
    }

    .default-board .view-nav a {
        width: 100%;
    }
}


.board-title {
    display: none;
}

/* ==============================
   DMI Board Common Layout
============================== */

.board-section {
    width: 100%;
    padding: 90px 0 120px;
    background: #fff;
}

.board-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.dmi-board-wrap {
    width: 100%;
}

.dmi-sec-head {
    margin-bottom: 42px;
}

.dmi-sec-head span {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #0a4bc0;
    letter-spacing: 0.06em;
}

.dmi-sec-head h3 {
    margin: 0;
    font-size: 34px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
}

/* ==============================
   DMI Media Board - List
============================== */

.media-board {
    width: 100%;
}

.media-list-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.media-list-count {
    font-size: 15px;
    color: #333;
}

.media-list-count strong {
    color: #0a4bc0;
    font-weight: 700;
}

.media-search {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 520px;
}

.media-search select {
    width: 160px;
    height: 54px;
    padding: 0 42px 0 18px;
    border: 1px solid #d8dde6;
    border-radius: 6px;
    background: #fff;
    font-size: 15px;
    color: #333;
}

.media-search-input {
    display: flex;
    width: 360px;
    height: 54px;
    border: 1px solid #0a4bc0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.media-search-input input {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 18px;
    border: 0;
    outline: 0;
    font-size: 15px;
}

.media-search-input button {
    position: relative;
    width: 58px;
    height: 100%;
    border: 0;
    background: #0749c9;
    cursor: pointer;
}

.media-search-input button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.media-search-input button::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 16px;
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.media-search-input button::after {
    content: "";
    position: absolute;
    left: 33px;
    top: 31px;
    width: 10px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: left center;
}

.media-admin-btns {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 32px;
}

.media-admin-btns .board-btn-write,
.board-btn-write {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 44px;
    padding: 0 20px;
    border: 1px solid #07346b;
    border-radius: 4px;
    background: #07346b;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.media-admin-btns .board-btn-write:hover,
.board-btn-write:hover {
    border-color: #052653;
    background: #052653;
    color: #fff;
    text-decoration: none;
}

.board-empty {
    padding: 80px 0;
    border-top: 1px solid #e3e6ec;
    border-bottom: 1px solid #e3e6ec;
    text-align: center;
    font-size: 16px;
    color: #666;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px 24px;
}

.media-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.media-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid #d6dce7;
    border-radius: 4px;
    background: #eef1f5;
}

.media-thumb img,
.media-thumb video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.media-card:hover .media-thumb img,
.media-card:hover .media-thumb video {
    transform: scale(1.04);
}

.media-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    transform: translate(-50%, -50%);
}

.media-play-icon::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 17px;
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.media-no-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 15px;
    color: #777;
}

.media-info {
    padding-top: 22px;
}

.media-info h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
    word-break: keep-all;
}

.media-info p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

/* ==============================
   DMI Media Board - View
============================== */

.media-view {
    width: 100%;
}

.media-view-head {
    margin-bottom: 30px;
}

.media-view-head h2 {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
    word-break: keep-all;
}

.media-view-head p {
    margin: 0;
    font-size: 16px;
    color: #444;
}

.media-view-line {
    height: 1px;
    margin-bottom: 30px;
    background: #ddd;
}

.media-player-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    background: #eee;
}

.media-view-video {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
}

.media-player-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f5f5f5;
    font-size: 16px;
    color: #777;
}

.media-view-utils {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid #ddd;
}

.media-view-stats {
    display: flex;
    align-items: center;
    gap: 8px;
}

.media-view-stats span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
    color: #111;
}

.media-view-tools {
    display: flex;
    align-items: center;
    gap: 8px;
}

.media-view-tools button {
    min-width: 96px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
    color: #111;
    cursor: pointer;
}

.media-view-tools button:hover {
    border-color: #0749c9;
    color: #0749c9;
}

.media-view-content {
    padding: 44px 0 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
}

.view-nav {
    margin-top: 50px;
    border-top: 1px solid #e1e5ec;
    border-bottom: 1px solid #e1e5ec;
}

.view-nav .nav-row {
    display: flex;
    align-items: center;
    min-height: 58px;
    border-top: 1px solid #e1e5ec;
}

.view-nav .nav-row:first-child {
    border-top: 0;
}

.view-nav .nav-label {
    flex: 0 0 100px;
    font-weight: 700;
    color: #111;
}

.view-nav a {
    color: #333;
    text-decoration: none;
}

.view-nav a:hover {
    color: #0749c9;
}

.view-btn-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.board-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 44px;
    padding: 0 18px;
    border: 1px solid #cfd6e2;
    border-radius: 4px;
    background: #fff;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
}

.board-btn:hover {
    border-color: #07346b;
    color: #07346b;
    text-decoration: none;
}

.board-btn-del:hover {
    border-color: #c92121;
    color: #c92121;
}

/* ==============================
   DMI Media Board - Write
============================== */

.media-write {
    max-width: 960px;
    margin: 0 auto;
}

.media-write h2 {
    margin: 0 0 28px;
    font-size: 32px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
}

.media-write form {
    width: 100% !important;
}

.media-write-form {
    border-top: 2px solid #111;
}

.media-write-row {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #e1e5ec;
}

.media-write-row label {
    padding-top: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.media-write-row label strong {
    color: #0a4bc0;
}

.media-write .frm_input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #d8dde6;
    border-radius: 4px;
    background: #fff;
    font-size: 15px;
    color: #111;
    box-sizing: border-box;
}

.media-write input[type="file"].frm_input {
    display: flex;
    align-items: center;
    padding: 10px 14px;
}

.media-write textarea.frm_input {
    min-height: 180px;
    padding: 16px;
    line-height: 1.7;
    resize: vertical;
}

.media-write .is-readonly {
    background: #f5f7fa;
}

.media-write-help {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #777;
}

.media-current-files {
    display: grid;
    gap: 8px;
}

.media-current-file {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #e1e1e1;
    background: #fafafa;
    font-size: 14px;
}

.media-current-file label {
    padding: 0;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
}

.btn_confirm {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.btn_confirm .btn,
.btn_confirm button,
.btn_confirm a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 46px;
    padding: 0 22px;
    border: 1px solid #cfd6e2;
    border-radius: 4px;
    background: #fff;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}

.btn_confirm .btn_submit,
.btn_confirm button[type="submit"] {
    border-color: #07346b;
    background: #07346b;
    color: #fff;
}

.btn_confirm .btn_cancel {
    background: #fff;
    color: #333;
}

/* ==============================
   Responsive
============================== */

@media (max-width: 1024px) {
    .board-section {
        padding: 70px 0 100px;
    }

    .media-list-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .media-search {
        width: 100%;
        min-width: 0;
    }

    .media-search-input {
        width: 100%;
    }

    .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 20px;
    }

    .media-info h3 {
        font-size: 20px;
    }

    .media-view-head h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .board-section {
        padding: 54px 0 80px;
    }

    .board-inner {
        padding: 0 18px;
    }

    .dmi-sec-head h3 {
        font-size: 28px;
    }

    .media-search {
        flex-direction: column;
        align-items: stretch;
    }

    .media-search select {
        width: 100%;
    }

    .media-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .media-info {
        padding-top: 16px;
    }

    .media-info h3 {
        margin-bottom: 10px;
        font-size: 19px;
    }

    .media-info p {
        font-size: 15px;
    }

    .media-view-head h2 {
        font-size: 26px;
    }

    .media-view-utils {
        align-items: flex-start;
        flex-direction: column;
    }

    .media-view-tools {
        width: 100%;
    }

    .media-view-tools button {
        flex: 1;
    }

    .view-nav .nav-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 16px 0;
    }

    .view-nav .nav-label {
        flex: none;
    }

    .media-write-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .media-write-row label {
        padding-top: 0;
    }
}

/* ==========================================================
   JEONGWOO NEWS BOARD
   일반 뉴스 목록/상세 전용. 기존 media/default 게시판과 클래스 분리.
========================================================== */

.jw-news-list,
.jw-news-view {
    --jw-news-ink: #101917;
    --jw-news-muted: #77817e;
    --jw-news-line: #dce3e0;
    --jw-news-soft: #f4f7f6;
    --jw-news-accent: #008d6b;
    --jw-news-deep: #003e34;
    width: 100%;
    color: var(--jw-news-ink);
    font-family: inherit;
    box-sizing: border-box;
}

.jw-news-list *,
.jw-news-view * {
    box-sizing: border-box;
}

.jw-news-list a,
.jw-news-view a {
    color: inherit;
    text-decoration: none;
}

.jw-news-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* News list */

.jw-news-list__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 26px;
}

.jw-news-list__count {
    flex: 0 0 auto;
    margin: 0;
    color: var(--jw-news-muted);
    font-size: 15px;
    line-height: 1.5;
}

.jw-news-list__count strong {
    color: var(--jw-news-accent);
    font-weight: 800;
}

.jw-news-search {
    display: flex;
    align-items: stretch;
    gap: 8px;
    width: min(100%, 490px);
}

.jw-news-search__select {
    position: relative;
    flex: 0 0 118px;
}

.jw-news-search__select::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1px solid #66716e;
    border-bottom: 1px solid #66716e;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.jw-news-search select,
.jw-news-search input {
    width: 100%;
    height: 48px;
    border: 1px solid var(--jw-news-line);
    border-radius: 0;
    background: #fff;
    color: var(--jw-news-ink);
    font: inherit;
    font-size: 14px;
    outline: 0;
}

.jw-news-search select {
    padding: 0 38px 0 15px;
    appearance: none;
    -webkit-appearance: none;
}

.jw-news-search__field {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    border: 1px solid var(--jw-news-line);
    background: #fff;
}

.jw-news-search__field:focus-within,
.jw-news-search select:focus {
    border-color: var(--jw-news-accent);
}

.jw-news-search__field input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 15px;
    border: 0;
}

.jw-news-search__field input::placeholder {
    color: #a0aaa7;
}

.jw-news-search__field button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: var(--jw-news-deep);
    color: #fff;
    cursor: pointer;
}

.jw-news-search__field button:hover {
    background: var(--jw-news-accent);
}

.jw-news-search__field svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.jw-news-list__rows {
    border-top: 1px solid var(--jw-news-ink);
}

.jw-news-list__row {
    margin: 0;
    border-bottom: 1px solid var(--jw-news-line);
}

.jw-news-list__link {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) 108px 26px;
    align-items: center;
    gap: 18px;
    min-height: 78px;
    padding: 0 10px;
    transition: background-color 0.2s ease, padding 0.2s ease;
}

.jw-news-list__link:hover {
    padding-left: 18px;
    background: var(--jw-news-soft);
}

.jw-news-list__number {
    color: #9aa4a1;
    font-size: 14px;
    text-align: center;
}

.jw-news-list__subject {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: var(--jw-news-ink);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jw-news-list__date {
    color: var(--jw-news-muted);
    font-size: 14px;
    text-align: right;
}

.jw-news-list__arrow {
    color: #8a9491;
    font-size: 21px;
    line-height: 1;
    text-align: right;
    transition: color 0.2s ease, transform 0.2s ease;
}

.jw-news-list__link:hover .jw-news-list__subject,
.jw-news-list__link:hover .jw-news-list__arrow {
    color: var(--jw-news-accent);
}

.jw-news-list__link:hover .jw-news-list__arrow {
    transform: translateX(3px);
}

.jw-news-list__empty {
    margin: 0;
    padding: 90px 20px;
    border-bottom: 1px solid var(--jw-news-line);
    color: var(--jw-news-muted);
    font-size: 16px;
    text-align: center;
}

.jw-news-list__admin {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.jw-news-list__write,
.jw-news-view__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    height: 46px;
    padding: 0 22px;
    border: 1px solid var(--jw-news-deep);
    background: #fff;
    color: var(--jw-news-deep) !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.jw-news-list__write:hover,
.jw-news-view__button:hover,
.jw-news-view__button.is-list {
    border-color: var(--jw-news-deep);
    background: var(--jw-news-deep);
    color: #fff !important;
}

.jw-news-view__button.is-list:hover {
    border-color: var(--jw-news-accent);
    background: var(--jw-news-accent);
}

.jw-news-list__paging {
    margin-top: 42px;
}

.jw-news-list__paging .pg_wrap {
    display: block;
    float: none;
    margin: 0;
    text-align: center;
}

.jw-news-list__paging .pg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.jw-news-list__paging .pg_page,
.jw-news-list__paging .pg_current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0;
    padding: 0 8px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #4e5956;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-indent: 0;
}

.jw-news-list__paging .pg_page:hover {
    background: var(--jw-news-soft);
    color: var(--jw-news-accent);
}

.jw-news-list__paging .pg_current {
    background: var(--jw-news-deep);
    color: #fff;
}

/* News view */

.jw-news-view {
    max-width: 1180px;
    margin: 0 auto;
}

.jw-news-view__header {
    position: relative;
    padding: 4px 74px 30px 0;
    border-bottom: 1px solid var(--jw-news-ink);
}

.jw-news-view__title {
    margin: 0 0 16px;
    color: var(--jw-news-ink);
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.025em;
    word-break: keep-all;
}

.jw-news-view__date {
    color: #929b99;
    font-size: 15px;
    line-height: 1.5;
}

.jw-news-view__share {
    position: absolute;
    right: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--jw-news-soft);
    color: var(--jw-news-ink);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.jw-news-view__share:hover {
    background: var(--jw-news-deep);
    color: #fff;
}

.jw-news-view__share svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.jw-news-view__body {
    min-height: 420px;
    padding: 46px 24px 70px;
    border-bottom: 1px solid var(--jw-news-line);
}

.jw-news-view__media {
    display: grid;
    gap: 20px;
    max-width: 980px;
    margin: 0 auto 42px;
}

.jw-news-view__media img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.jw-news-view__content {
    max-width: 1080px;
    margin: 0 auto;
    color: #18211f;
    font-size: 17px;
    line-height: 1.95;
    overflow-wrap: break-word;
    word-break: keep-all;
}

.jw-news-view__content p {
    margin: 0 0 1.55em;
}

.jw-news-view__content h1,
.jw-news-view__content h2,
.jw-news-view__content h3,
.jw-news-view__content h4 {
    margin: 2.2em 0 0.7em;
    color: var(--jw-news-ink);
    font-weight: 800;
    line-height: 1.45;
}

.jw-news-view__content h2 {
    font-size: 24px;
}

.jw-news-view__content h3 {
    font-size: 20px;
}

.jw-news-view__content img {
    max-width: 100%;
    height: auto;
}

.jw-news-view__content blockquote {
    margin: 30px 0;
    padding: 24px 28px;
    border: 0;
    background: var(--jw-news-soft);
    color: #24302d;
}

.jw-news-view__content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.jw-news-view__content th,
.jw-news-view__content td {
    padding: 12px 14px;
    border: 1px solid var(--jw-news-line);
    text-align: left;
}

.jw-news-view__content th {
    background: var(--jw-news-soft);
}

.jw-news-view__empty {
    color: var(--jw-news-muted);
    text-align: center;
}

.jw-news-view__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 34px 0 48px;
}

.jw-news-view__button.is-delete:hover {
    border-color: #b42318;
    background: #b42318;
    color: #fff !important;
}

.jw-news-view__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--jw-news-line);
}

.jw-news-view__nav-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    padding: 28px 8px 0;
}

.jw-news-view__nav-item.is-next {
    align-items: flex-end;
    text-align: right;
}

.jw-news-view__nav-label {
    color: var(--jw-news-ink);
    font-size: 15px;
    font-weight: 800;
}

.jw-news-view__nav-item strong {
    display: block;
    width: 100%;
    overflow: hidden;
    color: var(--jw-news-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jw-news-view__nav-item:hover .jw-news-view__nav-label,
.jw-news-view__nav-item:hover strong {
    color: var(--jw-news-accent);
}

@media (max-width: 768px) {
    .jw-news-list__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .jw-news-search {
        width: 100%;
    }

    .jw-news-list__link {
        grid-template-columns: minmax(0, 1fr) 24px;
        gap: 8px 12px;
        min-height: 88px;
        padding: 17px 6px;
    }

    .jw-news-list__link:hover {
        padding-left: 10px;
    }

    .jw-news-list__number {
        display: none;
    }

    .jw-news-list__subject {
        grid-column: 1;
        font-size: 16px;
        white-space: normal;
    }

    .jw-news-list__date {
        grid-column: 1;
        grid-row: 2;
        font-size: 13px;
        text-align: left;
    }

    .jw-news-list__arrow {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
    }

    .jw-news-view__header {
        padding: 0 60px 24px 0;
    }

    .jw-news-view__title {
        font-size: 25px;
        word-break: break-word;
    }

    .jw-news-view__share {
        width: 44px;
        height: 44px;
    }

    .jw-news-view__body {
        min-height: 320px;
        padding: 34px 4px 52px;
    }

    .jw-news-view__media {
        margin-bottom: 30px;
    }

    .jw-news-view__content {
        font-size: 16px;
        line-height: 1.85;
        word-break: break-word;
    }

    .jw-news-view__nav {
        grid-template-columns: 1fr;
    }

    .jw-news-view__nav-spacer {
        display: none;
    }

    .jw-news-view__nav-item {
        padding: 22px 4px;
        border-bottom: 1px solid var(--jw-news-line);
    }

    .jw-news-view__nav-item.is-next {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 520px) {
    .jw-news-search {
        flex-direction: column;
    }

    .jw-news-search__select {
        flex-basis: 48px;
    }

    .jw-news-list__paging .pg_page,
    .jw-news-list__paging .pg_current {
        min-width: 34px;
        height: 36px;
        padding: 0 5px;
        font-size: 14px;
    }

    .jw-news-view__actions {
        flex-wrap: wrap;
    }

    .jw-news-view__button {
        min-width: 92px;
    }
}

/* ==========================================================
   JEONGWOO FLOW - INQUIRY WRITE
   문의 게시판 글쓰기 전용
   기존 board.css 가장 아래에 추가하거나 별도 CSS로 연결
========================================================== */

.jw-inquiry-write{--jw-inquiry-green:#009b78; --jw-inquiry-green-dark:#006e59; --jw-inquiry-ink:#111917; --jw-inquiry-muted:#68736f; --jw-inquiry-line:#dce4e1; --jw-inquiry-soft:#f5f8f7; width:100%; max-width:1240px; margin:0 auto; padding:28px 0 40px; color:var(--jw-inquiry-ink); box-sizing:border-box;}
.jw-inquiry-write *{box-sizing:border-box;}
.jw-inquiry-write a{color:inherit; text-decoration:none;}
.jw-inquiry-write__head{margin-bottom:48px; text-align:center;}
.jw-inquiry-write__head>p{margin:0 0 12px; color:var(--jw-inquiry-green); font-size:12px; font-weight:800; letter-spacing:.12em;}
.jw-inquiry-write__head h2{margin:0; color:var(--jw-inquiry-ink); font-size:clamp(36px,4vw,54px); font-weight:800; line-height:1.15; letter-spacing:-.05em;}
.jw-inquiry-write__head>span{display:block; max-width:720px; margin:18px auto 0; color:var(--jw-inquiry-muted); font-size:16px; line-height:1.8; word-break:keep-all;}

.jw-inquiry-write form{width:100% !important; margin:0;}
.jw-inquiry-write__layout{display:grid; grid-template-columns:minmax(0,1fr) 340px; gap:28px; align-items:start;}
.jw-inquiry-write__form{padding:42px; border:1px solid rgba(17,25,23,.07); border-radius:22px; background:#fff; box-shadow:0 22px 60px rgba(17,25,23,.07);}
.jw-inquiry-write__grid{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px 20px;}
.jw-inquiry-write__field{display:flex; min-width:0; flex-direction:column;}
.jw-inquiry-write__field--full{grid-column:1 / -1;}
.jw-inquiry-write__field>label{display:block; margin-bottom:10px; color:var(--jw-inquiry-ink); font-size:14px; font-weight:700; line-height:1.4;}
.jw-inquiry-write__field>label strong{color:var(--jw-inquiry-green);}
.jw-inquiry-write__field input[type="text"],.jw-inquiry-write__field input[type="password"],.jw-inquiry-write__field input[type="email"],.jw-inquiry-write__field input[type="file"],.jw-inquiry-write__field select,.jw-inquiry-write__field textarea{width:100%; margin:0; border:1px solid var(--jw-inquiry-line); border-radius:10px; background:#fff; color:var(--jw-inquiry-ink); font-family:'Pretendard',sans-serif; font-size:15px; outline:0; transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease;}
.jw-inquiry-write__field input[type="text"],.jw-inquiry-write__field input[type="password"],.jw-inquiry-write__field input[type="email"],.jw-inquiry-write__field select{height:56px; padding:0 16px;}
.jw-inquiry-write__field input[readonly]{background:#f3f5f4; color:#78817e; cursor:default;}
.jw-inquiry-write__field textarea{min-height:220px; padding:16px; line-height:1.75; resize:vertical;}
.jw-inquiry-write__field input::placeholder,.jw-inquiry-write__field textarea::placeholder{color:#9da6a3;}
.jw-inquiry-write__field input:focus,.jw-inquiry-write__field select:focus,.jw-inquiry-write__field textarea:focus{border-color:var(--jw-inquiry-green); box-shadow:0 0 0 4px rgba(0,155,120,.09);}
.jw-inquiry-write__select{position:relative;}
.jw-inquiry-write__select::after{content:""; position:absolute; right:18px; top:50%; width:7px; height:7px; border-right:1px solid #66716e; border-bottom:1px solid #66716e; transform:translateY(-70%) rotate(45deg); pointer-events:none;}
.jw-inquiry-write__select select{padding-right:44px; appearance:none; -webkit-appearance:none;}

.jw-inquiry-write__files{display:grid; gap:10px;}
.jw-inquiry-write__file{padding:12px; border:1px solid var(--jw-inquiry-line); border-radius:10px; background:var(--jw-inquiry-soft);}
.jw-inquiry-write__file input[type="file"]{padding:8px; background:#fff;}
.jw-inquiry-write__file input[type="file"]::file-selector-button{height:34px; margin-right:12px; padding:0 14px; border:0; border-radius:6px; background:var(--jw-inquiry-green-dark); color:#fff; font-family:inherit; font-size:13px; font-weight:700; cursor:pointer;}
.jw-inquiry-write__current-file{display:flex; align-items:center; justify-content:space-between; gap:18px; margin-top:10px; padding-top:10px; border-top:1px solid var(--jw-inquiry-line); color:var(--jw-inquiry-muted); font-size:13px;}
.jw-inquiry-write__current-file span{min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.jw-inquiry-write__current-file label{display:flex; align-items:center; gap:7px; flex:0 0 auto; cursor:pointer;}
.jw-inquiry-write__help{margin:9px 0 0; color:#89938f; font-size:13px; line-height:1.5;}

.jw-inquiry-write__privacy{margin-top:28px; padding:20px 22px; border:1px solid var(--jw-inquiry-line); border-radius:12px; background:var(--jw-inquiry-soft);}
.jw-inquiry-write__privacy label{display:flex; align-items:center; gap:10px; color:var(--jw-inquiry-ink); font-size:14px; font-weight:700; cursor:pointer;}
.jw-inquiry-write__privacy input[type="checkbox"]{width:18px; height:18px; margin:0; accent-color:var(--jw-inquiry-green);}
.jw-inquiry-write__privacy label strong{color:var(--jw-inquiry-green);}
.jw-inquiry-write__privacy p{margin:9px 0 0 28px; color:var(--jw-inquiry-muted); font-size:12px; line-height:1.6;}

.jw-inquiry-write__captcha{margin-top:20px; padding:20px 22px; border:1px solid var(--jw-inquiry-line); border-radius:12px; background:#fff;}
.jw-inquiry-write__captcha>strong{display:block; margin-bottom:12px; color:var(--jw-inquiry-ink); font-size:14px;}

.jw-inquiry-write__actions{display:flex; align-items:center; justify-content:flex-end; gap:10px; margin-top:28px;}
.jw-inquiry-write__button{display:inline-flex; align-items:center; justify-content:center; min-width:136px; height:54px; padding:0 22px; border:1px solid var(--jw-inquiry-line); border-radius:999px; font-family:'Pretendard',sans-serif; font-size:14px; font-weight:700; line-height:1; cursor:pointer; transition:transform .2s ease,background-color .2s ease,border-color .2s ease,color .2s ease,box-shadow .2s ease;}
.jw-inquiry-write__button--cancel{background:#fff; color:#505a57;}
.jw-inquiry-write__button--cancel:hover{border-color:#9aa5a1; color:var(--jw-inquiry-ink);}
.jw-inquiry-write__button--submit{min-width:178px; border-color:var(--jw-inquiry-green); background:var(--jw-inquiry-green); color:#fff; box-shadow:0 12px 26px rgba(0,155,120,.19);}
.jw-inquiry-write__button--submit:hover{transform:translateY(-2px); border-color:var(--jw-inquiry-green-dark); background:var(--jw-inquiry-green-dark);}
.jw-inquiry-write__button--submit:disabled{transform:none; opacity:.65; cursor:wait;}

.jw-inquiry-write__aside{position:sticky; top:120px; padding:34px 30px; border-radius:22px; background:linear-gradient(155deg,#103a31 0%,#09251f 100%); color:#fff; box-shadow:0 22px 58px rgba(7,35,29,.18);}
.jw-inquiry-write__aside>p{margin:0 0 16px; color:rgba(255,255,255,.52); font-size:11px; font-weight:800; letter-spacing:.14em;}
.jw-inquiry-write__aside h3{margin:0; color:#fff; font-size:30px; font-weight:800; line-height:1.28; letter-spacing:-.04em;}
.jw-inquiry-write__aside>span{display:block; margin-top:17px; color:rgba(255,255,255,.7); font-size:14px; line-height:1.75; word-break:keep-all;}
.jw-inquiry-write__aside dl{margin:28px 0 0; padding:16px 0 0; border-top:1px solid rgba(255,255,255,.14);}
.jw-inquiry-write__aside dl>div{padding:16px 0; border-bottom:1px solid rgba(255,255,255,.09);}
.jw-inquiry-write__aside dl>div:last-child{border-bottom:0;}
.jw-inquiry-write__aside dt{margin:0 0 6px; color:rgba(255,255,255,.48); font-size:11px; font-weight:700; letter-spacing:.08em;}
.jw-inquiry-write__aside dd{margin:0; color:#fff; font-size:14px; line-height:1.65; word-break:keep-all;}
.jw-inquiry-write__aside dd a{color:#fff;}

@media screen and (max-width:1024px){
    .jw-inquiry-write{padding-top:14px;}
    .jw-inquiry-write__head{margin-bottom:38px;}
    .jw-inquiry-write__layout{grid-template-columns:1fr;}
    .jw-inquiry-write__aside{position:relative; top:auto;}
}

@media screen and (max-width:767px){
    .jw-inquiry-write{padding:0 0 24px;}
    .jw-inquiry-write__head{margin-bottom:30px; text-align:left;}
    .jw-inquiry-write__head h2{font-size:34px;}
    .jw-inquiry-write__head>span{margin-top:13px; font-size:14px; word-break:normal;}
    .jw-inquiry-write__form{padding:24px 18px; border-radius:16px; box-shadow:0 12px 32px rgba(17,25,23,.06);}
    .jw-inquiry-write__grid{grid-template-columns:1fr; gap:18px;}
    .jw-inquiry-write__field--full{grid-column:auto;}
    .jw-inquiry-write__field input[type="text"],.jw-inquiry-write__field input[type="password"],.jw-inquiry-write__field input[type="email"],.jw-inquiry-write__field select{height:52px; padding:0 14px; font-size:14px;}
    .jw-inquiry-write__field textarea{min-height:180px; padding:14px; font-size:14px;}
    .jw-inquiry-write__privacy{margin-top:22px; padding:17px 16px;}
    .jw-inquiry-write__privacy label{align-items:flex-start; font-size:13px; line-height:1.55;}
    .jw-inquiry-write__privacy p{margin-left:28px; font-size:11px;}
    .jw-inquiry-write__actions{display:grid; grid-template-columns:1fr 1fr; margin-top:22px;}
    .jw-inquiry-write__button{width:100%; min-width:0; height:52px; padding:0 14px;}
    .jw-inquiry-write__aside{padding:26px 22px; border-radius:16px;}
    .jw-inquiry-write__aside h3{font-size:26px;}
    .jw-inquiry-write__current-file{align-items:flex-start; flex-direction:column; gap:8px;}
}

/* ==========================================================
   JEONGWOO FLOW - INQUIRY WRITE
   문의 게시판 글쓰기 전용
   기존 board.css 가장 아래에 추가하거나 별도 CSS로 연결
========================================================== */

.jw-inquiry-write{--jw-inquiry-green:#009b78; --jw-inquiry-green-dark:#006e59; --jw-inquiry-ink:#111917; --jw-inquiry-muted:#68736f; --jw-inquiry-line:#dce4e1; --jw-inquiry-soft:#f5f8f7; width:100%; max-width:1240px; margin:0 auto; padding:28px 0 40px; color:var(--jw-inquiry-ink); box-sizing:border-box;}
.jw-inquiry-write *{box-sizing:border-box;}
.jw-inquiry-write a{color:inherit; text-decoration:none;}
.jw-inquiry-write__head{margin-bottom:48px; text-align:center;}
.jw-inquiry-write__head>p{margin:0 0 12px; color:var(--jw-inquiry-green); font-size:12px; font-weight:800; letter-spacing:.12em;}
.jw-inquiry-write__head h2{margin:0; color:var(--jw-inquiry-ink); font-size:clamp(36px,4vw,54px); font-weight:800; line-height:1.15; letter-spacing:-.05em;}
.jw-inquiry-write__head>span{display:block; max-width:720px; margin:18px auto 0; color:var(--jw-inquiry-muted); font-size:16px; line-height:1.8; word-break:keep-all;}

.jw-inquiry-write form{width:100% !important; margin:0;}
.jw-inquiry-write__layout{display:grid; grid-template-columns:minmax(0,1fr) 340px; gap:28px; align-items:start;}
.jw-inquiry-write__form{padding:42px; border:1px solid rgba(17,25,23,.07); border-radius:22px; background:#fff; box-shadow:0 22px 60px rgba(17,25,23,.07);}
.jw-inquiry-write__grid{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px 20px;}
.jw-inquiry-write__field{display:flex; min-width:0; flex-direction:column;}
.jw-inquiry-write__field--full{grid-column:1 / -1;}
.jw-inquiry-write__field>label{display:block; margin-bottom:10px; color:var(--jw-inquiry-ink); font-size:14px; font-weight:700; line-height:1.4;}
.jw-inquiry-write__field>label strong{color:var(--jw-inquiry-green);}
.jw-inquiry-write__field input[type="text"],.jw-inquiry-write__field input[type="password"],.jw-inquiry-write__field input[type="email"],.jw-inquiry-write__field input[type="file"],.jw-inquiry-write__field select,.jw-inquiry-write__field textarea{width:100%; margin:0; border:1px solid var(--jw-inquiry-line); border-radius:10px; background:#fff; color:var(--jw-inquiry-ink); font-family:'Pretendard',sans-serif; font-size:15px; outline:0; transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease;}
.jw-inquiry-write__field input[type="text"],.jw-inquiry-write__field input[type="password"],.jw-inquiry-write__field input[type="email"],.jw-inquiry-write__field select{height:56px; padding:0 16px;}
.jw-inquiry-write__field input[readonly]{background:#f3f5f4; color:#78817e; cursor:default;}
.jw-inquiry-write__field textarea{min-height:220px; padding:16px; line-height:1.75; resize:vertical;}
.jw-inquiry-write__field input::placeholder,.jw-inquiry-write__field textarea::placeholder{color:#9da6a3;}
.jw-inquiry-write__field input:focus,.jw-inquiry-write__field select:focus,.jw-inquiry-write__field textarea:focus{border-color:var(--jw-inquiry-green); box-shadow:0 0 0 4px rgba(0,155,120,.09);}
.jw-inquiry-write__select{position:relative;}
.jw-inquiry-write__select::after{content:""; position:absolute; right:18px; top:50%; width:7px; height:7px; border-right:1px solid #66716e; border-bottom:1px solid #66716e; transform:translateY(-70%) rotate(45deg); pointer-events:none;}
.jw-inquiry-write__select select{padding-right:44px; appearance:none; -webkit-appearance:none;}

.jw-inquiry-write__files{display:grid; gap:10px;}
.jw-inquiry-write__file{padding:12px; border:1px solid var(--jw-inquiry-line); border-radius:10px; background:var(--jw-inquiry-soft);}
.jw-inquiry-write__file input[type="file"]{padding:8px; background:#fff;}
.jw-inquiry-write__file input[type="file"]::file-selector-button{height:34px; margin-right:12px; padding:0 14px; border:0; border-radius:6px; background:var(--jw-inquiry-green-dark); color:#fff; font-family:inherit; font-size:13px; font-weight:700; cursor:pointer;}
.jw-inquiry-write__current-file{display:flex; align-items:center; justify-content:space-between; gap:18px; margin-top:10px; padding-top:10px; border-top:1px solid var(--jw-inquiry-line); color:var(--jw-inquiry-muted); font-size:13px;}
.jw-inquiry-write__current-file span{min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.jw-inquiry-write__current-file label{display:flex; align-items:center; gap:7px; flex:0 0 auto; cursor:pointer;}
.jw-inquiry-write__help{margin:9px 0 0; color:#89938f; font-size:13px; line-height:1.5;}

.jw-inquiry-write__privacy{margin-top:28px; padding:20px 22px; border:1px solid var(--jw-inquiry-line); border-radius:12px; background:var(--jw-inquiry-soft);}
.jw-inquiry-write__privacy label{display:flex; align-items:center; gap:10px; color:var(--jw-inquiry-ink); font-size:14px; font-weight:700; cursor:pointer;}
.jw-inquiry-write__privacy input[type="checkbox"]{width:18px; height:18px; margin:0; accent-color:var(--jw-inquiry-green);}
.jw-inquiry-write__privacy label strong{color:var(--jw-inquiry-green);}
.jw-inquiry-write__privacy p{margin:9px 0 0 28px; color:var(--jw-inquiry-muted); font-size:12px; line-height:1.6;}

.jw-inquiry-write__captcha{margin-top:20px; padding:20px 22px; border:1px solid var(--jw-inquiry-line); border-radius:12px; background:#fff;}
.jw-inquiry-write__captcha>strong{display:block; margin-bottom:12px; color:var(--jw-inquiry-ink); font-size:14px;}

.jw-inquiry-write__actions{display:flex; align-items:center; justify-content:flex-end; gap:10px; margin-top:28px;}
.jw-inquiry-write__button{display:inline-flex; align-items:center; justify-content:center; min-width:136px; height:54px; padding:0 22px; border:1px solid var(--jw-inquiry-line); border-radius:999px; font-family:'Pretendard',sans-serif; font-size:14px; font-weight:700; line-height:1; cursor:pointer; transition:transform .2s ease,background-color .2s ease,border-color .2s ease,color .2s ease,box-shadow .2s ease;}
.jw-inquiry-write__button--cancel{background:#fff; color:#505a57;}
.jw-inquiry-write__button--cancel:hover{border-color:#9aa5a1; color:var(--jw-inquiry-ink);}
.jw-inquiry-write__button--submit{min-width:178px; border-color:var(--jw-inquiry-green); background:var(--jw-inquiry-green); color:#fff; box-shadow:0 12px 26px rgba(0,155,120,.19);}
.jw-inquiry-write__button--submit:hover{transform:translateY(-2px); border-color:var(--jw-inquiry-green-dark); background:var(--jw-inquiry-green-dark);}
.jw-inquiry-write__button--submit:disabled{transform:none; opacity:.65; cursor:wait;}

.jw-inquiry-write__aside{position:sticky; top:120px; padding:34px 30px; border-radius:22px; background:linear-gradient(155deg,#103a31 0%,#09251f 100%); color:#fff; box-shadow:0 22px 58px rgba(7,35,29,.18);}
.jw-inquiry-write__aside>p{margin:0 0 16px; color:rgba(255,255,255,.52); font-size:11px; font-weight:800; letter-spacing:.14em;}
.jw-inquiry-write__aside h3{margin:0; color:#fff; font-size:30px; font-weight:800; line-height:1.28; letter-spacing:-.04em;}
.jw-inquiry-write__aside>span{display:block; margin-top:17px; color:rgba(255,255,255,.7); font-size:14px; line-height:1.75; word-break:keep-all;}
.jw-inquiry-write__aside dl{margin:28px 0 0; padding:16px 0 0; border-top:1px solid rgba(255,255,255,.14);}
.jw-inquiry-write__aside dl>div{padding:16px 0; border-bottom:1px solid rgba(255,255,255,.09);}
.jw-inquiry-write__aside dl>div:last-child{border-bottom:0;}
.jw-inquiry-write__aside dt{margin:0 0 6px; color:rgba(255,255,255,.48); font-size:11px; font-weight:700; letter-spacing:.08em;}
.jw-inquiry-write__aside dd{margin:0; color:#fff; font-size:14px; line-height:1.65; word-break:keep-all;}
.jw-inquiry-write__aside dd a{color:#fff;}

@media screen and (max-width:1024px){
    .jw-inquiry-write{padding-top:14px;}
    .jw-inquiry-write__head{margin-bottom:38px;}
    .jw-inquiry-write__layout{grid-template-columns:1fr;}
    .jw-inquiry-write__aside{position:relative; top:auto;}
}

@media screen and (max-width:767px){
    .jw-inquiry-write{padding:0 0 24px;}
    .jw-inquiry-write__head{margin-bottom:30px; text-align:left;}
    .jw-inquiry-write__head h2{font-size:34px;}
    .jw-inquiry-write__head>span{margin-top:13px; font-size:14px; word-break:normal;}
    .jw-inquiry-write__form{padding:24px 18px; border-radius:16px; box-shadow:0 12px 32px rgba(17,25,23,.06);}
    .jw-inquiry-write__grid{grid-template-columns:1fr; gap:18px;}
    .jw-inquiry-write__field--full{grid-column:auto;}
    .jw-inquiry-write__field input[type="text"],.jw-inquiry-write__field input[type="password"],.jw-inquiry-write__field input[type="email"],.jw-inquiry-write__field select{height:52px; padding:0 14px; font-size:14px;}
    .jw-inquiry-write__field textarea{min-height:180px; padding:14px; font-size:14px;}
    .jw-inquiry-write__privacy{margin-top:22px; padding:17px 16px;}
    .jw-inquiry-write__privacy label{align-items:flex-start; font-size:13px; line-height:1.55;}
    .jw-inquiry-write__privacy p{margin-left:28px; font-size:11px;}
    .jw-inquiry-write__actions{display:grid; grid-template-columns:1fr 1fr; margin-top:22px;}
    .jw-inquiry-write__button{width:100%; min-width:0; height:52px; padding:0 14px;}
    .jw-inquiry-write__aside{padding:26px 22px; border-radius:16px;}
    .jw-inquiry-write__aside h3{font-size:26px;}
    .jw-inquiry-write__current-file{align-items:flex-start; flex-direction:column; gap:8px;}
}

/* CAPTCHA */
.jw-inquiry-write__captcha{margin-top:20px; padding:20px 22px; border:1px solid var(--jw-inquiry-line); border-radius:12px; background:#fff;}
.jw-inquiry-write__captcha>strong{display:block; margin:0; color:var(--jw-inquiry-ink); font-size:14px; font-style:normal; font-weight:700;}
.jw-inquiry-write__captcha>strong em{color:var(--jw-inquiry-green); font-style:normal;}
.jw-inquiry-write__captcha>p{margin:7px 0 14px; color:var(--jw-inquiry-muted); font-size:12px; line-height:1.5;}
.jw-inquiry-write__captcha-box{display:flex; align-items:center; flex-wrap:wrap; gap:8px;}
.jw-inquiry-write__captcha #captcha{display:flex; align-items:center; flex-wrap:wrap; gap:8px; width:auto; margin:0; padding:0; border:0; background:transparent;}
.jw-inquiry-write__captcha #captcha_img{display:block; width:160px; height:60px; margin:0; border:1px solid var(--jw-inquiry-line); border-radius:8px; object-fit:cover;}
.jw-inquiry-write__captcha #captcha_key{width:150px; height:50px; margin:0; padding:0 14px; border:1px solid var(--jw-inquiry-line); border-radius:8px; background:#fff; color:var(--jw-inquiry-ink); font-family:'Pretendard',sans-serif; font-size:16px; font-weight:700; text-align:center; outline:0;}
.jw-inquiry-write__captcha #captcha_key:focus{border-color:var(--jw-inquiry-green); box-shadow:0 0 0 4px rgba(0,155,120,.09);}
.jw-inquiry-write__captcha #captcha_mp3,.jw-inquiry-write__captcha #captcha_reload{display:inline-flex; align-items:center; justify-content:center; width:50px; height:50px; margin:0; padding:0; border:1px solid var(--jw-inquiry-line); border-radius:8px; background:var(--jw-inquiry-soft); color:var(--jw-inquiry-ink); font-size:0; cursor:pointer;}
.jw-inquiry-write__captcha #captcha_mp3:hover,.jw-inquiry-write__captcha #captcha_reload:hover{border-color:var(--jw-inquiry-green); color:var(--jw-inquiry-green);}
.jw-inquiry-write__captcha #captcha_mp3::before{content:"음성"; font-size:12px; font-weight:700;}
.jw-inquiry-write__captcha #captcha_reload::before{content:"새로고침"; font-size:11px; font-weight:700;}
.jw-inquiry-write__captcha .sound_only{position:absolute!important; width:1px!important; height:1px!important; margin:-1px!important; padding:0!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important;}

@media screen and (max-width:767px){
    .jw-inquiry-write__captcha{padding:17px 16px;}
    .jw-inquiry-write__captcha-box,.jw-inquiry-write__captcha #captcha{align-items:stretch;}
    .jw-inquiry-write__captcha #captcha_img{width:145px; height:54px;}
    .jw-inquiry-write__captcha #captcha_key{flex:1 1 120px; width:auto; min-width:120px; height:54px;}
    .jw-inquiry-write__captcha #captcha_mp3,.jw-inquiry-write__captcha #captcha_reload{height:44px;}
}

/* 문의 상세 */
.inquiry-view .view-title-bar{padding-top:10px;}
.inquiry-view__type{display:inline-flex; align-items:center; min-height:32px; margin-bottom:16px; padding:0 13px; border-radius:999px; background:#edf8f4; color:#008d6b; font-size:13px; font-weight:700;}
.inquiry-view__info{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); margin:0; border-bottom:1px solid #e1e5ec;}
.inquiry-view__info-item{display:grid; grid-template-columns:120px minmax(0,1fr); min-height:64px; margin:0; border-top:1px solid #e1e5ec;}
.inquiry-view__info-item:nth-child(odd){border-right:1px solid #e1e5ec;}
.inquiry-view__info-item dt,.inquiry-view__info-item dd{display:flex; align-items:center; margin:0; padding:14px 18px; box-sizing:border-box;}
.inquiry-view__info-item dt{background:#f7f9f8; color:#303936; font-size:14px; font-weight:700;}
.inquiry-view__info-item dd{min-width:0; color:#202825; font-size:15px; overflow-wrap:anywhere;}
.inquiry-view__info-item dd a{color:inherit; text-decoration:none;}
.inquiry-view__info-item dd a:hover{color:#008d6b;}
.inquiry-view__content{min-height:280px; padding:42px 18px 54px;}
.inquiry-view__content h4,.inquiry-view__files h4{margin:0 0 22px; color:#111917; font-size:18px; font-weight:800;}
.inquiry-view__content-body{font-size:16px; line-height:1.9; color:#242c29; overflow-wrap:break-word;}
.inquiry-view__files{padding:26px 18px; border-bottom:1px solid #e1e5ec;}
.inquiry-view__files ul{display:grid; gap:8px; margin:0; padding:0; list-style:none;}
.inquiry-view__files li{margin:0;}
.inquiry-view__files a{display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:50px; padding:0 16px; border:1px solid #dce4e1; background:#f8faf9; color:#303936; text-decoration:none; box-sizing:border-box;}
.inquiry-view__files a:hover{border-color:#008d6b; color:#008d6b;}
.inquiry-view__files a span{min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.inquiry-view__files a em{flex:0 0 auto; font-size:13px; font-style:normal; font-weight:700;}

@media screen and (max-width:767px){
    .inquiry-view__info{grid-template-columns:1fr;}
    .inquiry-view__info-item:nth-child(odd){border-right:0;}
    .inquiry-view__info-item{grid-template-columns:96px minmax(0,1fr); min-height:58px;}
    .inquiry-view__info-item dt,.inquiry-view__info-item dd{padding:12px 14px;}
    .inquiry-view__content{padding:34px 4px 44px;}
    .inquiry-view__files{padding:24px 4px;}
}

/* ==========================================================
   JEONGWOO FLOW PRODUCT BOARD V2
   제품 목록 / 상세 / 등록 전용
========================================================== */

.jw-product-list,
.jw-product-view,
.jw-product-write{
    --jw-product-green:var(--green,#00a84f);
    --jw-product-green-dark:#08723e;
    --jw-product-deep:#0b2d25;
    --jw-product-ink:#111a17;
    --jw-product-text:#4f5b57;
    --jw-product-muted:#7c8783;
    --jw-product-line:#dfe6e2;
    --jw-product-soft:#f4f8f5;
    width:100%;
    max-width:1280px;
    margin:0 auto;
    color:var(--jw-product-ink);
    font-family:inherit;
}

.jw-product-list *,
.jw-product-view *,
.jw-product-write *{
    box-sizing:border-box;
}

.jw-product-list a,
.jw-product-view a,
.jw-product-write a{
    color:inherit;
    text-decoration:none;
}

.jw-product-sr-only{
    position:absolute!important;
    width:1px!important;
    height:1px!important;
    margin:-1px!important;
    padding:0!important;
    overflow:hidden!important;
    clip:rect(0,0,0,0)!important;
    white-space:nowrap!important;
    border:0!important;
}

.jw-product-eyebrow{
    display:flex;
    align-items:center;
    gap:14px;
    margin:0 0 22px;
    color:var(--jw-product-green);
    font-size:12px;
    font-weight:800;
    line-height:1;
    letter-spacing:.12em;
}

.jw-product-eyebrow::after{
    content:"";
    width:56px;
    height:2px;
    background:var(--jw-product-green);
}


/* LIST */

.jw-product-list{
    padding:35px 0 80px;
}

.jw-product-list__header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:50px;
    margin-bottom:54px;
}

.jw-product-list__header>div{
    max-width:760px;
}

.jw-product-list__header h2{
    margin:0;
    color:var(--jw-product-ink);
    font-size:clamp(42px,4.2vw,62px);
    font-weight:800;
    line-height:1.16;
    letter-spacing:-.06em;
}

.jw-product-list__intro{
    max-width:650px;
    margin:24px 0 0;
    color:var(--jw-product-text);
    font-size:16px;
    line-height:1.85;
    letter-spacing:-.025em;
    word-break:keep-all;
}

.jw-product-admin-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    min-width:116px;
    height:48px;
    padding:0 22px;
    border:1px solid var(--jw-product-deep);
    background:var(--jw-product-deep);
    color:#fff!important;
    font-size:14px;
    font-weight:750;
    transition:background-color .2s ease,border-color .2s ease,transform .2s ease;
}

.jw-product-admin-button:hover{
    border-color:var(--jw-product-green);
    background:var(--jw-product-green);
    transform:translateY(-2px);
}

.jw-product-category{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:56px;
    padding-bottom:4px;
    overflow-x:auto;
    scrollbar-width:none;
}

.jw-product-category::-webkit-scrollbar{
    display:none;
}

.jw-product-category__link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    min-height:44px;
    padding:0 20px;
    border:1px solid var(--jw-product-line);
    border-radius:999px;
    background:#fff;
    color:#59635f!important;
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
    transition:background-color .2s ease,border-color .2s ease,color .2s ease;
}

.jw-product-category__link:hover,
.jw-product-category__link.is-active{
    border-color:var(--jw-product-deep);
    background:var(--jw-product-deep);
    color:#fff!important;
}

.jw-product-list__utility{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    margin-bottom:30px;
    padding-top:25px;
    border-top:1px solid var(--jw-product-ink);
}

.jw-product-list__count{
    margin:0;
    color:var(--jw-product-muted);
    font-size:14px;
}

.jw-product-list__count strong{
    color:var(--jw-product-green);
    font-weight:800;
}

.jw-product-search{
    display:flex;
    width:min(100%,470px);
    height:48px;
}

.jw-product-search__select{
    position:relative;
    flex:0 0 112px;
}

.jw-product-search__select::after{
    content:"";
    position:absolute;
    top:50%;
    right:15px;
    width:7px;
    height:7px;
    border-right:1px solid #65706c;
    border-bottom:1px solid #65706c;
    transform:translateY(-70%) rotate(45deg);
    pointer-events:none;
}

.jw-product-search select{
    width:100%;
    height:48px;
    padding:0 36px 0 14px;
    border:1px solid var(--jw-product-line);
    border-right:0;
    border-radius:0;
    background:#fff;
    color:var(--jw-product-text);
    font-family:inherit;
    font-size:14px;
    appearance:none;
    -webkit-appearance:none;
    outline:0;
}

.jw-product-search__field{
    display:flex;
    flex:1 1 auto;
    min-width:0;
    border:1px solid var(--jw-product-line);
    background:#fff;
}

.jw-product-search__field:focus-within,
.jw-product-search__select:focus-within select{
    border-color:var(--jw-product-green);
}

.jw-product-search input{
    flex:1 1 auto;
    min-width:0;
    height:46px;
    padding:0 14px;
    border:0;
    background:transparent;
    color:var(--jw-product-ink);
    font-family:inherit;
    font-size:14px;
    outline:0;
}

.jw-product-search input::placeholder{
    color:#9aa4a0;
}

.jw-product-search button{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 48px;
    width:48px;
    height:46px;
    padding:0;
    border:0;
    background:var(--jw-product-deep);
    color:#fff;
    cursor:pointer;
    transition:background-color .2s ease;
}

.jw-product-search button:hover{
    background:var(--jw-product-green);
}

.jw-product-search button svg{
    width:20px;
    height:20px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
}

.jw-product-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:68px 28px;
}

.jw-product-card{
    display:block;
    min-width:0;
}

.jw-product-card__media{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    aspect-ratio:1 / 1;
    overflow:hidden;
    border:1px solid #edf1ef;
    background:var(--jw-product-soft);
}

.jw-product-card__media::after{
    content:"";
    position:absolute;
    inset:0;
    border:1px solid transparent;
    pointer-events:none;
    transition:border-color .25s ease;
}

.jw-product-card__media img{
    display:block;
    width:100%;
    height:100%;
    padding:10%;
    object-fit:contain;
    transition:transform .42s cubic-bezier(.2,.7,.2,1);
}

.jw-product-card__category{
    position:absolute;
    z-index:2;
    top:18px;
    left:18px;
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 12px;
    border-radius:999px;
    background:rgba(255,255,255,.92);
    color:var(--jw-product-green);
    font-size:12px;
    font-weight:800;
    backdrop-filter:blur(8px);
}

.jw-product-card__no-image{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:9px;
    width:100%;
    height:100%;
    color:#8c9692;
    font-size:14px;
}

.jw-product-card__no-image span{
    color:var(--jw-product-green);
    font-size:11px;
    font-weight:800;
    letter-spacing:.12em;
}

.jw-product-card__body{
    padding-top:22px;
}

.jw-product-card__code{
    margin:0 0 8px;
    color:var(--jw-product-green);
    font-size:12px;
    font-weight:800;
    letter-spacing:.06em;
}

.jw-product-card__heading{
    display:grid;
    grid-template-columns:minmax(0,1fr) 34px;
    gap:18px;
    align-items:start;
}

.jw-product-card__heading h3{
    margin:0;
    color:var(--jw-product-ink);
    font-size:22px;
    font-weight:800;
    line-height:1.4;
    letter-spacing:-.045em;
    word-break:keep-all;
    transition:color .2s ease;
}

.jw-product-card__arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border:1px solid var(--jw-product-line);
    border-radius:50%;
    color:#69736f;
    font-size:17px;
    transition:background-color .2s ease,border-color .2s ease,color .2s ease,transform .2s ease;
}

.jw-product-card__summary{
    min-height:48px;
    margin:16px 0 0;
    color:var(--jw-product-muted);
    font-size:14px;
    line-height:1.7;
    letter-spacing:-.02em;
    word-break:keep-all;
}

@media (hover:hover){
    .jw-product-card:hover .jw-product-card__media::after{
        border-color:var(--jw-product-green);
    }

    .jw-product-card:hover .jw-product-card__media img{
        transform:scale(1.045);
    }

    .jw-product-card:hover .jw-product-card__heading h3{
        color:var(--jw-product-green);
    }

    .jw-product-card:hover .jw-product-card__arrow{
        border-color:var(--jw-product-green);
        background:var(--jw-product-green);
        color:#fff;
        transform:rotate(45deg);
    }
}

.jw-product-empty{
    padding:100px 20px;
    border-top:1px solid var(--jw-product-line);
    border-bottom:1px solid var(--jw-product-line);
    color:var(--jw-product-muted);
    font-size:16px;
    text-align:center;
}

.jw-product-paging{
    margin-top:64px;
}

.jw-product-paging .pg_wrap{
    display:block;
    float:none;
    margin:0;
    text-align:center;
}

.jw-product-paging .pg{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:4px;
}

.jw-product-paging .pg_page,
.jw-product-paging .pg_current{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:40px;
    height:40px;
    margin:0;
    padding:0 8px;
    border:0;
    border-radius:50%;
    background:transparent;
    color:#53605b;
    font-size:14px;
    font-weight:700;
    text-indent:0;
}

.jw-product-paging .pg_page:hover{
    background:var(--jw-product-soft);
    color:var(--jw-product-green);
}

.jw-product-paging .pg_current{
    background:var(--jw-product-deep);
    color:#fff;
}


/* VIEW */

.jw-product-view{
    padding:28px 0 90px;
}

.jw-product-view__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    margin-bottom:36px;
    padding-bottom:18px;
    border-bottom:1px solid var(--jw-product-line);
}

.jw-product-view__back{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#4e5a56!important;
    font-size:14px;
    font-weight:700;
}

.jw-product-view__back svg{
    width:19px;
    height:19px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.jw-product-view__back:hover{
    color:var(--jw-product-green)!important;
}

.jw-product-view__category{
    margin:0;
    color:var(--jw-product-green);
    font-size:13px;
    font-weight:800;
}

.jw-product-view__hero{
    display:grid;
    grid-template-columns:minmax(0,1.08fr) minmax(390px,.72fr);
    gap:72px;
    align-items:start;
}

.jw-product-view__main-image,
.jw-product-view__summary{
    min-width:0;
}

.jw-product-view__main-image{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    aspect-ratio:1 / 1;
    overflow:hidden;
    border:1px solid #edf1ef;
    background:var(--jw-product-soft);
}

.jw-product-view__main-image img{
    display:block;
    width:100%;
    height:100%;
    padding:8%;
    object-fit:contain;
}

.jw-product-view__no-image{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:10px;
    width:100%;
    height:100%;
    color:#8b9591;
    font-size:15px;
}

.jw-product-view__no-image span{
    color:var(--jw-product-green);
    font-size:12px;
    font-weight:800;
    letter-spacing:.12em;
}

.jw-product-view__summary{
    position:sticky;
    top:125px;
    padding-top:20px;
}

.jw-product-view__summary h1{
    margin:0;
    color:var(--jw-product-ink);
    font-size:clamp(38px,3.7vw,56px);
    font-weight:800;
    line-height:1.16;
    letter-spacing:-.06em;
    word-break:keep-all;
}

.jw-product-view__code{
    margin:14px 0 0;
    color:var(--jw-product-green);
    font-size:17px;
    font-weight:800;
    line-height:1.5;
    letter-spacing:.04em;
}

.jw-product-view__description{
    margin:29px 0 0;
    color:var(--jw-product-text);
    font-size:16px;
    line-height:1.85;
    letter-spacing:-.025em;
    word-break:keep-all;
}

.jw-product-view__scope{
    margin-top:24px;
    padding:19px 21px 20px;
    border-left:3px solid var(--jw-product-green);
    background:var(--jw-product-soft);
}

.jw-product-view__scope strong{
    display:block;
    margin-bottom:9px;
    color:var(--jw-product-ink);
    font-size:13px;
    font-weight:800;
    line-height:1.4;
}

.jw-product-view__scope>div{
    color:#53605b;
    font-size:14px;
    line-height:1.75;
    letter-spacing:-.02em;
    overflow-wrap:break-word;
    word-break:keep-all;
}

.jw-product-view__spec{
    margin:28px 0 0;
    border-top:1px solid var(--jw-product-ink);
}

.jw-product-view__spec>div{
    display:grid;
    grid-template-columns:115px minmax(0,1fr);
    gap:20px;
    min-height:62px;
    padding:18px 0;
    border-bottom:1px solid var(--jw-product-line);
}

.jw-product-view__spec dt{
    color:var(--jw-product-muted);
    font-size:13px;
    font-weight:600;
}

.jw-product-view__spec dd{
    margin:0;
    color:var(--jw-product-ink);
    font-size:14px;
    font-weight:750;
}

.jw-product-view__cta{
    margin-top:34px;
}

.jw-product-view__inquiry{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    width:100%;
    min-height:56px;
    padding:0 20px;
    border:1px solid var(--jw-product-deep);
    background:var(--jw-product-deep);
    color:#fff!important;
    font-size:14px;
    font-weight:750;
    transition:background-color .2s ease,border-color .2s ease;
}

.jw-product-view__inquiry svg{
    width:20px;
    height:20px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.jw-product-view__inquiry:hover{
    border-color:var(--jw-product-green);
    background:var(--jw-product-green);
}

.jw-product-view__detail{
    margin-top:125px;
    padding-top:70px;
    border-top:1px solid var(--jw-product-ink);
}

.jw-product-view__section-head{
    display:grid;
    gap:40px;
    margin-bottom:55px;
}

.jw-product-view__section-head p{
    margin:8px 0 0;
    color:var(--jw-product-green);
    font-size:11px;
    font-weight:800;
    letter-spacing:.12em;
}

.jw-product-view__section-head h2{
    margin:0;
    color:var(--jw-product-ink);
    font-size:36px;
    font-weight:800;
    line-height:1.3;
    letter-spacing:-.05em;
}

.jw-product-view__information{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
    width:100%;
    max-width:none;
    margin:0;
}

.jw-product-view__block{
    min-width:0;
    padding:30px 30px 32px;
    border:1px solid var(--jw-product-line);
    background:#fff;
}

.jw-product-view__block.is-wide{
    grid-column:1 / -1;
}

.jw-product-view__block.is-caution{
    background:#fbf8f3;
}

.jw-product-view__block h3{
    position:relative;
    margin:0 0 21px;
    padding-bottom:16px;
    color:var(--jw-product-ink);
    font-size:19px;
    font-weight:800;
    line-height:1.4;
    letter-spacing:-.035em;
}

.jw-product-view__block h3::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:38px;
    height:2px;
    background:var(--jw-product-green);
}

.jw-product-view__block>div{
    color:#45514c;
    font-size:15px;
    line-height:1.85;
    letter-spacing:-.02em;
    overflow-wrap:break-word;
    word-break:keep-all;
}

.jw-product-view__properties{
    width:100%;
    overflow-x:auto;
    border-radius:2px;
    scrollbar-width:thin;
    scrollbar-color:#b9c5c0 #f1f4f2;
}

.jw-product-view__properties table,
.jw-product-view__properties table.natbl{
    width:100%!important;
    min-width:760px;
    margin:0!important;
    border:1px solid var(--jw-product-line)!important;
    border-collapse:separate!important;
    border-spacing:0!important;
    table-layout:fixed;
    background:#fff;
}

.jw-product-view__properties table tbody,
.jw-product-view__properties table tr{
    border:0!important;
}

.jw-product-view__properties table th,
.jw-product-view__properties table td{
    height:auto!important;
    padding:18px 20px!important;
    border-top:0!important;
    border-left:0!important;
    border-right:1px solid var(--jw-product-line)!important;
    border-bottom:1px solid var(--jw-product-line)!important;
    background:#fff;
    color:#3f4b47;
    font-family:inherit!important;
    font-size:14px!important;
    font-weight:400;
    line-height:1.7!important;
    letter-spacing:-.02em;
    text-align:left!important;
    vertical-align:middle!important;
    word-break:keep-all;
    overflow-wrap:break-word;
}

.jw-product-view__properties table tr:last-child>th,
.jw-product-view__properties table tr:last-child>td{
    border-bottom:0!important;
}

.jw-product-view__properties table tr>th:last-child,
.jw-product-view__properties table tr>td:last-child{
    border-right:0!important;
}

.jw-product-view__properties table th,
.jw-product-view__properties table td:nth-child(odd){
    width:16%;
    background:#f3f7f5!important;
    color:var(--jw-product-ink);
    font-weight:800;
}

.jw-product-view__properties table td:nth-child(even){
    width:34%;
}

.jw-product-view__properties table p{
    margin:5px 0 0!important;
}

.jw-product-view__properties table p:first-child{
    margin-top:0!important;
}

.jw-product-view__properties table br+p{
    margin-top:5px!important;
}

.jw-product-view__properties img{
    max-width:100%;
    height:auto;
}

.jw-product-view__empty{
    width:100%;
    max-width:none;
    margin:0;
    padding:80px 20px;
    border:1px solid var(--jw-product-line);
    color:var(--jw-product-muted);
    text-align:center;
}

.jw-product-view__nav{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:50px;
    margin-top:110px;
    padding-top:34px;
    border-top:1px solid var(--jw-product-line);
}

.jw-product-view__nav-item{
    display:flex;
    flex-direction:column;
    min-width:0;
}

.jw-product-view__nav-item.is-next{
    align-items:flex-end;
    text-align:right;
}

.jw-product-view__nav-item span{
    color:var(--jw-product-green);
    font-size:10px;
    font-weight:800;
    letter-spacing:.12em;
}

.jw-product-view__nav-item strong{
    display:block;
    width:100%;
    margin-top:10px;
    overflow:hidden;
    color:var(--jw-product-ink);
    font-size:18px;
    font-weight:750;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.jw-product-view__nav-item small{
    margin-top:5px;
    color:var(--jw-product-muted);
    font-size:12px;
}

.jw-product-view__nav-item:hover strong{
    color:var(--jw-product-green);
}

.jw-product-view__admin{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:55px;
}

.jw-product-view__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:96px;
    height:46px;
    padding:0 20px;
    border:1px solid var(--jw-product-line);
    background:#fff;
    color:#3f4a46!important;
    font-size:14px;
    font-weight:700;
}

.jw-product-view__button:hover{
    border-color:var(--jw-product-green);
    color:var(--jw-product-green)!important;
}

.jw-product-view__button.is-list{
    border-color:var(--jw-product-deep);
    background:var(--jw-product-deep);
    color:#fff!important;
}

.jw-product-view__button.is-list:hover{
    border-color:var(--jw-product-green);
    background:var(--jw-product-green);
}

.jw-product-view__button.is-delete:hover{
    border-color:#b42318;
    color:#b42318!important;
}


/* WRITE */

.jw-product-write{
    max-width:1080px;
    padding:30px 0 80px;
}

.jw-product-write__header{
    margin-bottom:48px;
}

.jw-product-write__header h2{
    margin:0;
    color:var(--jw-product-ink);
    font-size:clamp(38px,4vw,54px);
    font-weight:800;
    line-height:1.2;
    letter-spacing:-.055em;
}

.jw-product-write__header>p:last-child{
    max-width:720px;
    margin:20px 0 0;
    color:var(--jw-product-text);
    font-size:15px;
    line-height:1.8;
    word-break:keep-all;
}

.jw-product-write form{
    width:100%!important;
    margin:0;
}

.jw-product-write__panel{
    padding:42px;
    border:1px solid rgba(17,26,23,.08);
    border-radius:20px;
    background:#fff;
    box-shadow:0 22px 60px rgba(17,26,23,.06);
}

.jw-product-write__grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px 20px;
}

.jw-product-write__field{
    display:flex;
    min-width:0;
    flex-direction:column;
}

.jw-product-write__field--full{
    grid-column:1 / -1;
}

.jw-product-write__field>label{
    margin-bottom:10px;
    color:var(--jw-product-ink);
    font-size:14px;
    font-weight:750;
}

.jw-product-write__field>label strong{
    color:var(--jw-product-green);
}

.jw-product-write__field>label small{
    margin-left:5px;
    color:var(--jw-product-muted);
    font-size:11px;
    font-weight:600;
}

.jw-product-write input[type="text"],
.jw-product-write input[type="password"],
.jw-product-write select,
.jw-product-write textarea{
    width:100%;
    margin:0;
    border:1px solid var(--jw-product-line);
    border-radius:9px;
    background:#fff;
    color:var(--jw-product-ink);
    font-family:inherit;
    font-size:15px;
    outline:0;
    transition:border-color .2s ease,box-shadow .2s ease;
}

.jw-product-write input[type="text"],
.jw-product-write input[type="password"],
.jw-product-write select{
    height:54px;
    padding:0 15px;
}

.jw-product-write textarea{
    min-height:150px;
    padding:16px;
    line-height:1.8;
    resize:vertical;
}

.jw-product-write input:focus,
.jw-product-write select:focus,
.jw-product-write textarea:focus{
    border-color:var(--jw-product-green);
    box-shadow:0 0 0 4px rgba(0,168,79,.08);
}

.jw-product-write input::placeholder,
.jw-product-write textarea::placeholder{
    color:#9ca6a2;
}

.jw-product-write__select{
    position:relative;
}

.jw-product-write__select::after{
    content:"";
    position:absolute;
    top:50%;
    right:18px;
    width:7px;
    height:7px;
    border-right:1px solid #69736f;
    border-bottom:1px solid #69736f;
    transform:translateY(-70%) rotate(45deg);
    pointer-events:none;
}

.jw-product-write__select select{
    padding-right:45px;
    appearance:none;
    -webkit-appearance:none;
}

.jw-product-write__help{
    margin:8px 0 0;
    color:#89938f;
    font-size:12px;
    line-height:1.55;
}

.jw-product-write__image-upload{
    padding:17px;
    border:1px solid var(--jw-product-line);
    border-radius:11px;
    background:var(--jw-product-soft);
}

.jw-product-write__image-upload input[type="file"]{
    display:block;
    width:100%;
    min-height:50px;
    padding:8px;
    border:1px solid var(--jw-product-line);
    border-radius:8px;
    background:#fff;
    color:#53605b;
    font-family:inherit;
    font-size:13px;
}

.jw-product-write__image-upload input[type="file"]::file-selector-button{
    height:32px;
    margin-right:12px;
    padding:0 13px;
    border:0;
    border-radius:6px;
    background:var(--jw-product-deep);
    color:#fff;
    font-family:inherit;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}

.jw-product-write__current{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-top:12px;
    padding-top:12px;
    border-top:1px solid var(--jw-product-line);
    color:var(--jw-product-muted);
    font-size:12px;
}

.jw-product-write__current>span{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.jw-product-write__current label{
    display:flex;
    align-items:center;
    gap:6px;
    flex:0 0 auto;
    cursor:pointer;
}

.jw-product-write__current input{
    width:16px;
    height:16px;
    margin:0;
    accent-color:var(--jw-product-green);
}

.jw-product-write__actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:9px;
    margin-top:28px;
}

.jw-product-write__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:120px;
    height:50px;
    padding:0 22px;
    border:1px solid var(--jw-product-line);
    border-radius:999px;
    background:#fff;
    color:#4f5b57!important;
    font-family:inherit;
    font-size:14px;
    font-weight:750;
    cursor:pointer;
}

.jw-product-write__button:hover{
    border-color:#98a39f;
    color:var(--jw-product-ink)!important;
}

.jw-product-write__button.is-submit{
    min-width:150px;
    border-color:var(--jw-product-green);
    background:var(--jw-product-green);
    color:#fff!important;
    box-shadow:0 12px 26px rgba(0,168,79,.18);
}

.jw-product-write__button.is-submit:hover{
    border-color:var(--jw-product-green-dark);
    background:var(--jw-product-green-dark);
}

.jw-product-write__button:disabled{
    opacity:.65;
    cursor:wait;
}




.jw-product-write textarea.jw-product-write__editor-fallback{
    min-height:320px;
    padding:16px;
    border:1px solid var(--jw-product-line);
    border-radius:9px;
    background:#fff;
    color:var(--jw-product-ink);
    font-family:inherit;
    font-size:15px;
    line-height:1.8;
    resize:vertical;
}

.jw-product-write textarea.jw-product-write__editor-fallback:focus{
    border-color:var(--jw-product-green);
    box-shadow:0 0 0 4px rgba(0,168,79,.08);
    outline:0;
}

.jw-product-write__editor{
    width:100%;
    min-height:360px;
    overflow:hidden;
    border:1px solid var(--jw-product-line);
    border-radius:9px;
    background:#fff;
}

.jw-product-write__editor .cke,
.jw-product-write__editor .toastui-editor-defaultUI,
.jw-product-write__editor .smarteditor2,
.jw-product-write__editor iframe{
    width:100%!important;
    max-width:100%!important;
    border:0!important;
    border-radius:0!important;
}

.jw-product-write__editor .cke{
    box-shadow:none!important;
}

.jw-product-write__editor .cke_top,
.jw-product-write__editor .cke_bottom{
    border-color:var(--jw-product-line)!important;
    background:#f7f9f8!important;
}

.jw-product-write__editor .cke_contents{
    min-height:300px!important;
}

.jw-product-write__editor textarea{
    min-height:320px!important;
    border:0!important;
    border-radius:0!important;
    box-shadow:none!important;
}

.jw-product-write__editor:focus-within{
    border-color:var(--jw-product-green);
    box-shadow:0 0 0 4px rgba(0,168,79,.08);
}

/* RESPONSIVE */

@media screen and (max-width:1050px){
    .jw-product-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:55px 22px;
    }

    .jw-product-view__hero{
        grid-template-columns:minmax(0,1fr) minmax(340px,.78fr);
        gap:45px;
    }

    .jw-product-view__summary{
        top:100px;
    }
}

@media screen and (max-width:820px){
    .jw-product-list__header{
        align-items:flex-start;
        flex-direction:column;
        gap:28px;
    }

    .jw-product-list__utility{
        align-items:flex-start;
        flex-direction:column;
    }

    .jw-product-search{
        width:100%;
    }

    .jw-product-view__hero{
        grid-template-columns:1fr;
    }

    .jw-product-view__summary{
        position:relative;
        top:auto;
        padding-top:10px;
    }

    .jw-product-view__detail{
        margin-top:90px;
        padding-top:55px;
    }
}

@media screen and (max-width:640px){
    .jw-product-list{
        padding-top:15px;
        padding-bottom:60px;
    }

    .jw-product-list__header{
        margin-bottom:38px;
    }

    .jw-product-list__header h2{
        font-size:38px;
    }

    .jw-product-list__intro{
        margin-top:18px;
        font-size:14px;
        line-height:1.75;
        word-break:normal;
    }

    .jw-product-admin-button{
        width:100%;
    }

    .jw-product-category{
        margin-right:-18px;
        margin-bottom:38px;
    }

    .jw-product-category__link{
        min-height:40px;
        padding:0 16px;
        font-size:13px;
    }

    .jw-product-list__utility{
        gap:17px;
        margin-bottom:24px;
        padding-top:20px;
    }

    .jw-product-search{
        display:grid;
        grid-template-columns:100px minmax(0,1fr);
    }

    .jw-product-grid{
        grid-template-columns:1fr;
        gap:48px;
    }

    .jw-product-card__body{
        padding-top:18px;
    }

    .jw-product-card__heading h3{
        font-size:20px;
    }

    .jw-product-card__summary{
        min-height:0;
    }

    .jw-product-paging{
        margin-top:48px;
    }

    .jw-product-view{
        padding-top:12px;
        padding-bottom:65px;
    }

    .jw-product-view__top{
        margin-bottom:24px;
    }

    .jw-product-view__summary h1{
        font-size:38px;
    }

    .jw-product-view__description{
        margin-top:22px;
        font-size:15px;
        line-height:1.75;
    }

    .jw-product-view__scope{
        margin-top:19px;
        padding:16px 17px 17px;
    }

    .jw-product-view__scope>div{
        font-size:13px;
        line-height:1.7;
        word-break:normal;
    }

    .jw-product-view__detail{
        margin-top:72px;
        padding-top:42px;
    }

    .jw-product-view__section-head{
        display:block;
        margin-bottom:34px;
    }

    .jw-product-view__section-head p{
        margin:0 0 11px;
    }

    .jw-product-view__section-head h2{
        font-size:29px;
    }

    .jw-product-view__information{
        grid-template-columns:1fr;
        gap:14px;
    }

    .jw-product-view__block.is-wide{
        grid-column:auto;
    }

    .jw-product-view__block{
        padding:25px 21px 27px;
    }

    .jw-product-view__block>div{
        font-size:14px;
        line-height:1.8;
        word-break:normal;
    }

    .jw-product-view__nav{
        grid-template-columns:1fr;
        gap:22px;
        margin-top:75px;
    }

    .jw-product-view__nav-item,
    .jw-product-view__nav-item.is-next{
        align-items:flex-start;
        padding-bottom:22px;
        border-bottom:1px solid var(--jw-product-line);
        text-align:left;
    }

    .jw-product-view__admin{
        flex-wrap:wrap;
        margin-top:38px;
    }

    .jw-product-write{
        padding-top:12px;
        padding-bottom:60px;
    }

    .jw-product-write__header{
        margin-bottom:32px;
    }

    .jw-product-write__header h2{
        font-size:36px;
    }

    .jw-product-write__header>p:last-child{
        font-size:14px;
        word-break:normal;
    }

    .jw-product-write__panel{
        padding:24px 18px;
        border-radius:15px;
        box-shadow:0 12px 34px rgba(17,26,23,.05);
    }

    .jw-product-write__grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .jw-product-write__field--full{
        grid-column:auto;
    }

    .jw-product-write input[type="text"],
    .jw-product-write input[type="password"],
    .jw-product-write select{
        height:50px;
        font-size:14px;
    }

    .jw-product-write textarea{
        min-height:135px;
        font-size:14px;
    }

    .jw-product-write__current{
        align-items:flex-start;
        flex-direction:column;
        gap:8px;
    }

    .jw-product-write__actions{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .jw-product-write__button{
        width:100%;
        min-width:0;
    }
}


@media screen and (max-width:640px){
    .jw-product-write__editor{
        min-height:310px;
    }

    .jw-product-write__editor .cke_contents{
        min-height:250px!important;
    }

    .jw-product-write__editor textarea{
        min-height:270px!important;
    }
}


@media screen and (max-width:640px){
    .jw-product-view__properties{
        margin-right:-2px;
        padding-bottom:6px;
    }

    .jw-product-view__properties table,
    .jw-product-view__properties table.natbl{
        min-width:680px;
    }

    .jw-product-view__properties table th,
    .jw-product-view__properties table td{
        padding:14px 15px!important;
        font-size:13px!important;
        line-height:1.65!important;
    }
}
/* ==========================================================
   DEFAULT BOARD - WRITE / ATTACHMENT
   기본 게시판 글쓰기 및 상세 첨부파일
========================================================== */

.default-board--write{
    --default-board-primary:#07346b;
    --default-board-primary-dark:#052653;
    --default-board-ink:#111;
    --default-board-text:#333;
    --default-board-muted:#6f7782;
    --default-board-line:#dfe4eb;
    --default-board-soft:#f7f9fc;
    width:100%;
    max-width:1080px;
    margin:0 auto;
    color:var(--default-board-ink);
}

.default-board--write *,
.default-board--view .default-view-files *{
    box-sizing:border-box;
}

.default-write-head{
    margin-bottom:34px;
}

.default-write-eyebrow{
    margin:0 0 10px;
    color:var(--default-board-primary);
    font-size:12px;
    font-weight:800;
    line-height:1;
    letter-spacing:.12em;
}

.default-write-title{
    margin:0;
    color:var(--default-board-ink);
    font-size:36px;
    font-weight:800;
    line-height:1.3;
    letter-spacing:-.04em;
}

.default-write-description{
    margin:14px 0 0;
    color:var(--default-board-muted);
    font-size:15px;
    line-height:1.7;
}

.default-board--write form{
    width:100%!important;
    margin:0;
}

.default-write-form{
    border-top:2px solid var(--default-board-ink);
}

.default-write-row{
    display:grid;
    grid-template-columns:150px minmax(0,1fr);
    gap:24px;
    padding:20px 0;
    border-bottom:1px solid var(--default-board-line);
}

.default-write-row>label,
.default-write-label{
    padding:13px 0 0 14px;
    color:var(--default-board-ink);
    font-size:15px;
    font-weight:700;
    line-height:1.4;
}

.default-write-row>label strong{
    color:var(--default-board-primary);
}

.default-write-control{
    min-width:0;
}

.default-write-input,
.default-write-textarea{
    display:block;
    width:100%;
    margin:0;
    border:1px solid #d4dae3;
    border-radius:4px;
    background:#fff;
    color:var(--default-board-ink);
    font-family:inherit;
    font-size:15px;
    outline:0;
    transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease;
}

.default-write-input{
    height:50px;
    padding:0 15px;
}

.default-write-textarea{
    min-height:320px;
    padding:16px;
    line-height:1.75;
    resize:vertical;
}

.default-write-input::placeholder,
.default-write-textarea::placeholder{
    color:#a1a8b1;
}

.default-write-input:focus,
.default-write-textarea:focus{
    border-color:var(--default-board-primary);
    box-shadow:0 0 0 3px rgba(7,52,107,.08);
}

.default-write-input.is-readonly{
    background:#f4f6f8;
    color:#737b85;
}

.default-write-files{
    display:grid;
    gap:10px;
}

.default-write-file{
    padding:13px 14px;
    border:1px solid var(--default-board-line);
    border-radius:5px;
    background:var(--default-board-soft);
}

.default-write-file__top{
    display:grid;
    grid-template-columns:72px minmax(0,1fr);
    gap:12px;
    align-items:center;
}

.default-write-file__top>label{
    color:#3f4750;
    font-size:13px;
    font-weight:700;
}

.default-write-file-input{
    display:block;
    width:100%;
    min-width:0;
    min-height:42px;
    padding:6px;
    border:1px solid #d6dce5;
    border-radius:4px;
    background:#fff;
    color:#525a64;
    font-family:inherit;
    font-size:13px;
}

.default-write-file-input::file-selector-button{
    height:30px;
    margin-right:10px;
    padding:0 13px;
    border:0;
    border-radius:3px;
    background:var(--default-board-primary);
    color:#fff;
    font-family:inherit;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}

.default-write-file-input::-webkit-file-upload-button{
    height:30px;
    margin-right:10px;
    padding:0 13px;
    border:0;
    border-radius:3px;
    background:var(--default-board-primary);
    color:#fff;
    font-family:inherit;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}

.default-write-current{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid var(--default-board-line);
    color:#6c747e;
    font-size:13px;
}

.default-write-current>span{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.default-write-current label{
    display:flex;
    align-items:center;
    gap:6px;
    flex:0 0 auto;
    color:#4e5660;
    cursor:pointer;
}

.default-write-current input[type="checkbox"]{
    width:16px;
    height:16px;
    margin:0;
    accent-color:var(--default-board-primary);
}

.default-write-help{
    margin:10px 0 0;
    color:#828a94;
    font-size:12px;
    line-height:1.6;
}

.default-write-actions{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:34px;
}

.default-write-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:112px;
    height:46px;
    padding:0 22px;
    border:1px solid #cfd6e2;
    border-radius:4px;
    background:#fff;
    color:#222!important;
    font-family:inherit;
    font-size:15px;
    font-weight:700;
    line-height:1;
    text-decoration:none!important;
    cursor:pointer;
    transition:border-color .2s ease,background-color .2s ease,color .2s ease;
}

.default-write-button.is-cancel:hover{
    border-color:#7f8995;
    color:#111!important;
}

.default-write-button.is-submit{
    min-width:128px;
    border-color:var(--default-board-primary);
    background:var(--default-board-primary);
    color:#fff!important;
}

.default-write-button.is-submit:hover{
    border-color:var(--default-board-primary-dark);
    background:var(--default-board-primary-dark);
}

.default-write-button:disabled{
    opacity:.65;
    cursor:wait;
}


/* 상세 첨부파일 */

.default-board--view .default-view-files{
    padding:26px 0 30px;
    border-bottom:1px solid #e1e5ec;
}

.default-board--view .default-view-files__head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:14px;
}

.default-board--view .default-view-files__head h4{
    margin:0;
    color:#111;
    font-size:16px;
    font-weight:800;
}

.default-board--view .default-view-files__head span{
    color:#7a828c;
    font-size:13px;
}

.default-board--view .default-view-files__list{
    display:grid;
    gap:8px;
    margin:0;
    padding:0;
    list-style:none;
}

.default-board--view .default-view-files__list li{
    margin:0;
}

.default-board--view .default-view-files__list a{
    display:grid;
    grid-template-columns:24px minmax(0,1fr) auto auto;
    align-items:center;
    gap:12px;
    min-height:50px;
    padding:10px 15px;
    border:1px solid #dfe4eb;
    border-radius:4px;
    background:#f8fafc;
    color:#303741;
    text-decoration:none;
    transition:border-color .2s ease,background-color .2s ease,color .2s ease;
}

.default-board--view .default-view-files__list a:hover{
    border-color:#07346b;
    background:#fff;
    color:#07346b;
}

.default-board--view .default-view-files__icon{
    position:relative;
    display:block;
    width:16px;
    height:20px;
    border:1.5px solid currentColor;
    border-radius:2px;
}

.default-board--view .default-view-files__icon::after{
    content:"";
    position:absolute;
    right:-1.5px;
    top:-1.5px;
    width:6px;
    height:6px;
    border-left:1.5px solid currentColor;
    border-bottom:1.5px solid currentColor;
    background:#f8fafc;
}

.default-board--view .default-view-files__name{
    min-width:0;
    overflow:hidden;
    font-size:14px;
    font-weight:600;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.default-board--view .default-view-files__size{
    color:#858d97;
    font-size:12px;
}

.default-board--view .default-view-files__download{
    color:#07346b;
    font-size:12px;
    font-weight:800;
}


@media screen and (max-width:768px){
    .default-write-head{
        margin-bottom:26px;
    }

    .default-write-title{
        font-size:30px;
    }

    .default-write-description{
        font-size:14px;
    }

    .default-write-row{
        grid-template-columns:1fr;
        gap:9px;
        padding:17px 0;
    }

    .default-write-row>label,
    .default-write-label{
        padding:0;
    }

    .default-write-textarea{
        min-height:240px;
    }

    .default-write-file{
        padding:11px;
    }

    .default-write-file__top{
        grid-template-columns:1fr;
        gap:7px;
    }

    .default-write-current{
        align-items:flex-start;
        flex-direction:column;
        gap:8px;
    }

    .default-write-actions{
        display:grid;
        grid-template-columns:1fr 1fr;
        margin-top:26px;
    }

    .default-write-button{
        width:100%;
        min-width:0!important;
    }

    .default-board--view .default-view-files__list a{
        grid-template-columns:22px minmax(0,1fr) auto;
        gap:9px;
        padding:11px 12px;
    }

    .default-board--view .default-view-files__size{
        display:none;
    }

    .default-board--view .default-view-files__download{
        font-size:11px;
    }
}

/* ==========================================================
   JEONGWOO FLOW - CASE GALLERY BOARD
   시공사례 갤러리 목록 / 상세 / 등록 전용
   기존 게시판과 충돌하지 않도록 .case-board 범위에서만 작동
========================================================== */
.case-board{--case-primary:#07346b; --case-primary-dark:#052653; --case-ink:#111; --case-text:#333; --case-muted:#727b86; --case-line:#dfe4eb; --case-soft:#f7f9fc; width:100%; max-width:1280px; margin:0 auto; color:var(--case-ink); font-family:inherit; box-sizing:border-box;}
.case-board *{box-sizing:border-box;}
.case-board a{color:inherit; text-decoration:none;}
.case-board__sr-only{position:absolute!important; width:1px!important; height:1px!important; margin:-1px!important; padding:0!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important;}
.case-board__empty{margin:0; padding:90px 20px; border-top:2px solid var(--case-ink); border-bottom:1px solid var(--case-line); color:var(--case-muted); font-size:16px; text-align:center;}

/* CASE LIST */
.case-board--list{padding:20px 0 80px;}
.case-list__toolbar{display:flex; align-items:center; justify-content:space-between; gap:24px; margin-bottom:26px; padding-bottom:18px; border-bottom:2px solid var(--case-ink);}
.case-list__count{margin:0; color:var(--case-muted); font-size:15px; line-height:1.5;}
.case-list__count strong{color:var(--case-primary); font-weight:800;}
.case-board__write-button{display:inline-flex; align-items:center; justify-content:center; min-width:96px; height:44px; padding:0 20px; border:1px solid var(--case-primary); border-radius:4px; background:var(--case-primary); color:#fff!important; font-size:15px; font-weight:700; line-height:1; transition:background-color .2s ease,border-color .2s ease;}
.case-board__write-button:hover{border-color:var(--case-primary-dark); background:var(--case-primary-dark); color:#fff!important;}
.case-list__grid{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:56px 24px;}
.case-card{display:block; min-width:0;}
.case-card__media{position:relative; width:100%; aspect-ratio:4 / 3; overflow:hidden; border:1px solid #d9dfe7; border-radius:4px; background:var(--case-soft);}
.case-card__media::after{content:""; position:absolute; inset:0; border:2px solid transparent; pointer-events:none; transition:border-color .25s ease;}
.case-card__media img{display:block; width:100%; height:100%; object-fit:cover; transition:transform .4s cubic-bezier(.2,.7,.2,1);}
.case-card__number{position:absolute; left:14px; top:14px; z-index:2; display:inline-flex; align-items:center; min-height:28px; padding:0 10px; border-radius:3px; background:rgba(7,52,107,.9); color:#fff; font-size:11px; font-weight:800; letter-spacing:.06em; backdrop-filter:blur(6px);}
.case-card__empty-image{display:flex; align-items:center; justify-content:center; flex-direction:column; gap:8px; width:100%; height:100%; color:#8b949f; font-size:14px;}
.case-card__empty-image span{color:var(--case-primary); font-size:11px; font-weight:800; letter-spacing:.14em;}
.case-card__body{padding-top:18px;}
.case-card__heading{display:grid; grid-template-columns:minmax(0,1fr) 34px; align-items:start; gap:16px;}
.case-card__heading h3{display:-webkit-box; min-height:56px; margin:0; overflow:hidden; color:var(--case-ink); font-size:20px; font-weight:800; line-height:1.45; letter-spacing:-.035em; word-break:keep-all; -webkit-box-orient:vertical; -webkit-line-clamp:2; transition:color .2s ease;}
.case-card__arrow{display:flex; align-items:center; justify-content:center; width:34px; height:34px; border:1px solid var(--case-line); border-radius:50%; color:#68717c; font-size:17px; transition:background-color .2s ease,border-color .2s ease,color .2s ease,transform .2s ease;}
.case-card__meta{display:flex; align-items:center; flex-wrap:wrap; gap:6px 17px; margin-top:14px; color:var(--case-muted); font-size:13px;}
.case-card__meta span{position:relative;}
.case-card__meta span+span::before{content:""; position:absolute; left:-9px; top:50%; width:1px; height:10px; background:#d6dce4; transform:translateY(-50%);}
@media (hover:hover){.case-card:hover .case-card__media::after{border-color:var(--case-primary);} .case-card:hover .case-card__media img{transform:scale(1.045);} .case-card:hover .case-card__heading h3{color:var(--case-primary);} .case-card:hover .case-card__arrow{border-color:var(--case-primary); background:var(--case-primary); color:#fff; transform:rotate(45deg);}}
.case-board__paging{margin-top:58px;}
.case-board__paging .pg_wrap{display:block; float:none; margin:0; text-align:center;}
.case-board__paging .pg{display:flex; align-items:center; justify-content:center; gap:4px;}
.case-board__paging .pg_page,.case-board__paging .pg_current{display:inline-flex; align-items:center; justify-content:center; min-width:38px; height:38px; margin:0; padding:0 7px; border:1px solid #d8dde6; border-radius:4px; background:#fff; color:#333; font-size:14px; font-weight:600; line-height:1; text-indent:0;}
.case-board__paging .pg_page:hover{border-color:var(--case-primary); color:var(--case-primary);}
.case-board__paging .pg_current{border-color:var(--case-primary); background:var(--case-primary); color:#fff;}

/* CASE VIEW */
.case-board--view{max-width:1180px; padding:20px 0 80px;}
.case-view__header{padding:0 0 28px; border-top:2px solid var(--case-ink); border-bottom:1px solid var(--case-line);}
.case-view__eyebrow{margin:25px 0 10px; color:var(--case-primary); font-size:11px; font-weight:800; letter-spacing:.12em;}
.case-view__title{margin:0 0 16px; color:var(--case-ink); font-size:clamp(28px,3vw,38px); font-weight:800; line-height:1.35; letter-spacing:-.04em; word-break:keep-all;}
.case-view__meta{display:flex; align-items:center; flex-wrap:wrap; gap:7px 20px; color:var(--case-muted); font-size:14px;}
.case-view__meta span{position:relative;}
.case-view__meta span+span::before{content:""; position:absolute; left:-10px; top:50%; width:1px; height:11px; background:#d6dce4; transform:translateY(-50%);}
.case-view__body{border-bottom:1px solid var(--case-line);}
.case-view__images{display:grid; grid-template-columns:1fr; gap:24px; padding:42px 0 0;}

.case-view__figure{display:flex; align-items:center; justify-content:center; width:100%; min-width:0; margin:0; overflow:hidden;}

.case-view__figure.is-primary{grid-column:auto;}

.case-view__figure img{display:block; width:auto; max-width:100%; height:auto; margin:0 auto; object-fit:contain;}

.case-view__content img{display:block; width:auto; max-width:100%; height:auto; margin-left:auto; margin-right:auto;}
.case-view__content{min-height:180px; padding:42px 4px 54px; color:#222; font-size:17px; line-height:1.9; overflow-wrap:break-word; word-break:keep-all;}
.case-view__content p{margin:0 0 1.4em;}
.case-view__content img{max-width:100%; height:auto;}
.case-view__files{padding:28px 0 32px; border-top:1px solid var(--case-line);}
.case-view__files-head{display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:14px;}
.case-view__files-head h4{margin:0; color:var(--case-ink); font-size:16px; font-weight:800;}
.case-view__files-head span{color:var(--case-muted); font-size:13px;}
.case-view__files ul{display:grid; gap:8px; margin:0; padding:0; list-style:none;}
.case-view__files li{margin:0;}
.case-view__files a{display:grid; grid-template-columns:22px minmax(0,1fr) auto auto; align-items:center; gap:12px; min-height:50px; padding:10px 15px; border:1px solid var(--case-line); border-radius:4px; background:#f8fafc; color:#303741; transition:border-color .2s ease,background-color .2s ease,color .2s ease;}
.case-view__files a:hover{border-color:var(--case-primary); background:#fff; color:var(--case-primary);}
.case-view__file-icon{position:relative; display:block; width:15px; height:19px; border:1.5px solid currentColor; border-radius:2px;}
.case-view__file-icon::after{content:""; position:absolute; right:-1.5px; top:-1.5px; width:6px; height:6px; border-left:1.5px solid currentColor; border-bottom:1.5px solid currentColor; background:#f8fafc;}
.case-view__file-name{min-width:0; overflow:hidden; font-size:14px; font-weight:600; text-overflow:ellipsis; white-space:nowrap;}
.case-view__file-size{color:#858d97; font-size:12px;}
.case-view__files a strong{font-size:12px; font-weight:800;}
.case-view__nav{margin-top:42px; border-top:1px solid var(--case-line); border-bottom:1px solid var(--case-line);}
.case-view__nav-row{display:grid; grid-template-columns:100px minmax(0,1fr); align-items:center; min-height:58px; border-top:1px solid var(--case-line);}
.case-view__nav-row:first-child{border-top:0;}
.case-view__nav-row>span{padding-left:16px; color:var(--case-ink); font-size:14px; font-weight:800;}
.case-view__nav-row a{min-width:0; overflow:hidden; color:var(--case-text); font-size:15px; text-overflow:ellipsis; white-space:nowrap;}
.case-view__nav-row a:hover{color:var(--case-primary);}
.case-view__actions{display:flex; align-items:center; justify-content:center; gap:8px; margin-top:34px;}
.case-board__button{display:inline-flex; align-items:center; justify-content:center; min-width:92px; height:44px; padding:0 18px; border:1px solid #cfd6e2; border-radius:4px; background:#fff; color:#222!important; font-size:15px; font-weight:700; transition:border-color .2s ease,background-color .2s ease,color .2s ease;}
.case-board__button:hover{border-color:var(--case-primary); color:var(--case-primary)!important;}
.case-board__button.is-list{border-color:var(--case-primary); background:var(--case-primary); color:#fff!important;}
.case-board__button.is-list:hover{border-color:var(--case-primary-dark); background:var(--case-primary-dark);}
.case-board__button.is-delete:hover{border-color:#c92121; color:#c92121!important;}

/* CASE WRITE */
.case-board--write{max-width:1080px; padding:20px 0 80px;}
.case-write__header{margin-bottom:34px;}
.case-write__eyebrow{margin:0 0 10px; color:var(--case-primary); font-size:12px; font-weight:800; line-height:1; letter-spacing:.12em;}
.case-write__header h2{margin:0; color:var(--case-ink); font-size:36px; font-weight:800; line-height:1.3; letter-spacing:-.04em;}
.case-write__header>p:last-child{margin:14px 0 0; color:var(--case-muted); font-size:15px; line-height:1.7; word-break:keep-all;}
.case-board--write form{width:100%!important; margin:0;}
.case-write__form{border-top:2px solid var(--case-ink);}
.case-write__row{display:grid; grid-template-columns:150px minmax(0,1fr); gap:24px; padding:20px 0; border-bottom:1px solid var(--case-line);}
.case-write__row>label,.case-write__label{padding:13px 0 0 14px; color:var(--case-ink); font-size:15px; font-weight:700; line-height:1.4;}
.case-write__row>label strong{color:var(--case-primary);}
.case-write__control{min-width:0;}
.case-write__input,.case-write__textarea{display:block; width:100%; margin:0; border:1px solid #d4dae3; border-radius:4px; background:#fff; color:var(--case-ink); font-family:inherit; font-size:15px; outline:0; transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease;}
.case-write__input{height:50px; padding:0 15px;}
.case-write__textarea{min-height:280px; padding:16px; line-height:1.75; resize:vertical;}
.case-write__input::placeholder,.case-write__textarea::placeholder{color:#a1a8b1;}
.case-write__input:focus,.case-write__textarea:focus{border-color:var(--case-primary); box-shadow:0 0 0 3px rgba(7,52,107,.08);}
.case-write__input.is-readonly{background:#f4f6f8; color:#737b85;}
.case-write__files{display:grid; gap:10px;}
.case-write__file{padding:13px 14px; border:1px solid var(--case-line); border-radius:5px; background:var(--case-soft);}
.case-write__file-top{display:grid; grid-template-columns:72px minmax(0,1fr); gap:12px; align-items:center;}
.case-write__file-top>label{color:#3f4750; font-size:13px; font-weight:700;}
.case-write__file-input{display:block; width:100%; min-width:0; min-height:42px; padding:6px; border:1px solid #d6dce5; border-radius:4px; background:#fff; color:#525a64; font-family:inherit; font-size:13px;}
.case-write__file-input::file-selector-button{height:30px; margin-right:10px; padding:0 13px; border:0; border-radius:3px; background:var(--case-primary); color:#fff; font-family:inherit; font-size:12px; font-weight:700; cursor:pointer;}
.case-write__file-input::-webkit-file-upload-button{height:30px; margin-right:10px; padding:0 13px; border:0; border-radius:3px; background:var(--case-primary); color:#fff; font-family:inherit; font-size:12px; font-weight:700; cursor:pointer;}
.case-write__current{display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:10px; padding-top:10px; border-top:1px solid var(--case-line); color:#6c747e; font-size:13px;}
.case-write__current>span{min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.case-write__current label{display:flex; align-items:center; gap:6px; flex:0 0 auto; color:#4e5660; cursor:pointer;}
.case-write__current input[type="checkbox"]{width:16px; height:16px; margin:0; accent-color:var(--case-primary);}
.case-write__help{margin:10px 0 0; color:#828a94; font-size:12px; line-height:1.6;}
.case-write__actions{display:flex; align-items:center; justify-content:center; gap:8px; margin-top:34px;}
.case-write__button{display:inline-flex; align-items:center; justify-content:center; min-width:112px; height:46px; padding:0 22px; border:1px solid #cfd6e2; border-radius:4px; background:#fff; color:#222!important; font-family:inherit; font-size:15px; font-weight:700; line-height:1; cursor:pointer; transition:border-color .2s ease,background-color .2s ease,color .2s ease;}
.case-write__button.is-cancel:hover{border-color:#7f8995; color:#111!important;}
.case-write__button.is-submit{min-width:128px; border-color:var(--case-primary); background:var(--case-primary); color:#fff!important;}
.case-write__button.is-submit:hover{border-color:var(--case-primary-dark); background:var(--case-primary-dark);}
.case-write__button:disabled{opacity:.65; cursor:wait;}

@media screen and (max-width:1024px){.case-list__grid{grid-template-columns:repeat(2,minmax(0,1fr)); gap:48px 20px;}}
@media screen and (max-width:768px){.case-board--list,.case-board--view,.case-board--write{padding-top:8px; padding-bottom:60px;} .case-list__toolbar{margin-bottom:20px;} .case-list__grid{grid-template-columns:1fr; gap:40px;} .case-card__heading h3{min-height:0; font-size:19px;} .case-board__paging{margin-top:46px;} .case-view__title{font-size:27px; word-break:break-word;} .case-view__meta{align-items:flex-start; flex-direction:column; gap:5px;} .case-view__meta span+span::before{display:none;} .case-view__images{grid-template-columns:1fr; gap:12px; padding-top:30px;} .case-view__figure.is-primary{grid-column:auto;} .case-view__content{min-height:120px; padding:32px 2px 42px; font-size:16px; line-height:1.85; word-break:break-word;} .case-view__files a{grid-template-columns:20px minmax(0,1fr) auto; gap:9px; padding:10px 12px;} .case-view__file-size{display:none;} .case-view__nav-row{grid-template-columns:1fr; gap:7px; padding:15px 0;} .case-view__nav-row>span{padding-left:0;} .case-view__actions{flex-wrap:wrap; margin-top:28px;} .case-write__header{margin-bottom:26px;} .case-write__header h2{font-size:30px;} .case-write__header>p:last-child{font-size:14px; word-break:normal;} .case-write__row{grid-template-columns:1fr; gap:9px; padding:17px 0;} .case-write__row>label,.case-write__label{padding:0;} .case-write__textarea{min-height:230px;} .case-write__file{padding:11px;} .case-write__file-top{grid-template-columns:1fr; gap:7px;} .case-write__current{align-items:flex-start; flex-direction:column; gap:8px;} .case-write__actions{display:grid; grid-template-columns:1fr 1fr; margin-top:26px;} .case-write__button{width:100%; min-width:0!important;}}
@media screen and (max-width:520px){.case-list__toolbar{align-items:flex-start; flex-direction:column;} .case-board__write-button{width:100%;} .case-card__meta{gap:5px 15px;} .case-board__paging .pg_page,.case-board__paging .pg_current{min-width:34px; height:36px; padding:0 5px; font-size:13px;} .case-view__actions{display:grid; grid-template-columns:repeat(2,minmax(0,1fr));} .case-board__button{width:100%; min-width:0;} .case-board__button.is-list{grid-column:1 / -1;}}

/* 유튜브 게시판 썸네일 */
.default-board--list .col-thumb{width:180px;}

.pr-youtube-thumb{
    position:relative;
    display:block;
    width:160px;
    aspect-ratio:16/9;
    margin:0 auto;
    overflow:hidden;
    background:#edf0f2;
}

.pr-youtube-thumb img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.pr-youtube-thumb__play{
    position:absolute;
    top:50%;
    left:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    padding-left:3px;
    border-radius:50%;
    background:rgba(0,0,0,.68);
    color:#fff;
    font-size:16px;
    transform:translate(-50%,-50%);
    transition:background-color .2s ease,transform .2s ease;
}

.pr-youtube-thumb:hover .pr-youtube-thumb__play{
    background:#ff0033;
    transform:translate(-50%,-50%) scale(1.08);
}

@media screen and (max-width:720px){
    .default-board--list .col-thumb{width:120px;}

    .pr-youtube-thumb{
        width:110px;
    }

    .pr-youtube-thumb__play{
        width:34px;
        height:34px;
        font-size:13px;
    }
}
