@charset "utf-8";


/* 좌측 공지 최신글 너비 고정. */
.pnodex-left-notice-latest {
    width: 380px;
    max-width: 100%;
}

.pnodex-left-notice-latest .pb-notice-latest {
    width: 100%;
}

.pb-notice-latest,
.pb-notice-latest * {
    box-sizing: border-box;
}

.pb-notice-latest {
    min-width: 0;
    padding: 0 14px 10px;
    border: 1px solid #e6e9f1;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(33, 40, 65, .045);
}

.pb-notice-latest-head {
    display: flex;
    min-width: 0;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #e8ebf2;
}

.pb-notice-latest-head h2 {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #20283b;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}

.pb-notice-latest-head h2 i {
    color: #9823f5;
    font-size: 14px;
}

.pb-notice-latest-head h2 a {
    overflow: hidden;
    color: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pb-notice-latest-more {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 3px;
    padding: 6px 9px;
    border: 1px solid #eceef4;
    border-radius: 999px;
    background: #f8f9fc;
    color: #9aa2b3;
    font-size: 10px;
    line-height: 1;
}

.pb-notice-latest-more:hover {
    border-color: #dcd8f8;
    background: #f3f0ff;
    color: #6540db;
}

.pb-notice-latest-rows {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.pb-notice-latest-row {
    display: flex;
    min-width: 0;
    height: 27px;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0 3px;
    border-bottom: 1px solid #f0f1f5;
}

.pb-notice-latest-row:last-child {
    border-bottom: 0;
}

.pb-notice-latest-bullet {
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 50%;
    background: #d9dde7;
}

.pb-notice-latest-subject {
    display: block;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    color: #3a4253;
    font-size: 12px;
    line-height: 27px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pb-notice-latest-subject:hover {
    color: #6540db;
}

.pb-notice-latest-row.is-notice .pb-notice-latest-subject {
    color: #272d3a;
    font-weight: 700;
}

.pb-notice-latest-meta {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    line-height: 1;
}

.pb-notice-latest-meta time {
    min-width: 30px;
    color: #a7afbf;
    text-align: right;
    white-space: nowrap;
}

.pb-notice-latest-good {
    color: #ef4b53;
}

.pb-notice-latest-new,
.pb-notice-latest-file,
.pb-notice-latest-comment {
    display: inline-flex;
    min-width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border-radius: 4px;
    font-weight: 700;
}

.pb-notice-latest-new {
    background: #6157ed;
    color: #fff;
}

.pb-notice-latest-file {
    background: #fff2bd;
    color: #c59a1f;
}

.pb-notice-latest-comment {
    background: #f17178;
    color: #fff;
}

.pb-notice-latest-empty {
    display: flex;
    min-height: 135px;
    align-items: center;
    justify-content: center;
    color: #a1a9b8;
    font-size: 11px;
    text-align: center;
}

@media (max-width: 980px) {
    .pb-notice-latest-row {
        height: 30px;
    }

    .pb-notice-latest-subject {
        font-size: 12px;
        line-height: 30px;
    }
}

@media (max-width: 480px) {
    .pb-notice-latest {
        padding-right: 10px;
        padding-left: 10px;
        border-radius: 12px;
    }

    .pb-notice-latest-good,
    .pb-notice-latest-file {
        display: none;
    }
}