/* 개발 게시판 공통 레이아웃. */
.pnodex-dev-board {
    width: min(100%, 1020px);
    margin: 17px auto 70px;
    color: #1d2433;
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-sizing: border-box
}

/* pb_basic 보기 하단 관리형 배너·작성자 구독 카드·이전글/다음글 디자인. */
.pnodex-dev-view .pb-banner-slot-board-view-bottom {
    display: grid;
    justify-items: center;
    gap: 5px;
    width: 100%;
    min-height: 0;
    margin: 10px auto 0;
    padding: 0;
    overflow: visible;
    box-sizing: border-box;
}

.pnodex-dev-view .pb-banner-slot-board-view-bottom .pb-banner-item {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-sizing: border-box;
}

.pnodex-dev-view .pb-banner-slot-board-view-bottom .pb-banner-item picture,
.pnodex-dev-view .pb-banner-slot-board-view-bottom .pb-banner-item img {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: inherit;
    box-sizing: border-box;
}

.pnodex-dev-view .pb-view-author-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    margin: 10px auto 20px;
    padding: 20px 30px;
    border-radius: 12px;
    background: #f8f9fb;
    box-sizing: border-box;
}

.pnodex-dev-view .pb-view-author-card.has-greeting {
    align-items: flex-start;
}

.pnodex-dev-view .pb-view-author-left {
    flex: 1 1 auto;
    min-width: 0;
}

.pnodex-dev-view .pb-view-author-main {
    display: flex;
    align-items: center;
    min-height: 50px;
    gap: 22px;
}

.pnodex-dev-view .pb-view-author-card-img {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 10px;
    background: #eef1f5;
}

.pnodex-dev-view .pb-view-author-card-img img {
    display: block;
    width: 50px !important;
    height: 50px !important;
    border-radius: 10px;
    object-fit: cover;
}

.pnodex-dev-view .pnodex-dev-author-card-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #98a2b3;
    font-size: 20px;
}

.pnodex-dev-view .pb-view-author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    min-height: 50px;
}

.pnodex-dev-view .pb-view-author-name-row {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
}

.pnodex-dev-view .pb-view-author-name-icon,
.pnodex-dev-view .pb-view-author-name-icon img,
.pnodex-dev-view .pb-view-author-name-icon .pnodex-dev-author-icon-fallback {
    display: inline-flex !important;
    flex: 0 0 22px !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 5px !important;
    object-fit: cover;
}

.pnodex-dev-view .pb-view-author-name-row .sv_member,
.pnodex-dev-view .pb-view-author-name-row .sv_guest {
    color: #273246;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    white-space: nowrap;
}

.pnodex-dev-view .pb-view-author-id {
    display: block;
    margin-top: 3px;
    color: #98a2b3;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
}

.pnodex-dev-view .pb-view-author-greeting {
    margin-top: 15px;
    color: #3ea0f0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
    word-break: break-word;
}

.pnodex-dev-view .pb-view-author-greeting p {
    margin: 0;
}

.pnodex-dev-view .pnodex-dev-author-footer {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
}

.pnodex-dev-view .pb-view-author-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 6px;
}

.pnodex-dev-view .pb-view-author-card.has-greeting .pb-view-author-actions {
    align-self: flex-start;
}

.pnodex-dev-view .pb-view-author-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #dfe3ea;
    border-radius: 8px;
    background: #fff;
    color: #151d2c;
    font-size: 20px;
    text-decoration: none;
    box-sizing: border-box;
}

.pnodex-dev-view .pb-view-author-action:hover {
    border-color: #b986f5;
    color: #8f22e6;
}

.pnodex-dev-view .pb-view-author-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 0 0 120px;
    width: 120px;
    height: 50px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #9825ef;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.pnodex-dev-view .pb-view-author-subscribe.is-active {
    background: #264461;
}

.pnodex-dev-view .pb-view-author-subscribe.is-loading {
    opacity: .65;
    pointer-events: none;
}

.pnodex-dev-view .bo_v_nb.pb-view-neighbor {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    border-top: 1px solid #e7e9ee;
    border-bottom: 1px solid #e7e9ee;
    list-style: none;
}

.pnodex-dev-view .pb-view-neighbor li {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 92px;
    align-items: center;
    min-height: 50px;
    margin: 0;
    padding: 0;
}

.pnodex-dev-view .pb-view-neighbor li+li {
    border-top: 1px solid #e7e9ee;
}

.pnodex-dev-view .pb-view-neighbor .nb_tit {
    color: #a1a8b3;
    font-size: 12px;
}

.pnodex-dev-view .pb-view-neighbor a {
    overflow: hidden;
    color: #303947;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pnodex-dev-view .pb-view-neighbor .nb_date {
    color: #a8afb9;
    font-size: 12px;
    text-align: right;
}

@media (max-width: 768px) {
    .pnodex-dev-view .pb-view-author-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .pnodex-dev-view .pb-view-author-actions {
        align-self: stretch;
        justify-content: flex-end;
    }

    .pnodex-dev-view .pb-view-neighbor li {
        grid-template-columns: 48px minmax(0, 1fr) 70px;
    }
}

.pnodex-dev-board.pnodex-dev-view {
    margin-top: 6px
}

/* 게시글 보기 상단에 출력되는 빈 문단의 높이만 줄여
   메뉴 아래부터 제목까지의 간격을 기존 대비 40% 축소합니다. */
body.pb-theme .pb-content-wrap>p:first-child:has(+ .pnodex-dev-view) {
    height: 15px;
    margin: 0;
    overflow: hidden;
    line-height: 15px
}

.pnodex-dev-board * {
    box-sizing: border-box
}

.pnodex-dev-board a {
    text-decoration: none
}

.pnodex-dev-list-titlebar,
.pnodex-dev-form-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 0 0 26px;
    border-bottom: 1px solid #e0e5ed
}

.pnodex-dev-list-titlebar p,
.pnodex-dev-form-head p {
    margin: 0 0 7px;
    color: #6b4be9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em
}

.pnodex-dev-list-titlebar h1,
.pnodex-dev-form-head h1 {
    margin: 0;
    color: #192236;
    font-size: 16px;
    line-height: 1.3
}

.pnodex-dev-board-desc,
.pnodex-dev-form-head span {
    margin-top: 7px;
    color: #8791a3;
    font-size: 12px
}

.pnodex-dev-board-count {
    color: #8b95a6;
    font-size: 12px
}

.pnodex-dev-board-count strong {
    color: #6b4be9
}

/* pb_basic 포인트 정책 버튼과 안내 패널. */
.pnodex-dev-board-summary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px
}

.pnodex-dev-point-policy {
    position: relative;
    display: inline-flex;
    align-items: center
}

.pnodex-dev-point-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 24px;
    padding: 0 8px;
    border: 1px solid #d8dde8;
    border-radius: 6px;
    background: #fff;
    color: #172033;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer
}

/* 테마 공통 button 규칙보다 우선해 pb_basic의 작은 포인트정책 버튼 크기를 고정. */
.pnodex-dev-list-page .pnodex-dev-point-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    width: auto !important;
    min-width: 0 !important;
    height: 24px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 8px !important;
    border: 1px solid #d8dde8 !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #172033 !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    box-shadow: none !important;
    box-sizing: border-box !important
}

.pnodex-dev-list-page .pnodex-dev-point-icon {
    width: 14px !important;
    min-width: 14px !important;
    height: 14px !important;
    min-height: 14px !important;
    padding: 0 !important;
    font-size: 9px !important;
    line-height: 14px !important
}

.pnodex-dev-point-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1f2d4f;
    color: #fff;
    font-size: 9px;
    font-weight: 900
}

.pnodex-dev-point-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 850;
    width: 278px;
    padding: 20px;
    border: 1px solid #e5e8ef;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .08)
}

.pnodex-dev-point-panel[hidden],
.pnodex-dev-search-modal[hidden],
.pnodex-dev-delete-modal[hidden] {
    display: none !important
}

.pnodex-dev-point-panel>strong {
    display: block;
    margin: 0 0 12px;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3
}

.pnodex-dev-point-box {
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 14px 18px;
    border-radius: 4px;
    background: #f3f5f7
}

.pnodex-dev-point-box dl {
    margin: 0;
    text-align: center
}

.pnodex-dev-point-box dt {
    margin: 0 0 4px;
    color: #111827;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2
}

.pnodex-dev-point-box dd {
    margin: 0;
    color: #000;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2
}

/* pb_basic과 같은 목록 하단 검색·글등록 배치. */
.pnodex-dev-board-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 28px 0 34px
}

.pnodex-dev-search-open,
.pnodex-dev-write-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer
}

.pnodex-dev-search-open {
    height: 34px;
    padding: 0 15px;
    border: 1px solid #dfe4ee;
    background: #fff;
    color: #8d95a3
}

.pnodex-dev-write-btn {
    gap: 7px;
    height: 36px;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    background: #9b24f2;
    color: #fff
}

.pnodex-dev-list-page .pnodex-dev-write-btn,
.pnodex-dev-list-page .pnodex-dev-write-btn:link,
.pnodex-dev-list-page .pnodex-dev-write-btn:visited,
.pnodex-dev-list-page .pnodex-dev-write-btn:hover,
.pnodex-dev-list-page .pnodex-dev-write-btn:focus {
    color: #fff !important
}

.pnodex-dev-list-page .pnodex-dev-write-btn i {
    color: #fff !important
}

/* pb_basic과 같은 목록 우측 고정 퀵메뉴. */
.pnodex-dev-quick-tools {
    margin: 0;
    padding: 0;
    list-style: none
}

.pnodex-dev-quick-tools>li {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none
}

.pnodex-dev-quick-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border: 1px solid #dde3ee !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #08122b !important;
    font-size: 18px !important;
    cursor: pointer !important;
    box-sizing: border-box !important
}

.pnodex-dev-quick-btn.is-write {
    border-color: #9b24f2 !important;
    background: #9b24f2 !important;
    color: #fff !important
}

.pnodex-dev-manage-menu[hidden] {
    display: none !important
}

.pnodex-dev-manage-menu {
    position: absolute;
    top: 0;
    right: 54px;
    z-index: 999;
    min-width: 126px;
    margin: 0;
    padding: 0;
    border: 1px solid #dfe4ee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 35px rgba(15, 23, 42, .12);
    list-style: none
}

.pnodex-dev-manage-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f1f1f1;
    list-style: none
}

.pnodex-dev-manage-menu li:last-child {
    border-bottom: 0
}

.pnodex-dev-manage-menu button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    background: #fff;
    color: #6b757c;
    font-size: 12px;
    white-space: nowrap;
    cursor: pointer
}

.pnodex-dev-manage-menu button:hover {
    color: #000;
    background: #f8f9fb
}

/* 선택 관리 메뉴를 pb_basic 퀵메뉴 팝업처럼 간결한 카드로 표시. */
.pnodex-dev-quick-tools .pnodex-dev-manage-menu {
    width: 148px !important;
    min-width: 148px !important;
    padding: 4px 0 !important;
    overflow: visible !important;
    border: 1px solid #dfe4ee !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .10) !important
}

.pnodex-dev-quick-tools .pnodex-dev-manage-menu::before,
.pnodex-dev-quick-tools .pnodex-dev-manage-menu::after {
    position: absolute;
    top: 14px;
    width: 0;
    height: 0;
    content: ""
}

.pnodex-dev-quick-tools .pnodex-dev-manage-menu::before {
    right: -9px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 9px solid #dfe4ee
}

.pnodex-dev-quick-tools .pnodex-dev-manage-menu::after {
    right: -7px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 8px solid #fff
}

.pnodex-dev-quick-tools .pnodex-dev-manage-menu>li {
    display: block !important;
    width: 100% !important;
    height: 41px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #edf0f4 !important;
    background: #fff !important
}

.pnodex-dev-quick-tools .pnodex-dev-manage-menu>li:last-child {
    border-bottom: 0 !important
}

.pnodex-dev-quick-tools .pnodex-dev-manage-menu button {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 9px !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 40px !important;
    min-height: 40px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #344054 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    box-shadow: none !important
}

.pnodex-dev-quick-tools .pnodex-dev-manage-menu button:hover {
    background: #f8f9fb !important;
    color: #111827 !important
}

.pnodex-dev-quick-tools .pnodex-dev-manage-menu button i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 14px !important;
    width: 14px !important;
    margin: 0 !important;
    color: #667085 !important;
    font-size: 13px !important
}

@media (min-width: 769px) {
    .pnodex-dev-quick-tools {
        position: fixed;
        top: 180px;
        right: max(80px, calc(50% - (1020px / 2) - 80px));
        z-index: 900;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 44px
    }
}

@media (max-width: 768px) {
    .pnodex-dev-quick-tools {
        display: flex;
        justify-content: flex-end;
        gap: 8px;
        margin: 12px 0
    }

    .pnodex-dev-quick-btn {
        width: 38px !important;
        min-width: 38px !important;
        height: 38px !important;
        min-height: 38px !important;
        font-size: 15px !important
    }

    .pnodex-dev-manage-menu {
        top: 46px;
        right: 0
    }

    .pnodex-dev-quick-tools .pnodex-dev-manage-menu::before {
        top: -9px;
        right: 14px;
        border-right: 8px solid transparent;
        border-bottom: 9px solid #dfe4ee;
        border-left: 8px solid transparent;
        border-top: 0
    }

    .pnodex-dev-quick-tools .pnodex-dev-manage-menu::after {
        top: -7px;
        right: 15px;
        border-right: 7px solid transparent;
        border-bottom: 8px solid #fff;
        border-left: 7px solid transparent;
        border-top: 0
    }
}

.pnodex-dev-view-actions .pnodex-dev-btn.is-report {
    border-color: #f1d4d7;
    background: #fff;
    color: #d84e5b
}

/* 목록 검색은 버튼으로 여는 중앙 팝업으로 제공. */
.pnodex-dev-search-modal {
    position: fixed;
    inset: 0;
    z-index: 10000
}

.pnodex-dev-search-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(15, 23, 42, .35)
}

.pnodex-dev-search-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: min(360px, calc(100% - 32px));
    border: 1px solid #e1e6ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
    transform: translate(-50%, -50%)
}

.pnodex-dev-search-dialog h3 {
    margin: 0;
    padding: 18px 20px;
    border-bottom: 1px solid #edf0f5;
    color: #111827;
    font-size: 18px
}

.pnodex-dev-search-dialog form {
    position: relative;
    padding: 20px
}

.pnodex-dev-search-dialog select {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #dfe4ee;
    border-radius: 8px;
    background: #fff
}

.pnodex-dev-search-bar {
    display: flex;
    margin-top: 10px;
    border: 1px solid #dfe4ee;
    border-radius: 8px;
    overflow: hidden
}

.pnodex-dev-search-bar input {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 12px;
    border: 0;
    outline: 0
}

.pnodex-dev-search-bar button {
    width: 44px;
    border: 0;
    background: #9825ef;
    color: #fff;
    cursor: pointer
}

.pnodex-dev-search-close {
    position: absolute;
    top: -52px;
    right: 8px;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    color: #667085;
    cursor: pointer
}

/* 선택삭제 전용 확인 레이어. */
.pnodex-dev-delete-modal {
    position: fixed;
    inset: 0;
    z-index: 11000
}

.pnodex-dev-delete-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(15, 23, 42, .42)
}

.pnodex-dev-delete-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: min(360px, calc(100% - 32px));
    padding: 26px 24px 22px;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
    text-align: center;
    transform: translate(-50%, -50%)
}

.pnodex-dev-delete-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff1f0;
    color: #d92d20;
    font-size: 19px
}

.pnodex-dev-delete-dialog h3 {
    margin: 14px 0 8px;
    color: #1d2939;
    font-size: 18px
}

.pnodex-dev-delete-dialog p {
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.65
}

.pnodex-dev-delete-dialog>div {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px
}

.pnodex-dev-delete-dialog button {
    min-width: 88px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
    color: #475467;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer
}

.pnodex-dev-delete-dialog .pnodex-dev-delete-confirm {
    border-color: #d92d20;
    background: #d92d20;
    color: #fff
}

.pnodex-dev-category {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 16px 0
}

.pnodex-dev-category a {
    flex: 0 0 auto;
    padding: 7px 13px;
    border: 1px solid #e0e5ed;
    border-radius: 18px;
    background: #fff;
    color: #687386;
    font-size: 12px
}

.pnodex-dev-category a.is-active,
.pnodex-dev-category a:hover {
    border-color: #6b4be9;
    background: #6b4be9;
    color: #fff
}

.pnodex-dev-select-all {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    border-bottom: 1px solid #e4e8ef;
    color: #8993a5;
    font-size: 12px
}

.pnodex-dev-list {
    border-bottom: 1px solid #dfe4ec
}

.pnodex-dev-row {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) 145px 90px 68px;
    align-items: center;
    min-height: 72px;
    border-bottom: 1px solid #e6eaf0;
    background: #fff;
    color: #8993a5;
    font-size: 12px
}

.pnodex-dev-row:last-child {
    border-bottom: 0
}

.pnodex-dev-row:hover {
    background: #fbfbff
}

.pnodex-dev-row.is-notice {
    background: #fff4e6
}

.pnodex-dev-num {
    text-align: center;
    font-weight: 700
}

.pnodex-dev-num strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 22px;
    border-radius: 12px;
    background: #e7321f;
    color: #fff;
    font-size: 11px
}

.pnodex-dev-subject-wrap {
    min-width: 0;
    padding: 11px 16px 11px 0
}

.pnodex-dev-subject a {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: #172033;
    font-size: 14px;
    font-weight: 600
}

.pnodex-dev-title-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 46px;
    height: 20px;
    padding: 0 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap
}

.pnodex-dev-subject a:hover {
    color: #6b4be9
}

.pnodex-dev-subject-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.pnodex-dev-subject-badges {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 4px;
}

.pnodex-dev-list-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 18px;
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.pnodex-dev-list-badge.is-hot {
    background: #fff0e8;
    color: #e45c18;
}

.pnodex-dev-list-badge.is-new {
    background: #fff0f1;
    color: #e65361;
}

.pnodex-dev-list-badge.is-file {
    background: #eef4ff;
    color: #4772d9;
}

.pnodex-dev-list-badge.is-link {
    background: #edf8f4;
    color: #258466;
}

.pnodex-dev-list-badge.is-secret {
    background: #f3f1f7;
    color: #746c83;
}

.pnodex-dev-list-badge svg {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pnodex-dev-comment {
    flex: 0 0 auto;
    color: #6b4be9;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.pnodex-dev-new,
.pnodex-dev-reply {
    flex: 0 0 auto;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700
}

.pnodex-dev-new {
    background: #fff0f1;
    color: #e65361
}

.pnodex-dev-reply {
    background: #eef1ff;
    color: #6558d9
}

.pnodex-dev-reply.is-update {
    background: #e8f7ef;
    color: #168651
}

.pnodex-dev-old-version {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 20px;
    padding: 2px 7px;
    border: 1px solid #e1e5eb;
    border-radius: 4px;
    background: #f2f4f7;
    color: #707b8c;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap
}

.pnodex-dev-row-tags {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 7px;
    overflow: hidden
}

.pnodex-dev-row-tags>span {
    flex: 0 0 auto;
    padding: 2px 6px;
    border-radius: 4px;
    background: #f2f4f8;
    color: #7d8797;
    font-size: 10px
}

.pnodex-dev-status.is-progress {
    background: #fff1d9;
    color: #b16d00
}

.pnodex-dev-status.is-done {
    background: #e7f8ef;
    color: #168651
}

.pnodex-dev-status.is-ended {
    background: #f0f1f4;
    color: #727b89
}

.pnodex-dev-name {
    position: relative;
    z-index: 2;
    min-width: 0;
    overflow: visible;
    text-align: left
}

.pnodex-dev-name .sv_wrap {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    min-width: 0 !important;
    overflow: visible !important
}

.pnodex-dev-name .sv_member,
.pnodex-dev-name .sv_guest {
    display: inline-flex !important;
    align-items: center !important;
    max-width: 130px !important;
    overflow: hidden !important;
    color: #737d8f !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    cursor: pointer !important
}

.pnodex-dev-name .profile_img,
.pnodex-dev-name .profile_img img {
    display: inline-flex !important;
    flex: 0 0 22px !important;
    width: 22px !important;
    height: 22px !important;
    margin: 0 5px 0 0 !important;
    border-radius: 6px !important;
    object-fit: cover !important
}

.pnodex-dev-name .sv_wrap .sv {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    z-index: 10050 !important;
    display: none !important;
    width: 150px !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: #2f3338 !important;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .22) !important
}

.pnodex-dev-name .sv_wrap .sv.sv_on {
    display: block !important
}

.pnodex-dev-name .sv_wrap .sv::before {
    position: absolute !important;
    top: -6px !important;
    left: 16px !important;
    width: 0 !important;
    height: 0 !important;
    border-right: 6px solid transparent !important;
    border-bottom: 6px solid #2f3338 !important;
    border-left: 6px solid transparent !important;
    content: "" !important
}

.pnodex-dev-name .sv_wrap .sv a {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 8px 11px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    white-space: nowrap !important
}

.pnodex-dev-name .sv_wrap .sv a:last-child {
    border-bottom: 0 !important
}

.pnodex-dev-name .sv_wrap .sv a:hover,
.pnodex-dev-name .sv_wrap .sv a:focus {
    background: #24272b !important;
    color: #fff !important
}

.pnodex-dev-row:has(.pnodex-dev-name .sv_on) {
    z-index: 60
}

.pnodex-dev-date,
.pnodex-dev-download {
    text-align: center
}

.pnodex-dev-download span {
    display: none
}

.pnodex-dev-check {
    position: absolute;
    left: 0;
    z-index: 2
}

.pnodex-dev-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    color: #9aa3b1
}

.pnodex-dev-empty i {
    margin-bottom: 13px;
    font-size: 30px
}

.pnodex-dev-empty strong {
    color: #525d6d;
    font-size: 15px
}

.pnodex-dev-empty span {
    margin-top: 6px;
    font-size: 12px
}

.pnodex-dev-list-actions,
.pnodex-dev-view-actions,
.pnodex-dev-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px
}

.pnodex-dev-list-actions>div,
.pnodex-dev-view-actions>div {
    display: flex;
    gap: 7px
}

.pnodex-dev-btn,
.pnodex-dev-list-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid #d9dee7;
    border-radius: 6px;
    background: #fff;
    color: #566173;
    font: inherit;
    font-size: 12px;
    cursor: pointer
}

.pnodex-dev-btn.is-primary {
    border-color: #8f20f4;
    background: #8f20f4;
    color: #fff
}

.pnodex-dev-btn.is-danger {
    border-color: #f1d4d7;
    color: #d84e5b
}

.pnodex-dev-search {
    display: flex;
    justify-content: center;
    margin-top: 22px
}

.pnodex-dev-search select,
.pnodex-dev-search input {
    height: 40px;
    border: 1px solid #d8dde5;
    background: #fff;
    color: #4b5565;
    font: inherit
}

.pnodex-dev-search select {
    padding: 0 12px;
    border-radius: 6px 0 0 6px
}

.pnodex-dev-search input {
    width: 280px;
    padding: 0 13px;
    border-left: 0
}

.pnodex-dev-search button {
    width: 44px;
    border: 0;
    border-radius: 0 6px 6px 0;
    background: #2c3443;
    color: #fff
}

.pg_wrap {
    margin-top: 30px
}

.pnodex-dev-form-head {
    align-items: flex-start;
    flex-direction: column
}

.pnodex-dev-write form {
    margin-top: 24px
}

.pnodex-dev-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
}

.pnodex-dev-author-grid:empty {
    display: none
}

.pnodex-dev-form-grid label,
.pnodex-dev-field,
.pnodex-dev-file-field label {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.pnodex-dev-form-grid span,
.pnodex-dev-field>span,
.pnodex-dev-editor>span,
.pnodex-dev-file-field span,
.pnodex-dev-options>span {
    color: #3c4656;
    font-size: 12px;
    font-weight: 700
}

.pnodex-dev-form-grid input,
.pnodex-dev-form-grid select,
.pnodex-dev-field input,
.pnodex-dev-field select,
.pnodex-dev-field textarea,
.pnodex-dev-file-field input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 13px;
    border: 1px solid #d8dde5;
    border-radius: 6px;
    background: #fff;
    color: #293345;
    font: inherit
}

.pnodex-dev-field textarea {
    height: auto;
    min-height: 130px;
    padding: 12px;
    line-height: 1.65;
    resize: vertical
}

.pnodex-dev-field,
.pnodex-dev-editor,
.pnodex-dev-options,
.pnodex-dev-file-field {
    margin-top: 17px
}

.pnodex-dev-meta-form {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid #e0e5ed;
    border-radius: 10px;
    background: #fafbfe
}

.pnodex-dev-meta-form>header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px
}

.pnodex-dev-meta-form>header strong {
    font-size: 15px
}

.pnodex-dev-meta-form>header span {
    color: #929bab;
    font-size: 11px
}

.pnodex-dev-options {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px;
    border: 1px solid #e1e5ea;
    border-radius: 6px;
    background: #fafbfc
}

.pnodex-dev-editor>span {
    display: block;
    margin-bottom: 8px
}

.pnodex-dev-file-field {
    padding: 15px;
    border: 1px solid #e1e5ea;
    border-radius: 7px;
    background: #fafbfc
}

.pnodex-dev-file-delete {
    display: block;
    margin: 9px 0;
    color: #7f8998;
    font-size: 12px
}

/* pb_basic과 동일한 드래그·클릭 첨부파일 UI */
.pnodex-dev-file-area {
    margin-top: 24px
}

.pnodex-dev-file-guide {
    margin: 0 0 9px;
    color: #8f9aad;
    font-size: 12px
}

.pnodex-dev-file-drop {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    min-height: 128px;
    border: 1px dashed #dbe2eb;
    border-radius: 10px;
    background: #fff;
    color: #8f9aad;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .16s ease, color .16s ease, background-color .16s ease
}

.pnodex-dev-file-drop i {
    color: #a8b2c2;
    font-size: 19px
}

.pnodex-dev-file-drop:hover,
.pnodex-dev-file-drop:focus,
.pnodex-dev-file-drop.is-dragover {
    outline: 0;
    border-color: #a13af4;
    background: #fcfaff;
    color: #8b22e5
}

.pnodex-dev-file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px
}

.pnodex-dev-file-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    min-height: 34px;
    padding: 0 9px 0 11px;
    border: 1px solid #e2d3f7;
    border-radius: 8px;
    background: #fbf8ff;
    color: #7532bd;
    font-size: 12px
}

.pnodex-dev-file-chip strong {
    overflow: hidden;
    max-width: 230px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.pnodex-dev-file-remove {
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #9a5ad3;
    line-height: 20px;
    cursor: pointer
}

.pnodex-dev-file-remove:hover {
    background: #eadcff;
    color: #7223b6
}

.pnodex-dev-file-source {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap
}

.pnodex-dev-captcha {
    margin-top: 18px
}

.pnodex-dev-form-actions {
    justify-content: center;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid #e4e7ec
}

/* pb_basic 글쓰기 하단 버튼과 동일한 크기·색상. */
.pnodex-dev-form-actions .pnodex-dev-btn {
    min-width: 110px;
    min-height: 0;
    height: 46px;
    margin: 0;
    padding: 0 22px;
    border: 1px solid #d9dee8;
    border-radius: 11px;
    background: #fff;
    color: #35425c;
    font-size: 14px;
    font-weight: 500
}

.pnodex-dev-form-actions .pnodex-dev-btn.is-primary {
    border-color: transparent;
    background: #9825ef;
    color: #fff
}

.pnodex-dev-form-actions .pnodex-dev-btn.is-primary:hover {
    background: #7e14d7
}

.pnodex-dev-view-head {
    padding: 17px 30px 24px;
    border-bottom: 1px solid #e1e6ed
}

.pnodex-dev-view-badges {
    display: flex;
    align-items: center;
    gap: 7px
}

.pnodex-dev-view-head h1 {
    margin: 7px 0 16px;
    color: #161d2a;
    font-size: 16px;
    line-height: 1.4
}

.pnodex-dev-view-cate,
.pnodex-dev-release-badge,
.pnodex-dev-view-badges .pnodex-dev-status {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 5px;
    background: #eeecff;
    color: #6558d9;
    font-size: 11px;
    font-weight: 700
}

.pnodex-dev-view-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 18px;
    width: 100%;
    color: #8992a1;
    font-size: 12px
}

.pnodex-dev-view-meta-left,
.pnodex-dev-view-stats {
    display: flex;
    align-items: center
}

.pnodex-dev-view-meta-left {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px
}

.pnodex-dev-view-stats {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 16px;
    margin-left: auto;
    white-space: nowrap
}

.pnodex-dev-view-author-icon,
.pnodex-dev-view-author-icon .profile_img,
.pnodex-dev-view-author-icon img,
.pnodex-dev-author-icon-fallback {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 22px !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 6px !important;
    object-fit: cover !important
}

.pnodex-dev-author-icon-fallback {
    background: #eef1f5;
    color: #8b95a6;
    font-size: 11px
}

.pnodex-dev-view-meta-left time {
    flex: 0 0 auto;
    color: #8992a1;
    white-space: nowrap
}

.pnodex-dev-view-meta-left .pnodex-dev-status,
.pnodex-dev-view-meta-left .pnodex-dev-release-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 38px;
    height: 18px;
    padding: 0 8px;
    border-radius: 999px;
    box-sizing: border-box;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap
}

.pnodex-dev-view .pnodex-dev-hot-level {
    display: inline-flex !important;
    position: relative !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    width: var(--pnodex-hot-width, 46px) !important;
    min-width: 5px !important;
    height: 17px !important;
    margin: 0 12px 0 0 !important;
    padding: 0 6px !important;
    overflow: visible !important;
    border-radius: 4px 0 0 4px !important;
    background: linear-gradient(90deg, #fa5600 0%, #fb7100 22%, #fc9800 50%, #ffbd18 76%, #ffe06a 100%) !important;
    color: #fff !important;
    box-sizing: border-box !important;
    font: 700 13px/17px Tahoma, Helvetica, "Microsoft Yahei", sans-serif !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-shadow: 1px 1px 1px #e40 !important;
    vertical-align: middle !important;
    white-space: nowrap !important
}

.pnodex-dev-view .pnodex-dev-hot-level::after {
    position: absolute !important;
    top: 0 !important;
    right: -10px !important;
    width: 11px !important;
    height: 17px !important;
    background: linear-gradient(90deg, #ffd347 0%, #ffe87b 100%) !important;
    content: "" !important;
    clip-path: polygon(0 0, 100% 0, 67% 24%, 100% 49%, 66% 74%, 100% 100%, 0 100%, 22% 50%) !important
}

.pnodex-dev-view-author {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-width: 0;
    overflow: visible;
    color: #3c4656;
    font-weight: 700
}

.pnodex-dev-view-author .sv_wrap {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    min-width: 0 !important;
    overflow: visible !important
}

.pnodex-dev-view-author .sv_member,
.pnodex-dev-view-author .sv_guest {
    display: inline-flex !important;
    align-items: center !important;
    max-width: 130px !important;
    overflow: hidden !important;
    color: #3c4656 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 22px !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    cursor: pointer !important
}

.pnodex-dev-view-author .sv_wrap .sv {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    z-index: 10050 !important;
    display: none !important;
    width: 150px !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: #2f3338 !important;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .22) !important
}

.pnodex-dev-view-author .sv_wrap .sv.sv_on {
    display: block !important
}

.pnodex-dev-view-author .sv_wrap .sv::before {
    position: absolute !important;
    top: -6px !important;
    left: 16px !important;
    width: 0 !important;
    height: 0 !important;
    border-right: 6px solid transparent !important;
    border-bottom: 6px solid #2f3338 !important;
    border-left: 6px solid transparent !important;
    content: "" !important
}

.pnodex-dev-view-author .sv_wrap .sv a {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 8px 11px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    white-space: nowrap !important
}

.pnodex-dev-view-author .sv_wrap .sv a:last-child {
    border-bottom: 0 !important
}

.pnodex-dev-view-author .sv_wrap .sv a:hover,
.pnodex-dev-view-author .sv_wrap .sv a:focus {
    background: #24272b !important;
    color: #fff !important
}

.pnodex-dev-view-meta-left:has(.pnodex-dev-view-author .sv_on) {
    position: relative;
    z-index: 60
}

.pnodex-dev-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid #e1e6ed;
    background: #fafbfe
}

.pnodex-dev-specs dl {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 10px;
    margin: 0;
    padding: 15px 18px;
    border-right: 1px solid #e7eaf0;
    border-bottom: 1px solid #e7eaf0
}

.pnodex-dev-specs dl:nth-child(3n) {
    border-right: 0
}

.pnodex-dev-specs dt {
    color: #8a94a5;
    font-size: 11px
}

.pnodex-dev-specs dd {
    margin: 0;
    color: #344054;
    font-size: 12px;
    font-weight: 600
}

.pnodex-dev-content {
    min-height: 320px;
    padding: 42px 30px 56px;
    color: #2a3342;
    font-size: 15px;
    line-height: 1.85
}

.pnodex-dev-content img {
    max-width: 100%;
    height: auto
}

.pnodex-dev-files,
.pnodex-dev-project-links,
.pnodex-dev-changelog {
    padding: 18px 30px;
    border-bottom: 1px solid #edf0f3;
    background: #fafbfc
}

.pnodex-dev-files h2,
.pnodex-dev-project-links h2,
.pnodex-dev-changelog h2 {
    margin: 0 0 11px;
    font-size: 13px
}

.pnodex-dev-files a {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 7px 0;
    color: #4e596a;
    font-size: 12px
}

.pnodex-dev-files a span {
    color: #929baa
}

.pnodex-dev-project-links>div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.pnodex-dev-project-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid #dfe4eb;
    border-radius: 6px;
    background: #fff;
    color: #4c5768;
    font-size: 12px
}

.pnodex-dev-changelog div {
    color: #4a5567;
    font-size: 13px;
    line-height: 1.75;
    white-space: normal
}

.pnodex-dev-vote {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 25px;
    border-top: 1px solid #e1e6ed;
    background: #fafafa
}

.pnodex-dev-vote a {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 2px 8px;
    min-width: 104px;
    padding: 11px 15px;
    border: 1px solid #dfe3e8;
    border-radius: 20px;
    background: #fff;
    color: #5d6878
}

.pnodex-dev-vote a span {
    grid-column: 1/-1;
    text-align: center;
    font-size: 10px
}

.pnodex-dev-comments {
    margin-top: 38px
}

.pnodex-dev-comments>h2 {
    margin: 0;
    padding-bottom: 13px;
    border-bottom: 1px solid #dfe4ec;
    font-size: 15px
}

.pnodex-dev-comments>h2 strong {
    color: #6f63e8
}

.pnodex-dev-comment-item {
    padding: 20px 18px;
    border-bottom: 1px solid #e6e9ee
}

.pnodex-dev-comment-item header {
    display: flex;
    align-items: center;
    gap: 12px
}

.pnodex-dev-comment-item header time {
    color: #9aa3af;
    font-size: 11px
}

.pnodex-dev-comment-content {
    padding: 12px 0;
    color: #384253;
    font-size: 14px;
    line-height: 1.7
}

.pnodex-dev-comment-actions {
    text-align: right
}

.pnodex-dev-comment-actions a {
    margin-left: 10px;
    color: #7c8696;
    font-size: 12px
}

.pnodex-dev-comment-empty {
    padding: 46px 0;
    text-align: center;
    color: #9ca4b1
}

.pnodex-dev-comment-form {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #fafbfc
}

.pnodex-dev-comment-editor {
    display: flex
}

.pnodex-dev-comment-editor textarea {
    flex: 1;
    min-height: 104px;
    padding: 13px;
    border: 1px solid #d8dde5;
    border-radius: 6px 0 0 6px;
    resize: vertical;
    font: inherit
}

.pnodex-dev-comment-editor button {
    width: 86px;
    border: 0;
    border-radius: 0 6px 6px 0;
    background: #8f20f4;
    color: #fff
}

.pnodex-dev-comment-info {
    display: flex;
    gap: 8px;
    margin-top: 10px
}

.pnodex-dev-comment-info input {
    height: 38px;
    padding: 0 11px;
    border: 1px solid #d8dde5;
    border-radius: 5px
}

.pnodex-dev-comment-limit {
    margin: 8px 0 0;
    color: #9099a7;
    font-size: 11px
}


/* 개발 게시판 글쓰기에서는 에디터 툴바가 사이트 헤더를 덮지 않도록 고정 해제. */
.pnodex-dev-editor .pbediitor-toolbar,
.pnodex-dev-editor .pbediitor-ui-toolbar,
.pnodex-dev-editor .pb-editor-toolbar,
.pnodex-dev-editor [class*="editor-toolbar"] {
    position: static;
    top: auto;
    z-index: 1;
}


/* 개발 게시판 에디터를 독립된 쌓임 영역으로 제한. */
.pnodex-dev-editor {
    position: relative;
    z-index: 0;
    isolation: isolate;
}

.pnodex-dev-editor>* {
    max-width: 100%;
}

/* 댓글 이모티콘 선택창을 버튼 아래 레이어로 표시. */
.pb-comment-emoji-picker {
    position: absolute;
    z-index: 1200;
    width: min(440px, calc(100vw - 20px));
    max-height: 360px;
    overflow: hidden;
    border: 1px solid #dfe4ec;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(23, 32, 51, .16);
}

.pb-comment-emoji-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    border-bottom: 1px solid #e7eaf0;
    background: #fafbfe;
}

.pb-comment-emoji-tab {
    flex: 0 0 auto;
    height: 40px;
    padding: 0 13px;
    border: 0;
    border-right: 1px solid #e7eaf0;
    background: transparent;
    color: #687386;
    font: inherit;
    font-size: 12px;
    cursor: pointer;
}

.pb-comment-emoji-tab.is-active {
    background: #fff;
    color: #8f20f4;
    font-weight: 700;
}

.pb-comment-emoji-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(34px, 1fr));
    gap: 6px;
    max-height: 300px;
    padding: 12px;
    overflow-y: auto;
}

.pb-comment-emoji-grid button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 40px;
    padding: 4px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: #fff;
    font-size: 22px;
    cursor: pointer;
}

.pb-comment-emoji-grid button:hover {
    border-color: #dfd7ff;
    background: #f7f4ff;
}

.pb-comment-emoji-grid img {
    display: block;
    max-width: 100%;
    max-height: 32px;
    object-fit: contain;
}

.pb-comment-emoji-empty {
    grid-column: 1 / -1;
    padding: 36px 10px;
    color: #929bab;
    text-align: center;
    font-size: 12px;
}

/* 실제 비밀댓글 체크박스는 숨기고 전용 라벨만 표시. */
.pb-comment-submit-row .secret_cm input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* 개발 게시판 댓글 영역 디자인 복구. */
.pnodex-dev-view .pb-comment-section {
    width: 100%;
    margin-top: 42px;
    color: #172033;
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pnodex-dev-view .pb-comment-section .cmt_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 54px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #dfe4ec;
    background: transparent;
    color: #172033;
    font: inherit;
    cursor: pointer;
}

.pnodex-dev-view .pb-comment-section .cmt_btn .total {
    font-size: 14px;
    font-weight: 700;
}

.pnodex-dev-view .pb-comment-section .cmt_more {
    width: 9px;
    height: 9px;
    margin-right: 4px;
    border-right: 2px solid #aab3c1;
    border-bottom: 2px solid #aab3c1;
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.pnodex-dev-view .pb-comment-section .cmt_btn_op .cmt_more {
    transform: rotate(-135deg);
}

.pnodex-dev-view .pb-comment-body {
    display: block;
}

.pnodex-dev-view .pb-comment-section #bo_vc {
    position: relative;
    min-height: 190px;
    padding: 40px;
}

.pnodex-dev-view .pb-comment-section #bo_vc>h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.pnodex-dev-view .pb-comment-section #bo_vc_empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    margin: 0;
    color: #a0a9b8;
    font-size: 12px;
    text-align: center;
}

.pnodex-dev-view .pb-comment-item {
    position: relative;
    padding: 20px 4px;
    border-bottom: 1px solid #e7eaf0;
}

.pnodex-dev-view .pb-comment-item .cm_wrap>header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pnodex-dev-view .pb-comment-item .cm_wrap>header>h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.pnodex-dev-view .pb-comment-author {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: visible;
    color: #273143;
    font-size: 13px;
    font-weight: 600;
}

.pnodex-dev-view .pb-comment-member-icon,
.pnodex-dev-view .pb-comment-member-icon img {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    object-fit: cover;
}

.pnodex-dev-view .pb-comment-author .sv_wrap {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    min-width: 0 !important;
    overflow: visible !important
}

.pnodex-dev-view .pb-comment-author .sv_member,
.pnodex-dev-view .pb-comment-author .sv_guest {
    display: inline-flex !important;
    align-items: center !important;
    max-width: 130px !important;
    overflow: hidden !important;
    color: #273143 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 22px !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    cursor: pointer !important
}

.pnodex-dev-view .pb-comment-author .sv_wrap .sv {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    z-index: 10050 !important;
    display: none !important;
    width: 150px !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: #2f3338 !important;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .22) !important
}

.pnodex-dev-view .pb-comment-author .sv_wrap .sv.sv_on {
    display: block !important
}

.pnodex-dev-view .pb-comment-author .sv_wrap .sv::before {
    position: absolute !important;
    top: -6px !important;
    left: 16px !important;
    width: 0 !important;
    height: 0 !important;
    border-right: 6px solid transparent !important;
    border-bottom: 6px solid #2f3338 !important;
    border-left: 6px solid transparent !important;
    content: "" !important
}

.pnodex-dev-view .pb-comment-author .sv_wrap .sv a {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 8px 11px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    white-space: nowrap !important
}

.pnodex-dev-view .pb-comment-author .sv_wrap .sv a:last-child {
    border-bottom: 0 !important
}

.pnodex-dev-view .pb-comment-author .sv_wrap .sv a:hover,
.pnodex-dev-view .pb-comment-author .sv_wrap .sv a:focus {
    background: #24272b !important;
    color: #fff !important
}

.pnodex-dev-view .pb-comment-item:has(.pb-comment-author .sv_on) {
    z-index: 70
}

.pnodex-dev-view .pb-comment-meta {
    color: #98a1af;
    font-size: 11px;
}

.pnodex-dev-view .cmt_contents {
    padding: 12px 0 0 28px;
    color: #394456;
    font-size: 14px;
    line-height: 1.7;
}

.pnodex-dev-view .cmt_contents p {
    margin: 0;
}

.pnodex-dev-view .bo_vl_opt {
    position: absolute;
    top: 18px;
    right: 4px;
}

.pnodex-dev-view .btn_cm_opt {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8d97a6;
    cursor: pointer;
}

.pnodex-dev-view .bo_vc_act {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 10;
    display: none;
    min-width: 72px;
    margin: 0;
    padding: 6px;
    border: 1px solid #dfe4ec;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(24, 32, 48, .12);
    list-style: none;
}

.pnodex-dev-view .bo_vc_act a {
    display: block;
    padding: 7px 9px;
    border-radius: 5px;
    color: #566173;
    font-size: 12px;
}

.pnodex-dev-view .bo_vc_act a:hover {
    background: #f5f2ff;
    color: #7e22e8;
}

/* 댓글 입력 카드를 기존 PBuilder 디자인으로 고정. */
.pnodex-dev-view #bo_vc_w {
    margin-top: 0;
}

.pnodex-dev-view #bo_vc_w>h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.pnodex-dev-view #fviewcomment {
    margin: 0;
}

.pnodex-dev-view .pb-comment-compose {
    position: relative;
    overflow: hidden;
    border: 1px solid #d9dfe8;
    border-radius: 9px;
    background: #fffef9;
}

.pnodex-dev-view .pb-comment-emoji-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 20px;
    border-bottom: 0;
}

.pnodex-dev-view .pb-comment-emoji-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8f20f4;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.pnodex-dev-view .pb-comment-char-count {
    color: #9b829a;
    font-size: 11px;
    font-weight: 400;
}

.pnodex-dev-view .pb-comment-editor {
    min-height: 125px;
    padding: 0 20px 18px;
}

.pnodex-dev-view .pb-comment-content {
    display: block;
    width: 100%;
    min-height: 106px;
    outline: 0;
    color: #303a4b;
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-wrap;
    word-break: break-word;
}

.pnodex-dev-view .pb-comment-content:empty::before {
    color: #a6afbe;
    content: attr(data-placeholder);
    pointer-events: none;
}

.pnodex-dev-view .pb-comment-upload-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0 20px 14px;
    list-style: none;
}

.pnodex-dev-view .pb-comment-dropzone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 16px;
    border-top: 1px dashed #dde2ea;
    border-bottom: 1px dashed #dde2ea;
    background: #fff;
    color: #929bab;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
}

.pnodex-dev-view .pb-comment-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.pnodex-dev-view .bo_vc_w_wr {
    padding: 0;
}

.pnodex-dev-view .pb-comment-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 0 18px;
    border-radius: 0 0 8px 8px;
    background: #fff;
}

.pnodex-dev-view .pb-comment-point-guide {
    color: #657083;
    font-size: 12px;
}

.pnodex-dev-view .pb-comment-point-guide b {
    color: #8f20f4;
}

.pnodex-dev-view .pb-comment-submit-row .btn_confirm {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pnodex-dev-view .secret_cm {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.pnodex-dev-view .pb-comment-secret-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #273143;
    font-size: 12px;
    cursor: pointer;
}

.pnodex-dev-view .pb-comment-secret-label>span {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border: 1px solid #d4dae4;
    border-radius: 5px;
    background: #fff;
}

.pnodex-dev-view .secret_cm input:checked+.pb-comment-secret-label>span {
    border-color: #8f20f4;
    background: #8f20f4;
    box-shadow: inset 0 0 0 4px #fff;
}

.pnodex-dev-view #fviewcomment .btn_submit {
    min-width: 86px;
    height: 42px;
    padding: 0 17px;
    border: 0;
    border-radius: 7px;
    background: #8f20f4;
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.pnodex-dev-view #fviewcomment .btn_submit:hover {
    background: #7d18dd;
}

.pnodex-dev-view #fviewcomment .btn_submit:disabled {
    cursor: default;
    opacity: .65;
}

/* 추천·비추천은 아이콘과 숫자만 표시하고 설명은 호버 레이어로 제공. */
.pnodex-dev-view .pnodex-dev-vote {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 26px 0;
    border-top: 1px solid #e2e6ed;
    background: #fafafa;
}

.pnodex-dev-view .pnodex-dev-vote a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 72px;
    height: 46px;
    min-width: 0;
    padding: 0;
    border: 1px solid #dbe1ea;
    border-radius: 10px;
    background: #fff;
    color: #344054;
    transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.pnodex-dev-view .pnodex-dev-vote a:hover,
.pnodex-dev-view .pnodex-dev-vote a:focus-visible {
    border-color: #b99af4;
    background: #faf7ff;
    color: #8f20f4;
}

.pnodex-dev-view .pnodex-dev-vote a i {
    font-size: 15px;
}

.pnodex-dev-view .pnodex-dev-vote a strong {
    font-size: 13px;
    font-weight: 600;
}

.pnodex-dev-view .pnodex-dev-vote a span {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 30;
    display: block;
    min-width: 50px;
    padding: 6px 8px;
    border-radius: 5px;
    background: #222938;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 4px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    pointer-events: none;
}

.pnodex-dev-view .pnodex-dev-vote a span::after {
    position: absolute;
    top: 100%;
    left: 50%;
    border: 5px solid transparent;
    border-top-color: #222938;
    content: "";
    transform: translateX(-50%);
}

.pnodex-dev-view .pnodex-dev-vote a:hover span,
.pnodex-dev-view .pnodex-dev-vote a:focus-visible span {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* 댓글 이모티콘 메뉴 탭과 아이콘 간격을 균일하게 정리. */
.pb-comment-emoji-picker {
    position: absolute;
    z-index: 10020;
    width: 520px;
    max-width: calc(100vw - 28px);
    overflow: hidden;
    border: 1px solid #dfe4ec;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(34, 42, 60, .18);
}

.pb-comment-emoji-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    padding: 0 14px;
    overflow: hidden;
    border-bottom: 1px solid #eceff4;
    background: #fafbfe;
}

.pb-comment-emoji-tab {
    min-width: 0;
    height: 46px;
    padding: 0 8px;
    overflow: hidden;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #70798a;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 44px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.pb-comment-emoji-tab:hover,
.pb-comment-emoji-tab:focus-visible {
    color: #8f20f4;
    outline: 0;
}

.pb-comment-emoji-tab.is-active {
    border-bottom-color: #8f20f4;
    background: #fff;
    color: #8f20f4;
    font-weight: 700;
}

.pb-comment-emoji-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(44px, 1fr));
    column-gap: 12px;
    row-gap: 12px;
    max-height: 270px;
    padding: 20px 22px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    scrollbar-width: thin;
    scrollbar-color: #d7dce5 transparent;
}

.pb-comment-emoji-grid::-webkit-scrollbar {
    width: 6px;
}

.pb-comment-emoji-grid::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: #d7dce5;
}

.pb-comment-emoji-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    font: inherit;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}

.pb-comment-emoji-item:hover,
.pb-comment-emoji-item:focus-visible {
    background: #f4efff;
    outline: 0;
    transform: translateY(-1px);
}

.pb-comment-emoji-text-item {
    font-size: 24px;
    line-height: 1;
}

.pb-comment-emoji-image-item img {
    display: block;
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
}

.pb-comment-emoji-empty,
.pb-comment-emoji-loading {
    grid-column: 1 / -1;
    padding: 30px 10px;
    color: #929bab;
    font-size: 12px;
    text-align: center;
}

/* 댓글 첨부 미리보기를 90x60 크기로 고정. */
.pnodex-dev-view .pb-comment-upload-item {
    width: 90px;
    min-width: 90px;
}

.pnodex-dev-view .pb-comment-upload-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 60px;
    overflow: hidden;
    border: 1px solid #e0e5ed;
    border-radius: 7px;
    background: #f7f8fb;
}

.pnodex-dev-view .pb-comment-upload-preview img {
    display: block;
    width: 90px;
    height: 60px;
    object-fit: cover;
}

.pnodex-dev-view .pb-comment-upload-preview>i {
    color: #8f98a8;
    font-size: 24px;
}

.pnodex-dev-view .pb-comment-upload-delete {
    position: absolute;
    right: 4px;
    bottom: 4px;
    min-width: 34px;
    height: 22px;
    padding: 0 7px;
    border: 0;
    border-radius: 5px;
    background: rgba(229, 71, 82, .92);
    color: #fff;
    font: inherit;
    font-size: 10px;
    cursor: pointer;
}

.pnodex-dev-view .pb-comment-upload-name {
    display: block;
    width: 90px;
    margin-top: 6px;
    overflow: hidden;
    color: #5f697a;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 댓글 파일 드롭 영역 호버 강조. */
.pnodex-dev-view .pb-comment-dropzone {
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.pnodex-dev-view .pb-comment-dropzone:hover,
.pnodex-dev-view .pb-comment-dropzone:focus-visible,
.pnodex-dev-view .pb-comment-dropzone.is-dragover {
    border-color: #b99af4;
    background: #fbf8ff;
    color: #8f20f4;
    outline: 0;
}


/* 댓글 첨부 미리보기를 입력창과 드롭존 사이의 독립 구역으로 분리. */
.pnodex-dev-view .pb-comment-upload-area {
    display: block;
    min-height: 92px;
    padding: 14px 18px 10px;
    border-top: 1px solid #e6eaf0;
    background: #fff;
}

.pnodex-dev-view .pb-comment-upload-area[hidden] {
    display: none;
}

.pnodex-dev-view .pb-comment-upload-area .pb-comment-upload-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.pnodex-dev-view .pb-comment-upload-item {
    width: 90px;
    min-width: 90px;
}

.pnodex-dev-view .pb-comment-upload-preview {
    position: relative;
    width: 90px;
    height: 60px;
    overflow: hidden;
    border: 1px solid #dce2ea;
    border-radius: 6px;
    background: #f7f8fa;
}

.pnodex-dev-view .pb-comment-upload-preview img {
    display: block;
    width: 90px;
    height: 60px;
    object-fit: cover;
}

.pnodex-dev-view .pb-comment-upload-preview>i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 60px;
    color: #8893a3;
    font-size: 24px;
}

.pnodex-dev-view .pb-comment-upload-delete {
    position: absolute;
    right: 3px;
    bottom: 3px;
    height: 22px;
    padding: 0 6px;
    border: 0;
    border-radius: 4px;
    background: #ef4d5f;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
}

.pnodex-dev-view .pb-comment-upload-name {
    display: block;
    width: 90px;
    margin-top: 6px;
    overflow: hidden;
    color: #697386;
    font-size: 10px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pnodex-dev-view .pb-comment-dropzone {
    border-top: 1px dashed #d9dfea;
}

/* 댓글 첨부 이미지는 90x60 미리보기, 일반 파일은 한 줄로 표시. */
.pnodex-dev-view .pb-comment-attached-files {
    display: block;
    margin-top: 10px;
}

.pnodex-dev-view .pb-comment-attached-images,
.pnodex-dev-view .pb-comment-attached-documents {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px;
}

.pnodex-dev-view .pb-comment-attached-images+.pb-comment-attached-documents {
    margin-top: 10px;
}

.pnodex-dev-view .pb-comment-attached-file {
    text-decoration: none;
}

.pnodex-dev-view .pb-comment-attached-file.is-image {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 60px;
    overflow: hidden;
    border: 1px solid #e2e6ed;
    border-radius: 7px;
    background: #f5f6f8;
}

.pnodex-dev-view .pb-comment-attached-file.is-image img {
    display: block;
    width: 90px;
    height: 60px;
    object-fit: contain;
}

.pnodex-dev-view .pb-comment-attached-file.is-file {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 100%;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 8px;
    background: #f1f3f7;
    color: #667085;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.pnodex-dev-view .pb-comment-attached-file.is-file:hover {
    background: #f1f3f7;
}

.pnodex-dev-view .pb-comment-attached-file.is-file i {
    flex: 0 0 auto;
    color: #8d97a6;
    font-size: 12px;
}

.pnodex-dev-view .pb-comment-attached-file.is-file strong {
    overflow: hidden;
    max-width: 240px;
    color: #566173;
    font-size: 12px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pnodex-dev-view .pb-comment-attached-file.is-file span,
.pnodex-dev-view .pb-comment-attached-file.is-file em {
    flex: 0 0 auto;
    color: #98a1af;
    font-size: 12px;
    font-style: normal;
}

.pnodex-dev-view .pb-comment-attached-file.is-file:hover strong {
    color: #7e22e8;
}


/* 비밀댓글 잠금 아이콘을 SVG로 표시. */
.pnodex-dev-view .pb-comment-secret-lock,
.pnodex-dev-view .pb-comment-secret-icon svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pnodex-dev-view .pb-comment-secret-lock {
    flex: 0 0 auto;
    color: #9aa3b2;
}

.pnodex-dev-view .secret_cm input:checked+.pb-comment-secret-label .pb-comment-secret-lock {
    color: #8f20f4;
}

.pnodex-dev-view .pb-comment-secret-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    color: #8f20f4;
    vertical-align: middle;
}

/* 대댓글·수정 입력창이 댓글 안에서 자연스럽게 이어지도록 정리. */
.pnodex-dev-view .pb-comment-item>.cm_wrap>.bo_vc_w {
    display: block;
    margin-top: 16px;
}

.pnodex-dev-view .pb-comment-item>.cm_wrap>.bo_vc_w:empty {
    display: none;
}

.pnodex-dev-view .pb-comment-item>.cm_wrap>.bo_vc_w #fviewcomment {
    width: 100%;
}

.pnodex-dev-view .pb-comment-item>.cm_wrap>.bo_vc_w .pb-comment-compose {
    width: 100%;
}


/* 댓글 이미지 현재창 레이어. */
html.pb-comment-image-open,
body.pb-comment-image-open {
    overflow: hidden;
}

.pb-comment-image-layer {
    position: fixed;
    inset: 0;
    z-index: 120000;
    display: none;
}

.pb-comment-image-layer.is-open {
    display: block;
}

.pb-comment-image-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 22, 35, .9);
}

.pb-comment-image-stage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 30px 30px;
    outline: 0;
}

.pb-comment-image-large {
    display: block;
    max-width: min(92vw, 1400px);
    max-height: calc(100vh - 112px);
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .34);
}

.pb-comment-image-tools {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    background: rgba(27, 31, 40, .92);
}

.pb-comment-image-tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 42px;
    padding: 0;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .08);
    background: transparent;
    color: #aeb5c1;
    cursor: pointer;
}

.pb-comment-image-tool:last-child {
    border-right: 0;
}

.pb-comment-image-tool:hover,
.pb-comment-image-tool:focus-visible {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    outline: 0;
}

.pb-comment-image-tool svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pb-comment-image-stage:fullscreen {
    background: #111722;
}

.pb-comment-image-stage:fullscreen .pb-comment-image-large {
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
}


/* 긴 코드 블록이 중간에서 끊겨 보이지 않도록 전체 높이로 표시. */
.pnodex-dev-view .pnodex-dev-content .pnodex-dev-code-block {
    position: relative;
    margin: 16px 0;
}

.pnodex-dev-view .pnodex-dev-content pre.pb-pbediitor-post-code {
    display: block;
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 52px 22px 20px;
    border: 1px solid #263244;
    border-radius: 10px;
    background: #111827;
    color: #e5edf8;
    font-family: Consolas, Monaco, "Courier New", monospace;
    font-size: 14px;
    line-height: 1.65;
    white-space: pre;
    overflow-x: auto;
    overflow-y: visible;
    overflow-wrap: normal;
    word-break: normal;
    tab-size: 4;
    box-sizing: border-box;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: #667085 #202938;
}

.pnodex-dev-view .pnodex-dev-content .pnodex-dev-code-copy {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 82px;
    height: 30px;
    padding: 0 10px;
    border: 1px solid #3a4658;
    border-radius: 7px;
    background: #1d2838;
    color: #dbe7f7;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}

.pnodex-dev-view .pnodex-dev-content .pnodex-dev-code-copy:hover,
.pnodex-dev-view .pnodex-dev-content .pnodex-dev-code-copy:focus-visible {
    border-color: #64748b;
    background: #293548;
    color: #fff;
}

.pnodex-dev-view .pnodex-dev-content .pnodex-dev-code-copy.is-copied {
    border-color: #2e7459;
    background: #183e31;
    color: #9be7c0;
}

.pnodex-dev-view .pnodex-dev-content pre.pb-pbediitor-post-code>code {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: inherit;
    white-space: inherit;
}

.pnodex-dev-content .pnodex-code-comment { color: #7ca668; }
.pnodex-dev-content .pnodex-code-selector { color: #d7ba7d; }
.pnodex-dev-content .pnodex-code-property,
.pnodex-dev-content .pnodex-code-variable { color: #9cdcfe; }
.pnodex-dev-content .pnodex-code-string { color: #ce9178; }
.pnodex-dev-content .pnodex-code-number,
.pnodex-dev-content .pnodex-code-color { color: #b5cea8; }
.pnodex-dev-content .pnodex-code-keyword { color: #c586c0; }
.pnodex-dev-content .pnodex-code-tag { color: #569cd6; }

.pnodex-dev-view .pnodex-dev-content pre.pb-pbediitor-post-code::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

.pnodex-dev-view .pnodex-dev-content pre.pb-pbediitor-post-code::-webkit-scrollbar-track {
    background: #202938;
}

.pnodex-dev-view .pnodex-dev-content pre.pb-pbediitor-post-code::-webkit-scrollbar-thumb {
    border: 2px solid #202938;
    border-radius: 999px;
    background: #667085;
}

/* Pnodex Dev Repository UI 2026.07 */
.pnodex-dev-list-titlebar,
.pnodex-dev-form-head {
    align-items: center;
    padding-bottom: 18px
}

.pnodex-dev-board-desc,
.pnodex-dev-form-head>span {
    margin-top: 6px;
    color: #7d8798;
    font-size: 12px;
    line-height: 1.55
}

.pnodex-dev-release-filters {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 0;
    overflow-x: auto;
    border-bottom: 0;
    scrollbar-width: none
}

.pnodex-dev-release-filters::-webkit-scrollbar {
    display: none
}

.pnodex-dev-release-filters a {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid #e0e5ed;
    border-radius: 999px;
    background: #fff;
    color: #667085;
    font-size: 11px;
    font-weight: 700
}

.pnodex-dev-release-filters a:hover,
.pnodex-dev-release-filters a.is-active {
    border-color: #8b25e7;
    background: #f7efff;
    color: #7b16d8
}

.pnodex-dev-list {
    border-top: 1px solid #e3e7ee
}

.pnodex-dev-row {
    grid-template-columns: 62px minmax(0, 1fr) 142px 96px 76px;
    min-height: 88px;
    transition: background-color .16s ease, box-shadow .16s ease
}

.pnodex-dev-row:hover {
    background: #fbf8ff;
    box-shadow: inset 3px 0 #8c20e8
}

.pnodex-dev-row.is-notice {
    min-height: 64px
}

.pnodex-dev-subject-wrap {
    padding-top: 14px;
    padding-bottom: 14px
}

.pnodex-dev-subject a {
    font-size: 14px;
    line-height: 1.4
}

.pnodex-dev-row-summary {
    margin: 5px 0 0;
    overflow: hidden;
    color: #8a94a5;
    font-size: 11px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap
}

.pnodex-dev-row-tags {
    margin-top: 6px
}

.pnodex-dev-row-tags>span {
    min-height: 18px;
    padding: 2px 7px;
    border: 1px solid #e8ebf1;
    background: #f7f8fa;
    line-height: 12px
}

.pnodex-dev-status.is-maintenance {
    border-color: #dce8ff !important;
    background: #edf4ff !important;
    color: #376aca !important
}

.pnodex-dev-download {
    color: #4d5869;
    font-weight: 700
}

.pnodex-dev-download span {
    display: block;
    margin-bottom: 3px;
    color: #9aa3b2;
    font-weight: 400
}

.pnodex-dev-view-head {
    padding: 15px 30px 22px;
    background: linear-gradient(180deg, #fff 0%, #fdfcff 100%)
}

.pnodex-dev-view-badges {
    min-height: 22px;
    flex-wrap: wrap
}

.pnodex-dev-view-badges .pnodex-dev-status,
.pnodex-dev-view-badges .pnodex-dev-release-badge,
.pnodex-dev-view-badges .pnodex-dev-view-cate {
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1
}

.pnodex-dev-view-badges .pnodex-dev-release-badge {
    background: #f1edff;
    color: #6b4be9
}

.pnodex-dev-view-head h1 {
    margin: 9px 0 6px;
    font-weight: 800
}

.pnodex-dev-view-summary {
    margin: 0 0 14px;
    color: #6f798a;
    font-size: 13px;
    line-height: 1.65
}

.pnodex-dev-view-stats span {
    padding-left: 15px;
    border-left: 1px solid #e1e5ec
}

.pnodex-dev-specs {
    margin-top: 10px;
    border: 1px solid #e3e7ed;
    border-radius: 8px;
    background: #fafbfe
}

.pnodex-dev-specs dl:nth-last-child(-n+3) {
    border-bottom: 0
}

.pnodex-dev-release-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 24px;
    padding: 24px 0 10px;
    align-items: start
}

.pnodex-dev-release-main {
    grid-column: 1;
    grid-row: 1;
    min-width: 0
}

.pnodex-dev-release-aside {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    gap: 12px;
    min-width: 0
}

.pnodex-dev-release-layout .pnodex-dev-content {
    min-height: 320px;
    padding: 4px 8px 42px 0
}

.pnodex-dev-release-layout .pnodex-dev-files,
.pnodex-dev-release-layout .pnodex-dev-project-links {
    padding: 16px;
    border: 1px solid #e1e6ed;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(28, 39, 60, .05)
}

.pnodex-dev-release-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px
}

.pnodex-dev-release-title h2 {
    margin: 0
}

.pnodex-dev-release-title>span {
    padding: 3px 7px;
    border-radius: 999px;
    background: #f1edff;
    color: #6b4be9;
    font-size: 10px;
    font-weight: 700
}

.pnodex-dev-release-layout .pnodex-dev-files a {
    display: grid;
    gap: 4px;
    margin-top: 7px;
    padding: 10px;
    border: 1px solid #e4e8ef;
    border-radius: 7px;
    background: #fafbfc
}

.pnodex-dev-release-layout .pnodex-dev-files a:hover {
    border-color: #a44de9;
    background: #fbf7ff
}

.pnodex-dev-release-layout .pnodex-dev-files a strong {
    overflow: hidden;
    color: #303b4d;
    text-overflow: ellipsis;
    white-space: nowrap
}

.pnodex-dev-release-layout .pnodex-dev-project-links>div {
    display: grid;
    grid-template-columns: 1fr
}

.pnodex-dev-release-layout .pnodex-dev-project-links a {
    width: 100%;
    justify-content: flex-start
}

.pnodex-dev-release-layout .pnodex-dev-changelog {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid #e3e7ed;
    border-radius: 8px;
    background: #fafbfc
}

.pnodex-dev-meta-form {
    border-color: #e2e6ed;
    border-radius: 9px;
    background: #fbfcfe
}

.pnodex-dev-meta-form>header {
    padding-bottom: 12px;
    border-bottom: 1px solid #e7eaf0
}

.pnodex-dev-summary-field {
    margin-top: 12px
}

.pnodex-dev-file-area {
    border-radius: 9px;
    background: #fbfcfe
}

/* 2026.07 개발 자료 작성·릴리스 고도화 */
.pnodex-dev-form-head {
    align-items: flex-start;
    text-align: left
}

.pnodex-dev-form-head>div {
    min-width: 0;
    text-align: left
}

.pnodex-dev-form-head>div>span {
    display: block;
    margin-top: 6px
}

.pnodex-dev-draft-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 6px;
    min-width: 92px;
    height: 36px;
    padding: 0 13px;
    border: 1px solid #d9dfea;
    border-radius: 7px;
    background: #fff;
    color: #4f596b;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer
}

.pnodex-dev-draft-open:hover {
    border-color: #8e2ae8;
    color: #7b16d8
}

.pnodex-dev-version-help {
    display: block;
    margin-top: 5px;
    color: #8b95a7;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.45
}

.pnodex-dev-draft-modal[hidden] {
    display: none !important
}

.pnodex-dev-draft-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.pnodex-dev-draft-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(15, 23, 42, .46)
}

.pnodex-dev-draft-dialog {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 22px;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .24)
}

.pnodex-dev-draft-dialog>header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px
}

.pnodex-dev-draft-dialog h2 {
    margin: 0;
    color: #172033;
    font-size: 17px
}

.pnodex-dev-draft-dialog header p {
    margin: 5px 0 0;
    color: #8a94a5;
    font-size: 12px
}

.pnodex-dev-draft-close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #f4f6f9;
    color: #667085;
    cursor: pointer
}

.pnodex-dev-draft-list {
    display: grid;
    gap: 8px
}

.pnodex-dev-draft-slot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid #e3e7ee;
    border-radius: 9px;
    background: #fff
}

.pnodex-dev-draft-slot.is-selected {
    border-color: #8e2ae8;
    box-shadow: 0 0 0 2px rgba(142, 42, 232, .09)
}

.pnodex-dev-draft-select {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 2px 9px;
    flex: 1;
    min-width: 0;
    padding: 4px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer
}

.pnodex-dev-draft-select>span {
    grid-row: 1 / 3;
    align-self: center;
    color: #8b2be2;
    font-size: 10px;
    font-weight: 800
}

.pnodex-dev-draft-select strong {
    overflow: hidden;
    color: #283345;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.pnodex-dev-draft-select time {
    color: #9aa3b2;
    font-size: 11px
}

.pnodex-dev-draft-slot>div {
    display: flex;
    gap: 4px
}

.pnodex-dev-draft-slot>div button {
    padding: 6px 8px;
    border: 1px solid #e0e5ed;
    border-radius: 6px;
    background: #fff;
    color: #687386;
    font-size: 11px;
    cursor: pointer
}

.pnodex-dev-draft-slot>div .pnodex-dev-draft-delete {
    color: #d24b58
}

.pnodex-dev-draft-notice {
    margin: 14px 0 0;
    color: #8b95a7;
    font-size: 12px
}

.pnodex-dev-draft-dialog>footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 800;
}

body.pnodex-dev-modal-open {
    overflow: hidden
}

.pnodex-dev-row {
    grid-template-columns: 76px minmax(0, 1fr) 142px 96px 80px
}

.pnodex-dev-quick-btn {
    gap: 6px !important;
    width: 76px !important;
    min-width: 76px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 9px !important;
    font-size: 14px !important
}

.pnodex-dev-quick-label {
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap
}

.pnodex-dev-manage-menu {
    right: 86px
}

.pnodex-dev-release-layout .pnodex-dev-files a small {
    overflow: hidden;
    color: #8a94a5;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.pnodex-dev-previous-releases details {
    margin-top: 7px;
    border: 1px solid #e4e8ef;
    border-radius: 7px;
    background: #fafbfc
}

.pnodex-dev-previous-releases summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px;
    color: #384457;
    font-size: 11px;
    cursor: pointer;
    list-style: none
}

.pnodex-dev-previous-releases summary::-webkit-details-marker {
    display: none
}

.pnodex-dev-previous-releases summary span {
    color: #929cad;
    font-size: 10px
}

.pnodex-dev-previous-releases details>div {
    padding: 0 7px 7px
}

.pnodex-dev-previous-releases details>div a {
    margin-top: 5px;
    background: #fff
}

@media (max-width: 768px) {
    .pnodex-dev-form-head {
        gap: 12px
    }

    .pnodex-dev-draft-open {
        min-width: 82px;
        height: 34px;
        padding: 0 10px
    }

    .pnodex-dev-row {
        grid-template-columns: 64px minmax(0, 1fr) 58px
    }

    .pnodex-dev-draft-dialog {
        padding: 17px
    }

    .pnodex-dev-draft-slot {
        align-items: stretch;
        flex-direction: column
    }

    .pnodex-dev-draft-slot>div {
        justify-content: flex-end
    }
}

@media (min-width: 769px) {
    .pnodex-dev-quick-tools {
        width: 76px
    }
}

@media (max-width: 768px) {
    .pnodex-dev-quick-btn {
        width: 38px !important;
        min-width: 38px !important;
        height: 38px !important;
        min-height: 38px !important;
        padding: 0 !important
    }

    .pnodex-dev-quick-label {
        display: none
    }

    .pnodex-dev-download span {
        display: none
    }
}

/* 2026.07 목록 상태 정렬 및 보기 저장소 사이드바 보정 */
.pnodex-dev-title-status {
    min-width: 54px;
    height: 20px
}

.pnodex-dev-row-tags {
    margin-left: 60px
}

.pnodex-dev-quick-btn {
    gap: 0 !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    font-size: 18px !important
}

.pnodex-dev-quick-label {
    display: none !important
}

@media (min-width: 769px) {
    .pnodex-dev-quick-tools {
        width: 44px
    }
}

.pnodex-dev-view-head h1 {
    margin: 0;
    line-height: 1.4
}

.pnodex-dev-view-meta {
    margin-top: 20px
}

.pnodex-dev-view-meta-left {
    flex-wrap: wrap;
    gap: 7px
}

.pnodex-dev-view-meta-left .pnodex-dev-status,
.pnodex-dev-view-meta-left .pnodex-dev-release-badge,
.pnodex-dev-view-meta-left .pnodex-dev-view-cate,
.pnodex-dev-view-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 38px;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap
}

.pnodex-dev-view-new {
    background: #e7f8ef;
    color: #168651
}

.pnodex-dev-view-stats {
    gap: 14px
}

.pnodex-dev-view-stats span {
    padding-left: 0;
    border-left: 0
}

.pnodex-dev-release-aside {
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: none;
    overflow: visible
}

body.pb-notice-bar-is-fixed .pnodex-dev-release-aside {
    top: calc(var(--pb-notice-bar-height, 42px) + 100px)
}

.pnodex-dev-release-layout .pnodex-dev-files,
.pnodex-dev-release-layout .pnodex-dev-project-links,
.pnodex-dev-view .pb-view-author-card.is-repository-aside {
    border: 0;
    border-radius: 14px;
    background: #f4f4f5;
    box-shadow: none
}

.pnodex-dev-latest-release {
    padding: 16px !important
}

.pnodex-dev-release-stable {
    margin: -3px 0 10px;
    padding-bottom: 9px;
    border-bottom: 1px solid #dcdde1;
    color: #8a8f99;
    font-size: 10px
}

.pnodex-dev-release-file-row {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    align-items: center;
    gap: 5px;
    padding: 2px 0 10px;
    border-bottom: 1px solid #dcdde1;
    color: #20242b;
    font-size: 11px
}

.pnodex-dev-release-file-row strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.pnodex-dev-release-file-row span {
    color: #858a94
}

.pnodex-dev-release-verified {
    padding: 10px 0;
    color: #252a31;
    font-size: 11px
}

.pnodex-dev-release-verified i {
    width: 18px
}

.pnodex-dev-release-layout .pnodex-dev-files a.pnodex-dev-release-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 28px;
    margin: 0;
    padding: 0 10px;
    border: 0;
    border-radius: 9px;
    background: #202226;
    color: #fff
}

.pnodex-dev-release-layout .pnodex-dev-files a.pnodex-dev-release-download:hover {
    background: #111317
}

.pnodex-dev-release-layout .pnodex-dev-files a.pnodex-dev-release-download strong {
    color: #fff;
    font-size: 11px
}

.pnodex-dev-view .pb-view-author-card.is-repository-aside {
    display: block;
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 16px
}

.pnodex-dev-view .pb-view-author-card.is-repository-aside .pb-view-author-main {
    min-height: 38px;
    gap: 10px;
    width: 100%
}

.pnodex-dev-view .pb-view-author-card.is-repository-aside .pb-view-author-card-img,
.pnodex-dev-view .pb-view-author-card.is-repository-aside .pb-view-author-card-img img {
    flex-basis: 38px;
    width: 38px !important;
    height: 38px !important
}

.pnodex-dev-view .pb-view-author-card.is-repository-aside .pb-view-author-name-row {
    font-size: 12px
}

.pnodex-dev-view .pb-view-author-card.is-repository-aside .pb-view-author-id {
    font-size: 10px
}

.pnodex-dev-view .pb-view-author-card.is-repository-aside .pb-view-author-greeting {
    margin-top: 10px;
    color: #424750;
    font-size: 11px;
    line-height: 1.45
}

.pnodex-dev-view .pb-view-author-card.is-repository-aside .pnodex-dev-author-quick-actions {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 5px;
    width: auto;
    margin: 0 0 0 auto
}

.pnodex-dev-view .pb-view-author-card.is-repository-aside .pnodex-dev-author-subscribe {
    width: 100%;
    min-width: 0;
    margin-top: 10px
}

@media (max-width: 768px) {
    .pnodex-dev-row-tags {
        margin-left: 60px
    }

    .pnodex-dev-quick-btn {
        width: 38px !important;
        min-width: 38px !important;
        height: 38px !important;
        min-height: 38px !important;
        font-size: 15px !important
    }

    .pnodex-dev-release-aside {
        position: static;
        max-height: none;
        overflow: visible
    }

    .pnodex-dev-view-meta {
        align-items: flex-start;
        flex-direction: column
    }

    .pnodex-dev-view-stats {
        margin-left: 0
    }
}

/* pb_basic과 동일한 글쓰기 첨부파일 미리보기 카드. */
.pnodex-dev-write .pnodex-dev-file-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 0;
    margin: 10px 0 0;
    padding: 0
}

.pnodex-dev-write .pb-write-file-card {
    display: block;
    flex: 0 0 96px;
    width: 96px;
    min-width: 0
}

.pnodex-dev-write .pb-write-file-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 60px;
    overflow: hidden;
    border: 1px solid #e4e8ef;
    border-radius: 7px;
    background: #f7f8fa
}

.pnodex-dev-write .pb-write-file-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center
}

.pnodex-dev-write .pb-write-file-preview>.fa-file-o {
    color: #9aa5b8;
    font-family: FontAwesome;
    font-size: 34px
}

.pnodex-dev-write .pb-write-file-type {
    color: #79859a;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .04em
}

.pnodex-dev-write .pb-write-file-remove {
    position: absolute;
    right: 4px;
    bottom: 4px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 29px;
    height: 20px;
    margin: 0;
    padding: 0 5px;
    border: 0;
    border-radius: 4px;
    background: #f04438;
    color: #fff;
    font-size: 10px;
    line-height: 1;
    cursor: pointer
}

.pnodex-dev-write .pb-write-file-remove:hover {
    background: #d92d20;
    color: #fff
}

.pnodex-dev-write .pb-write-file-name {
    display: block;
    width: 100%;
    margin-top: 6px;
    overflow: hidden;
    color: #475467;
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap
}

.pnodex-dev-write .pb-write-file-card.is-existing.is-removed {
    opacity: .5
}

.pnodex-dev-write .pb-write-file-card.is-existing.is-removed .pb-write-file-remove {
    background: #667085
}

.pnodex-dev-write .pnodex-dev-file-chip {
    display: none
}

/* 목록 진행 상태 배지를 제목 왼쪽의 독립 영역 중앙에 크게 표시합니다. */
.pnodex-dev-subject-wrap.has-title-status {
    position: relative;
}

.pnodex-dev-subject-wrap.has-title-status .pnodex-dev-subject a {
    padding-left: 96px;
}

.pnodex-dev-subject-wrap.has-title-status .pnodex-dev-title-status {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    min-width: 64px;
    height: 32px;
    padding: 0 11px;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 800;
    line-height: 30px;
}

.pnodex-dev-subject-wrap.has-title-status .pnodex-dev-row-tags {
    margin-left: 96px;
}

@media (max-width: 768px) {
    .pnodex-dev-subject-wrap.has-title-status .pnodex-dev-subject a {
        padding-left: 84px;
    }

    .pnodex-dev-subject-wrap.has-title-status .pnodex-dev-title-status {
        min-width: 54px;
        height: 28px;
        padding: 0 8px;
        font-size: 11px;
        line-height: 26px;
    }

    .pnodex-dev-subject-wrap.has-title-status .pnodex-dev-row-tags {
        margin-left: 84px;
    }
}

/* 임시저장 버튼을 제목 입력창 우측 끝에 같은 높이로 배치합니다. */
.pnodex-dev-write-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
    width: 100%;
    margin-top: 17px;
}

.pnodex-dev-write-title-row .pnodex-dev-field {
    min-width: 0;
    margin-top: 0;
}

.pnodex-dev-write-title-row .pnodex-dev-draft-open {
    min-width: 108px;
    height: 44px;
    padding: 0 16px;
}

@media (max-width: 480px) {
    .pnodex-dev-write-title-row {
        gap: 8px;
    }

    .pnodex-dev-write-title-row .pnodex-dev-draft-open {
        min-width: 88px;
        padding: 0 10px;
    }
}

/* 쓰기 상단 안내 영역 아래 구분선 제거 */
.pnodex-dev-write .pnodex-dev-form-head {
    border-bottom: 0;
}

/* 유료 배포 파일 과금 방식·포인트 입력 */
.pnodex-dev-paid-options[hidden] {
    display: none !important;
}

.pnodex-dev-paid-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
    padding: 15px;
    border: 1px solid #eadcf8;
    border-radius: 10px;
    background: #fcf9ff;
}

.pnodex-dev-paid-options>label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.pnodex-dev-paid-options>label>span:first-child {
    color: #3c4656;
    font-size: 12px;
    font-weight: 700;
}

.pnodex-dev-paid-options select,
.pnodex-dev-paid-options input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 13px;
    border: 1px solid #d9dfea;
    border-radius: 7px;
    background: #fff;
    color: #293345;
    font: inherit;
    box-sizing: border-box;
}

.pnodex-dev-point-input {
    position: relative;
    display: block;
}

.pnodex-dev-point-input input {
    padding-right: 38px;
}

.pnodex-dev-point-input b {
    position: absolute;
    top: 50%;
    right: 14px;
    color: #8b25e7;
    font-size: 12px;
    transform: translateY(-50%);
}

@media (max-width: 600px) {
    .pnodex-dev-paid-options {
        grid-template-columns: 1fr;
    }
}

/* 유료 첨부파일 포인트 결제 레이어 */
.pnodex-dev-paid-layer[hidden] {
    display: none !important;
}

.pnodex-dev-paid-layer {
    position: fixed;
    inset: 0;
    z-index: 13000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pnodex-dev-paid-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(15, 23, 42, .52);
}

.pnodex-dev-paid-dialog {
    position: relative;
    z-index: 1;
    width: min(430px, 100%);
    padding: 28px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .28);
    text-align: center;
}

.pnodex-dev-paid-badge {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: #f3e8ff;
    color: #8425d0;
    font-size: 11px;
    font-weight: 800;
}

.pnodex-dev-paid-dialog h2 {
    margin: 15px 0 9px;
    color: #192236;
    font-size: 19px;
}

.pnodex-dev-paid-dialog h2 b {
    color: #8b25e7;
}

.pnodex-dev-paid-dialog p {
    margin: 0;
    color: #697386;
    font-size: 12px;
    line-height: 1.7;
}

.pnodex-dev-paid-dialog>div {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 8px;
    margin-top: 21px;
}

.pnodex-dev-paid-dialog button {
    height: 42px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.pnodex-dev-paid-cancel {
    border: 1px solid #dce1e9;
    background: #fff;
    color: #596477;
}

.pnodex-dev-paid-confirm {
    border: 0;
    background: #9025e8;
    color: #fff;
}

.pnodex-dev-paid-confirm:disabled {
    opacity: .6;
    cursor: wait;
}

.pnodex-dev-paid-dialog small {
    display: block;
    min-height: 16px;
    margin-top: 10px;
    color: #d14343;
    font-size: 11px;
}

.pnodex-dev-release-download.is-paid {
    background: #8b25e7 !important;
}

/* 최신 릴리스 날짜 우측의 새 버전 업데이트 버튼 */
.pnodex-dev-release-stable-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    margin: -3px 0 10px;
    padding-bottom: 9px;
    border-bottom: 1px solid #dcdde1;
}

.pnodex-dev-release-stable-row .pnodex-dev-release-stable {
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pnodex-dev-release-layout .pnodex-dev-files .pnodex-dev-version-update {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 5px;
    width: 104px;
    min-width: 104px;
    height: 30px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid #d9dfea;
    border-radius: 6px;
    background: #fff;
    color: #7520c1 !important;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
}

.pnodex-dev-release-layout .pnodex-dev-files .pnodex-dev-version-update:hover {
    border-color: #9b4ce5;
    background: #f8f0ff;
}
