.live-status {background:#f5f5f5; padding:80px; 0;}
.live-grid-window {
    overflow: hidden; /* 이 밖으로 나가는 아이템은 숨김 */
    position: relative;
    max-width: 1400px; /* 기존 유지 */
    margin: 0 auto;
	}

/* 롤링창 설정: 한 줄 높이인 68px로 제한 */
.live-window {
    height: 68px; 
    overflow: hidden;
    position: relative;
    background: transparent;
}

/* 2열 그리드 배치 */
.live-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2열로 나눔 */
    gap: 8px 30px; /* 아이템 사이 간격 */
    margin: 0;
    padding: 0;
    list-style: none;
}

.live-item {
    display: flex;
    align-items: center;
    height: 60px; /* 아이템 자체 높이 */
    padding: 0 18px;
    background: #fff;
	font-size:16px;
    border-radius: 30px;
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.live-status h2 {
    text-align: center;
	font-family:"Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
     font-size: 2rem;
	 font-weight:800;
    color: #333;
    line-height: 1;
}
.live-status .line {
        margin: 5.3% 0px 6.5%;
		width: 100%;
    height: 1px;
    background: #333;
    }
/* 모바일에서는 1열로 */
@media (max-width: 768px) {
    .live-grid {
        grid-template-columns: 1fr;
    }
    .live-window {
        height: 68px; /* 1줄만 보이게 */
    }
	.live-status h2 {font-size: 1.5rem;}
}


.live-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .live-wrapper {
        grid-template-columns: 1fr;
    }
}

.live-window {
    height: 60px;
    overflow: hidden;
}

.live-item {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 18px;
    background: #fff;
    border-radius: 30px;
    margin-bottom: 8px;
}
/* 모바일 대응 (768px 이하) */
@media (max-width: 768px) {
	.live-status {padding:80px 0;}
    .live-grid-window {
        min-width: 100% !important; /* 가로 너비 해제 */
		max-height:290px;
        padding: 0 15px;
    }
    .live-grid {
        grid-template-columns: 1fr; /* 모바일: 1열 */
    }
    .live-item {
        font-size: 13px; /* 폰트 크기 조절 */
        padding: 0 12px;
    }
    .writer {
        display: none; /* 공간 부족 시 작성자 숨김 가능 (선택사항) */
    }
}

.badge {
    padding: 10px 14px;
	min-width:90px; 
	text-align:center;
    border-radius: 20px;
    font-size: 13px;
    color: #fff;
    margin-right: 12px;
}

.badge.waiting { background:#ff6b00; }
.badge.processing { background:#0066ff; }
.badge.done { background:#333; }

.subject {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty {
    justify-content: center;
    color: #888;
}
