@charset "utf-8";

/* 전체 래퍼 */
#m_live_wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 타이틀 박스 */
.m_live_title_box {
    display: flex;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* 타이틀 라벨 */
.m_live_title_label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: #525bf4;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 92, 255, 0.2);
    white-space: nowrap;
}

/* NEW 아이콘 위치 조정 */
.m_live_title_icon {
    position: absolute;
    top: -8.7px;   /* 원하는 위치로 조정 */
    left: -9.9px;  /* 원하는 위치로 조정 */
    width: 29px;
    height: 29px;
    z-index: 1;
}

/* 타이틀 우측 */
.m_live_title {
    width: 83.7%;
    flex-grow: 1;
    background-color: #fff;
    display: flex;
    align-items: center;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.m_live_title h2 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

/* 슬라이더 영역 */
.m_live_slider_wrapper {
    overflow: hidden;
    width: 100%;
    height: 60px; /* 게시글 한 줄 높이 */
}

/* 세로 트랙 */
.m_live_slider_track {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s linear;
}

/* 게시물 항목 */
.m_live_post {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60px;
    padding: 0 20px;
    background: #fff;
    box-sizing: border-box;
}

.m_live_post:last-child {
    border-bottom: none;
}

/* 게시물 내부 정렬 */
.m_live_post_meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

/* 게시판명 */
.m_live_board_name {
    font-size: 13px;
    color: #525bf4;
    font-weight: 500;
    white-space: nowrap;
    margin-right: 8px;
    margin-top:0.8px;
}

.m_live_board_name:hover {
    color: #293fcb;
}

/* 게시물 제목 */
.m_live_post_title {
    flex-grow: 1;
    font-size: 14.2px;
    color: #2e2e2e;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.m_live_post_title:hover {
    color: #4961f6;
}

/* 댓글 수 표시 */
.m_live_new_cmt {
    font-size: 13.1px;
    font-weight: 500;
    color: #525bf4;
    margin-top: 2px;
}

/* NEW 이미지 */
.new_live {
    width: 15px;
    height: 15px;
    margin-left: 4px;
    margin-top: 4px;
}

/* 작성일자 */
.m_live_post_date {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12.7px;
    font-weight:400;
    color: #777;
    white-space: nowrap;
}
