.daily-news-wrap{
    width:100%;
    max-width:1300px;
    margin:60px auto;
    padding:0 16px;

    display:grid;
    grid-template-columns:460px 450px 257px;

    column-gap:36px;

    align-items:start;
    box-sizing:border-box;
}

.homepage-ads{
    width:257px;
    height:auto;
    box-sizing:border-box;
    position:sticky;
    top:92px;
    align-self:start;
}

.homepage-ads > *,
.hh24-ad-slot,
.hh24-ad-slot--sidebar{
    width:100%;
}

.hh24-ad-slot iframe,
.hh24-ad-slot img,
.hh24-ad-slot ins,
.hh24-ad-slot object,
.hh24-ad-slot embed,
.hh24-ad-slot > div,
.hh24-ad-slot script{
    max-width:100% !important;
}

.hh24-ad-slot img{
    display:block;
    height:auto;
}

.hh24-ad-slot--sidebar{
    overflow:hidden;
}

.daily-songs{
    background:#000;
    color:#fff;
}

.latest-news{
    background:#fff;
}

.daily-header{
    width:460px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 18px;

    box-sizing:border-box;

    background:#000;
    color:#fff;
}

.latest-header{
    width:450px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 18px;

    box-sizing:border-box;

    background:#dd111a;
    color:#fff;
}

.daily-header{
    background:#000;
    color:#fff;
}

.latest-header{
    background:#dd111a;
    color:#fff;
}

.daily-header h2,
.latest-header h2{
    margin:0;
    font-size:24px;
    font-weight:700;
}

.daily-header a,
.daily-explore-link{
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
}

.daily-header h2{
    flex:1 1 auto;
    min-width:0;
}

.daily-explore-link{
    display:inline-flex;
    align-items:center;
    justify-content:flex-end;
    gap:7px;
    flex:0 0 auto;
    min-width:max-content;
    margin-left:14px;
    line-height:1;
    letter-spacing:.02em;
    white-space:nowrap;
}

.daily-explore-link svg{
    width:18px;
    height:18px;
    display:block;
    flex:0 0 18px;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
    transition:transform .2s ease;
}

.daily-explore-link:hover,
.daily-explore-link:focus-visible{
    color:#da3437;
}

.daily-explore-link:hover svg,
.daily-explore-link:focus-visible svg{
    transform:translateX(3px);
}

.daily-explore-link:focus-visible{
    outline:2px solid currentColor;
    outline-offset:4px;
}

.daily-divider{
    width:460px;
    height:16px;

    background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Cpath fill='%23da3437' fill-rule='evenodd' d='M5 0h1L0 6V5zm1 5v1H5z'/%3E%3C/svg%3E");

    background-size:5px;
    background-repeat:repeat;

    margin-bottom:16px; /* Space between divider and first Daily Song */
}

.latest-divider{
    width:450px;
    height:16px;

    background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Cpath fill='%23da3437' fill-rule='evenodd' d='M5 0h1L0 6V5zm1 5v1H5z'/%3E%3C/svg%3E");

    background-size:5px;
    background-repeat:repeat;

    margin-bottom:16px; /* Space between divider and first Daily Song */
}

/*==================================
DAILY SONG CARD
==================================*/

.daily-song-card{
    position:relative;

    width:460px;
    height:176px;

    display:grid;

    grid-template-columns:176px auto;

    column-gap:16px;

    align-items:center;

    padding:0 16px;

    margin:0;

    box-sizing:border-box;

    background:#000;

    overflow:hidden;
}

.daily-song-thumb{
    width:176px;
    height:176px;

    display:block;

    overflow:hidden;

    flex-shrink:0;
}

.daily-song-card + .daily-song-card{
    margin-top:16px;
}

.daily-song-thumb img{

    width:176px;
    height:176px;

    object-fit:cover;

    display:block;

}

.daily-song-content{
    position:relative;

    display:flex;
    flex-direction:column;
    justify-content:center;

    min-height:176px;
}

.daily-song-title{

    margin:0 0 8px;

}

.daily-song-title a{

    color:#fff;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    line-height:1.2;

}

.daily-song-title a:hover{

    color:#dd111a;

}

.daily-song-artist{

    color:#bfbfbf;

    font-size:16px;

    font-weight:700;

    margin-bottom:12px;

}

.daily-song-stars{

    display:flex;

    gap:3px;

}

.daily-song-stars .star{

    color:#555;

    font-size:16px;

}

.daily-song-stars .filled{

    color:#dd111a;

}


.daily-song-badge{
    position:absolute;
    top:0;
    right:16px;

    display:inline-block;

    background:#dd111a;

    padding:3px 5px;

    min-width:69px;
    height:21px;

    box-sizing:border-box;

    font-size:12px;
    font-weight:200;
    line-height:15px;

    text-align:center;

    color:#fff;

    text-transform:uppercase;

    margin:0;
}


.daily-song-date{
    position:absolute;

    right:16px;
    bottom:8px;

    color:#bfbfbf;

    font-size:12px;
    font-style:italic;
    font-weight:400;
    line-height:16px;

    white-space:nowrap;

    text-align:right;

    margin:0;
    padding:0;
}

/*==================================
LATEST NEWS CARD
==================================*/

.latest-news-card{

    width:450px;

    min-height:126px;

    display:grid;

    grid-template-columns:180px 1fr;

    column-gap:16px;

    align-items:center;

    padding:12px;

    margin:0 0 14px;

    background:#fff;

    border:1px solid rgba(0,0,0,.05);

    border-radius:12px;

    box-shadow:
        0 3px 12px rgba(0,0,0,.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

    box-sizing:border-box;
}

.latest-news-card:hover{

    transform:translateY(-2px);

    box-shadow:
        0 8px 22px rgba(0,0,0,.10);
}

.latest-news-thumb{

    width:180px;

    height:102px;

    overflow:hidden;

    border-radius:8px;

    display:block;
}

.latest-news-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:transform .35s ease;
}

.latest-news-card:hover .latest-news-thumb img{

    transform:scale(1.04);
}

.latest-news-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

    min-width:0;
}

.latest-news-meta{

    display:flex;

    align-items:center;

    gap:6px;

    margin-bottom:8px;

    font-size:11px;

    font-weight:700;

    letter-spacing:.5px;

    text-transform:uppercase;
}

.latest-news-category{

    color:#dd111a;
}

.latest-news-dot{

    color:#bdbdbd;
}

.latest-news-date{

    color:#888;

    font-style:normal;
}

.latest-news-title{

    margin:0;
}

.latest-news-title a{

    color:#111;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    line-height:1.35;

    display:-webkit-box;

    -webkit-box-orient:vertical;

    -webkit-line-clamp:3;

    overflow:hidden;

    transition:.2s;
}

.latest-news-card:hover .latest-news-title a{

    color:#dd111a;
}


/*==================================
LATEST VIEW ALL 
==================================*/
.latest-view-all{

    width:450px;

    height:50px;

    margin-top:18px;

    background:#dd111a;

    border-radius:0;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:
        0 4px 14px rgba(0,0,0,.06);

    overflow:hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.latest-view-all:hover{

    transform:translateY(-2px);

    box-shadow:
        0 10px 22px rgba(0,0,0,.10);
}

.latest-view-all a{

    width:100%;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    color:#fff;

    font-size:14px;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.8px;
}

.latest-view-all img{

    filter:brightness(0) saturate(100%) invert(100%);
    width:16px;
    height:16px;
    transition:.25s ease;
}

.latest-view-all span{

    line-height:1;
}

.latest-view-all:hover{

    border-color:#fff;
}

.latest-view-all:hover a{

    color:#fff;
}

.latest-view-all:hover img{

    transform:translateX(4px);
}

/*==================================
VIEW ALL BUTTON DAILY SONG
==================================*/

.section-view-all{

    width:460px;

    height:58px;

    margin-top:18px;

    background:#0000;

    border-radius:12px;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:
        0 3px 12px rgba(0,0,0,.06);

    overflow:hidden;

    transition:.25s ease;
}

.section-view-all:hover{

    transform:translateY(-2px);

    box-shadow:
        0 8px 22px rgba(0,0,0,.10);
}

.section-view-all a{

    width:100%;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    color:#ffff;

    text-decoration:none;

    text-transform:uppercase;

    font-size:14px;

    font-weight:800;

    letter-spacing:.8px;
}




/* HH24 NEW MUSIC CLEANUP */
.daily-songs,
.daily-song-card,
.daily-song-thumb,
.daily-song-thumb img,
.daily-song-content{
    background:#000;
}

.daily-song-thumb,
.daily-song-thumb img{
    border:0;
    box-shadow:none;
    backface-visibility:hidden;
}

.daily-song-thumb img{
    vertical-align:top;
}
/* END HH24 NEW MUSIC CLEANUP */
/* HH24 HOMEPAGE CARD WIDTH NORMALIZE */
@media (min-width:769px){
    .daily-songs,
    .latest-news,
    .homepage-ads,
    .daily-header,
    .latest-header,
    .daily-divider,
    .latest-divider,
    .daily-song-card,
    .latest-news-card,
    .latest-view-all,
    .section-view-all{
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        box-sizing:border-box;
    }

    .daily-songs,
    .latest-news,
    .homepage-ads,
    .daily-song-card,
    .latest-news-card,
    .latest-news-content,
    .daily-song-content{
        min-width:0;
    }

    .daily-song-card,
    .latest-news-card{
        overflow:hidden;
    }

    .daily-song-thumb,
    .daily-song-thumb img,
    .latest-news-thumb,
    .latest-news-thumb img{
        max-width:100%;
        display:block;
    }

    .daily-song-card,
    .daily-song-thumb,
    .daily-song-thumb img,
    .daily-song-content,
    .daily-songs{
        background:#000 !important;
    }
}
/* END HH24 HOMEPAGE CARD WIDTH NORMALIZE */