/* 23.10.23 게시물 리스트의 공지사항 시작 */

.post-list-notice-wrap {
    border-top: thin solid var(--main-item-border-color);
    border-left: thin solid var(--main-item-border-color);
    border-right: thin solid var(--main-item-border-color);
    margin-bottom : var(--spacing-2xl);
    box-shadow: 0 0 7px 0 rgba(0,0,0,.14);
}

.post-list-notice-table{
    background-color : white;
    width : 100%;
}

.post-list-notice-tbody tr{
    height : 40px;
    line-height : 40px;
    text-align : center;
    font-size: var(--text-xs);
    border-bottom: thin solid var(--main-item-border-color);
    white-space: nowrap;
}

.post-list-notice-tbody .notice-division{
    width : 42px;
    background-color : black;
    color : white;
    border-radius: 3px;
    padding : 2px;
    display : inline;
    text-align : center;
    font-weight : 800;
}

/* 세일목록의 공지사항 중에서 인기글 스타일 */
.post-list-notice-tbody .notice-division.popular{
    background-color : var(--text-hover-pink-color);
}
/* 세일목록의 공지사항 중에서 광고글 스타일 */
.post-list-notice-tbody .notice-division.advertisement{
    background-color : #2C73D2;
}

.post-list-notice-tbody .notice-category{
    color : var(--silver-text-color);
    width : 60px;
}

.post-list-notice-tbody .notice-author{
    font-size: var(--text-xs);
    width : 65px;
}

.post-list-notice-tbody .notice-date{
    font-size: var(--text-xs);
    width : 40px;
}

.post-list-notice-tbody .notice-viewCount{
    vertical-align: middle; /* 핵심 */
    max-width : 60px;
    display: inline-flex;          /* table-cell 내부에서도 안정적 */
    align-items: center;           /* 수직 중앙 */
    justify-content: center;       /* 필요 시 수평 중앙 */
    height : 100%;
}

.post-list-notice-tbody .eye-icon{
    display: block;     /* inline baseline 제거 */
    width : 20px;
    height : 20px;
    margin-right: var(--spacing-xs);
}

.post-list-notice-tbody .notice-title{
    vertical-align : middle;
    font-weight : 600;
    text-align : left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width : calc(100% - 265px);
    padding-left : var(--spacing-sm);
    cursor : pointer;
}

.post-list-notice-tbody .notice-title:hover{
    color: var(--text-hover-pink-color); /* 마우스를 올릴 때 텍스트 색상 변경 */
    text-decoration: underline; /* 마우스를 올릴 때 밑줄 추가 */

}

.post-list-notice-tbody .notice-title-link{
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /*width : 100%;*/
    max-width : calc(100vw - 265px);
}




/* 23.10.23 게시물 리스트의 공지사항 끝 */