/* =========================================================
   Music FM — Artists Catalog 2026
   קובץ נפרד לעמוד artists.php בלבד
========================================================= */

.artists-2026-page{
    direction:rtl;
    padding-top:24px;
}

/* Hero */
.artists-2026-hero{
    position:relative;
    display:grid;
    grid-template-columns:1fr 300px;
    gap:24px;
    align-items:stretch;
    margin-bottom:18px;
    overflow:hidden;
    border:1px solid rgba(20,124,255,.18);
    border-radius:4px;
    background:
        radial-gradient(circle at 18% 0%,rgba(89,199,255,.20),transparent 34%),
        radial-gradient(circle at 80% 20%,rgba(20,124,255,.18),transparent 34%),
        linear-gradient(135deg,#071832 0%,#08295b 52%,#031126 100%);
    color:#fff;
    box-shadow:
        0 14px 36px rgba(15,35,70,.13),
        inset 0 1px 0 rgba(255,255,255,.06);
}

.artists-2026-hero::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        repeating-linear-gradient(90deg,rgba(255,255,255,.018) 0,rgba(255,255,255,.018) 1px,transparent 1px,transparent 118px);
    opacity:.52;
}

.artists-2026-hero-content,
.artists-2026-counter{
    position:relative;
    z-index:2;
}

.artists-2026-hero-content{
    padding:44px;
}

.artists-2026-hero-content > span{
    display:inline-flex;
    padding:7px 11px;
    border-radius:3px;
    background:#147cff;
    color:#fff;
    font-size:12px;
    line-height:1;
    font-weight:950;
}

.artists-2026-hero h1{
    margin:18px 0 12px;
    color:#fff;
    font-size:64px;
    line-height:.95;
    font-weight:950;
    letter-spacing:-2px;
}

.artists-2026-hero p{
    max-width:760px;
    margin:0;
    color:rgba(255,255,255,.83);
    font-size:18px;
    line-height:1.68;
    font-weight:760;
}

.artists-2026-search{
    display:grid;
    grid-template-columns:1fr 118px;
    gap:10px;
    max-width:720px;
    margin-top:24px;
}

.artists-2026-search input{
    min-height:54px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:3px;
    background:rgba(255,255,255,.95);
    color:#111827;
    padding:0 18px;
    font:inherit;
    font-weight:850;
}

.artists-2026-search button{
    min-height:54px;
    border:0;
    border-radius:3px;
    background:#147cff;
    color:#fff;
    font:inherit;
    font-weight:950;
    cursor:pointer;
}

.artists-2026-counter{
    display:grid;
    place-items:center;
    align-content:center;
    text-align:center;
    padding:30px;
    background:rgba(3,8,18,.24);
    border-inline-start:1px solid rgba(255,255,255,.10);
}

.artists-2026-counter strong{
    color:#59c7ff;
    font-size:62px;
    line-height:1;
    font-weight:950;
}

.artists-2026-counter small{
    margin-top:8px;
    color:rgba(255,255,255,.78);
    font-weight:850;
}

/* Tools */
.artists-2026-tools{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin:0 0 18px;
    padding:12px;
    border:1px solid #dfe7f3;
    border-radius:4px;
    background:#fff;
    box-shadow:0 9px 24px rgba(15,35,70,.055);
}

.artists-2026-letters{
    display:flex;
    gap:7px;
    overflow-x:auto;
    scrollbar-width:none;
}

.artists-2026-letters::-webkit-scrollbar{
    display:none;
}

.artists-2026-letters button,
.artists-2026-tools > a{
    flex:0 0 auto;
    min-height:36px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 13px;
    border:1px solid #dfe7f3;
    border-radius:3px;
    background:#f8fbff;
    color:#111827;
    font:inherit;
    font-size:14px;
    font-weight:950;
    cursor:pointer;
}

.artists-2026-letters button.active{
    background:#147cff;
    border-color:#147cff;
    color:#fff;
}

.artists-2026-tools > a{
    color:#147cff;
    text-decoration:none;
}

/* Grid */
.artists-2026-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

.artists-2026-card{
    position:relative;
    overflow:hidden;
    min-height:270px;
    border:1px solid #dfe7f3;
    border-radius:4px;
    background:#fff;
    color:#111827;
    text-decoration:none;
    box-shadow:0 9px 24px rgba(15,35,70,.055);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.artists-2026-card:hover{
    transform:translateY(-3px);
    border-color:rgba(20,124,255,.32);
    box-shadow:0 18px 38px rgba(15,35,70,.10);
}

.artists-2026-cover{
    position:relative;
    aspect-ratio:1/1.04;
    overflow:hidden;
    background:#071832;
}

.artists-2026-cover::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg,transparent 44%,rgba(3,8,18,.74) 100%),
        radial-gradient(circle at 20% 10%,rgba(20,124,255,.18),transparent 32%);
    pointer-events:none;
}

.artists-2026-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:0 !important;
    transform:scale(1.01);
    transition:transform .45s ease, filter .35s ease;
}

.artists-2026-card:hover .artists-2026-cover img{
    transform:scale(1.06);
    filter:saturate(1.08);
}

.artists-2026-cover span{
    position:absolute;
    right:12px;
    top:12px;
    z-index:2;
    min-width:36px;
    height:28px;
    display:grid;
    place-items:center;
    border-radius:3px;
    background:#147cff;
    color:#fff;
    font-size:13px;
    font-weight:950;
}

.artists-2026-card-body{
    padding:14px 15px 8px;
}

.artists-2026-card strong{
    display:block;
    color:#111827;
    font-size:19px;
    line-height:1.22;
    font-weight:950;
}

.artists-2026-card small{
    display:block;
    margin-top:6px;
    color:#667085;
    font-weight:800;
}

.artists-2026-card em{
    display:block;
    padding:0 15px 15px;
    color:#147cff;
    font-style:normal;
    font-size:13px;
    font-weight:950;
}

/* Empty */
.artists-2026-empty{
    grid-column:1 / -1;
    padding:34px;
    border:1px solid #dfe7f3;
    border-radius:4px;
    background:#fff;
    box-shadow:0 9px 24px rgba(15,35,70,.055);
}

.artists-2026-empty span{
    color:#147cff;
    font-size:12px;
    font-weight:950;
}

.artists-2026-empty h2{
    margin:8px 0;
    color:#111827;
    font-size:30px;
    font-weight:950;
}

.artists-2026-empty p{
    margin:0;
    color:#667085;
    line-height:1.65;
    font-weight:750;
}

.artists-2026-empty a{
    display:inline-flex;
    align-items:center;
    min-height:40px;
    margin-top:16px;
    padding:0 14px;
    border-radius:3px;
    background:#147cff;
    color:#fff;
    font-weight:950;
    text-decoration:none;
}

/* Responsive */
@media(max-width:1200px){
    .artists-2026-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media(max-width:980px){
    .artists-2026-hero{
        grid-template-columns:1fr;
    }

    .artists-2026-counter{
        min-height:120px;
        border-inline-start:0;
        border-top:1px solid rgba(255,255,255,.10);
    }

    .artists-2026-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:720px){
    .artists-2026-page{
        padding-top:16px;
    }

    .artists-2026-hero{
        margin-inline:-9px;
        border-radius:0 0 4px 4px;
    }

    .artists-2026-hero-content{
        padding:28px 22px;
    }

    .artists-2026-hero h1{
        font-size:42px;
        letter-spacing:-1px;
    }

    .artists-2026-hero p{
        font-size:15px;
    }

    .artists-2026-search{
        grid-template-columns:1fr;
    }

    .artists-2026-search input,
    .artists-2026-search button{
        min-height:50px;
    }

    .artists-2026-tools{
        display:block;
    }

    .artists-2026-tools > a{
        margin-top:10px;
    }

    .artists-2026-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .artists-2026-card{
        min-height:230px;
    }

    .artists-2026-card strong{
        font-size:16px;
    }
}

@media(max-width:420px){
    .artists-2026-grid{
        grid-template-columns:1fr;
    }

    .artists-2026-card{
        min-height:auto;
    }
}

@media(prefers-reduced-motion: reduce){
    .artists-2026-page *,
    .artists-2026-page *::before,
    .artists-2026-page *::after{
        animation:none !important;
        transition:none !important;
        transform:none !important;
    }
}
