.playlist, .news, .music{
    padding: 15px 0;
}

.playlist_slide, .news_slide, .music ul{
    margin-top: 20px;
}

.title{
    display: flex;
    justify-content: space-between;
}

.title span{
    line-height: 25px;
    color: #C4C4C3;
    font-size: 16px;
}

h2{
    font-weight: 700;
    font-size: 25px;
}

body{
    background: black;
    color:white;
}

.wrap{
    width: 800px;
    margin:0 auto;
    padding: 0 0 0 20px;
    box-sizing: border-box;
}

.contents{
    margin-bottom: 166px;
}

.container{
    margin: 0 20px 0 20px;
    position: relative;
}

.user_playlist{
    border-radius: 5px;
    border:1px solid #404040;
    padding: 15px 0;
    box-sizing: border-box;
    text-align: center;
}

.news ul{
    display: flex;
    gap:10px;
    overflow-x: scroll;   
    -ms-overflow-style: none; 
    scrollbar-width: none;
    margin-bottom: 30px;
}

.news ul::-webkit-scrollbar{
    display: none;
}

.news ul li {
    position: relative;
}

.news ul li a h3{
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    background: rgba(45,45,45,0.7) ;
    text-align: center;
    padding: 5px 5px 0 5px;
    position:absolute;
    top: 60px;
    height: 35px;
    border-radius: 0 0 3px 3px;
}

.music{
    overflow-x: scroll;
    overflow:auto;
}

.music ul li {
    margin-bottom: 10px;
}

.news_slide .thumbnail{
    height: 200px;
    border: solid 1px #2d2d2d;
    box-sizing: border-box;
    background-color: #fff;
}

.thumbnail{
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.thumbnail>.news_title{
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 80%);
    width: 100%;
}

.thumbnail>.news_title>p{
    text-align: center;
    line-height: 20px;
    letter-spacing: -0.5px;
    font-size: 16px;
}

.thumbnail > img{
    height: 100%;
    width: 100%;
}
.line{
    border-top: 1px solid #404040;
}

.swiper-slide > img{
    display: block;
    width: 100%;
}