/* =========================================================
   MUSIC FM — HOT NEWS CAROUSEL PREMIUM STABLE — NO SHADOW
   תיקון קבוע: ביטול מוחלט של צל/מלבן באזור חדשות חמות
   ========================================================= */

.mf-news-section,
.mf-news-section *{
    box-sizing:border-box;
}

.mf-news-section{
    width:100%;
    margin:10px 0 0;
    padding:0;
    direction:rtl;
    position:relative;
    z-index:2;
    box-shadow:none !important;
    filter:none !important;
    background:transparent !important;
}

.mf-news-section::before,
.mf-news-section::after{
    content:none !important;
    display:none !important;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin:0 0 14px;
    padding:0 2px;
    box-shadow:none !important;
    filter:none !important;
    background:transparent !important;
}

.mf-news-title{
    order:1;
    display:flex;
    align-items:center;
    gap:10px;
    margin:0;
    color:#111827;
    font-size:clamp(22px,2.2vw,28px);
    line-height:1.15;
    font-weight:1000;
    letter-spacing:-.04em;
}

.mf-news-title::before{
    content:'';
    width:10px;
    height:10px;
    min-width:10px;
    border-radius:50%;
    background:linear-gradient(135deg,#147cff,#59c7ff);
    box-shadow:none !important;
}

.mf-news-nav{
    order:2;
    display:flex;
    align-items:center;
    gap:8px;
    margin-right:auto;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-arrow{
    width:38px;
    height:38px;
    min-width:38px;
    min-height:38px;
    border:1px solid rgba(20,124,255,.16);
    border-radius:15px;
    background:linear-gradient(135deg,rgba(255,255,255,.92),rgba(238,246,255,.72));
    color:#147cff;
    cursor:pointer;
    transition:.2s ease;
    font-size:13px;
    display:grid;
    place-items:center;
    padding:0;
    box-shadow:none !important;
    filter:none !important;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
}

.mf-news-arrow:hover:not(:disabled){
    transform:translateY(-2px);
    background:linear-gradient(135deg,#147cff,#005bea);
    color:#fff;
    border-color:transparent;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-arrow:disabled{
    opacity:.42;
    cursor:not-allowed;
    transform:none;
}

.mf-news-carousel-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
    padding:2px 2px 4px;
    box-shadow:none !important;
    filter:none !important;
    background:transparent !important;
}

.mf-news-carousel-wrapper::before,
.mf-news-carousel-wrapper::after{
    content:none !important;
    display:none !important;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-carousel{
    display:flex;
    flex-direction:row;
    gap:18px;
    width:100%;
    transition:transform .36s cubic-bezier(.2,.8,.2,1);
    will-change:transform;
    transform:translate3d(0,0,0);
    box-shadow:none !important;
    filter:none !important;
    background:transparent !important;
}

.mf-news-carousel::before,
.mf-news-carousel::after{
    content:none !important;
    display:none !important;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-card{
    flex:0 0 calc((100% - 36px) / 3);
    width:calc((100% - 36px) / 3);
    min-width:calc((100% - 36px) / 3);
    max-width:calc((100% - 36px) / 3);
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    align-self:stretch;
    border-radius:26px;
    background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(246,250,255,.78));
    border:1px solid rgba(255,255,255,.86);
    box-shadow:none !important;
    filter:none !important;
    backdrop-filter:blur(18px) saturate(1.12);
    -webkit-backdrop-filter:blur(18px) saturate(1.12);
    transition:transform .22s ease, border-color .22s ease;
}

.mf-news-card::before{
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
    background:radial-gradient(circle at 88% 0%, rgba(20,124,255,.14), transparent 35%);
    opacity:.9;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-card::after{
    content:none !important;
    display:none !important;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-card:hover{
    transform:translateY(-2px);
    border-color:rgba(20,124,255,.18);
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-card > *{
    position:relative;
    z-index:1;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-image{
    width:calc(100% - 20px);
    height:160px;
    margin:10px 10px 0;
    overflow:hidden;
    position:relative;
    border-radius:20px;
    background:#eef4fb;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-image::before,
.mf-news-image::after{
    content:none !important;
    display:none !important;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .32s ease, filter .32s ease;
    box-shadow:none !important;
}

.mf-news-card:hover .mf-news-image img{
    transform:scale(1.045);
    filter:saturate(1.08) contrast(1.03);
}

.mf-news-overlay{
    display:none !important;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-content{
    padding:15px 16px 16px;
    background:transparent;
    display:flex;
    flex-direction:column;
    flex:1;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-category{
    display:inline-flex;
    align-items:center;
    min-height:26px;
    padding:0 10px;
    margin-bottom:9px;
    border-radius:999px;
    background:rgba(20,124,255,.10);
    color:#147cff;
    font-size:11px;
    font-weight:950;
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-card-title{
    margin:0 0 8px;
    color:#111827;
    font-size:18px;
    line-height:1.28;
    font-weight:1000;
    letter-spacing:-.025em;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.mf-news-description{
    margin:0;
    color:#64748b;
    font-size:13px;
    line-height:1.7;
    font-weight:750;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.mf-news-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-top:16px;
    padding-top:14px;
    border-top:1px solid rgba(148,163,184,.18);
    box-shadow:none !important;
    filter:none !important;
}

.mf-news-date{
    color:#94a3b8;
    font-size:12px;
    font-weight:900;
}

.mf-news-readmore{
    color:#147cff !important;
    text-decoration:none;
    font-size:13px;
    font-weight:950;
    background:none;
    padding:0;
    min-height:auto;
    border-radius:0;
    box-shadow:none !important;
    filter:none !important;
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.mf-news-readmore::after{
    content:'←';
    font-size:12px;
}

/* הגנה נוספת אם קובצי CSS אחרים מנסים להחזיר צל */
body.mf-light-redesign .mf-news-section,
body.mf-light-redesign .mf-news-carousel-wrapper,
body.mf-light-redesign .mf-news-carousel,
body.mf-light-redesign .mf-news-card,
body.mf-light-redesign .mf-news-card:hover,
body.mf-light-redesign .mf-news-card *,
body.mf-light-redesign .mf-news-card *::before,
body.mf-light-redesign .mf-news-card *::after{
    box-shadow:none !important;
}

body.mf-light-redesign .mf-news-section,
body.mf-light-redesign .mf-news-carousel-wrapper,
body.mf-light-redesign .mf-news-carousel,
body.mf-light-redesign .mf-news-card,
body.mf-light-redesign .mf-news-card:hover{
    filter:none !important;
}

@media(max-width:1100px){
    .mf-news-card{
        flex-basis:calc((100% - 18px) / 2);
        width:calc((100% - 18px) / 2);
        min-width:calc((100% - 18px) / 2);
        max-width:calc((100% - 18px) / 2);
    }
}

@media(max-width:700px){
    .mf-news-header{
        align-items:flex-start;
    }

    .mf-news-card{
        flex-basis:100%;
        width:100%;
        min-width:100%;
        max-width:100%;
    }

    .mf-news-image{
        height:172px;
    }

    .mf-news-arrow{
        width:36px;
        height:36px;
        min-width:36px;
        min-height:36px;
    }
}
