/* -----------------------------------------
   상단 플레이어 16:9 완전 고정 (검은 영역 제거)
----------------------------------------- */
#snh_player_box {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 25px auto;
    padding-top: 56.25%; /* 16:9 */
}

#snh_main_player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* -----------------------------------------
   리스트 전체 영역
----------------------------------------- */
#snh_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}


/* -----------------------------------------
   리스트 아이템: 좌/우 배치
----------------------------------------- */
.snh-item {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.15s;
    gap: 18px; /* 제목쪽과 썸네일 간 간격 */
}

/* hover 시 배경 제거 */
.snh-item:hover {
    background: none !important;
}

/* 활성 항목 — 배경 X, 제목 색만 강조 */
.snh-item.active {
    background: none !important;
}

.snh-item.active .snh-title {
    color: #b71f33 !important;
}


/* -----------------------------------------
   왼쪽 텍스트 영역 (번호 + 제목 한 줄)
----------------------------------------- */
.snh-left {
    width: 65%;
    display: flex;
    flex-direction: row;
    align-items: baseline; /* 글자 기준선 정렬 */
    gap: 10px; /* 번호와 제목 간격 */
}

/* 번호 스타일 */
.snh-num {
    font-weight: 600;
    color: #444;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
}

/* 제목 — h5 스타일 */
.snh-title {
    font-size: 1.1rem;
    font-weight: 450;
    line-height: 1.4;
    margin: 0;
}


/* -----------------------------------------
   오른쪽 썸네일 (정확한 16:9)
----------------------------------------- */
.snh-thumb {
    width: 35%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

/* 16:9 박스 */
.snh-thumb::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 */
}

/* 썸네일 이미지 */
.snh-thumb img {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* -----------------------------------------
   모바일에서도 좌/우 유지
----------------------------------------- */
@media (max-width: 600px) {
    .snh-left {
        width: 60%;
    }
    .snh-thumb {
        width: 40%;
    }
}
