/* =========================================
LAYOUT
========================================= */

.nw-main-wrap{

display:flex;
gap:20px;
align-items:flex-start;
max-width:1370px;
margin:30px auto;
padding:0 15px;

}

.nw-artists-page{

width:60%;
min-width:0;

}

/* =========================================
USE GLOBAL SIDEBAR STYLE.CSS
========================================= */

.nw-sidebar{

width:40%;
min-width:0;
position:sticky;
top:20px;

}

.nw-sidebar > *{

width:100%;
max-width:100%;

}

/* =========================================
FIX SIDEBAR WIDGETS
========================================= */

.nw-sidebar aside,
.nw-sidebar section,
.nw-sidebar .widget,
.nw-sidebar .widget_block,
.nw-sidebar .widget-container,
.nw-sidebar .group{

width:100% !important;
max-width:100% !important;
float:none !important;
display:block !important;
clear:both !important;
margin-bottom:20px !important;

}

.nw-sidebar img{

max-width:100%;
height:auto;
display:block;

}

.nw-sidebar iframe{

width:100%;

}

/* =========================================
TOPBAR
========================================= */

.nw-topbar{

display:flex;
justify-content:space-between;
align-items:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:30px;

}

.nw-count{

font-size:18px;
font-weight:800;
color:#111;

}

.nw-search{

display:flex;
gap:10px;
flex-wrap:wrap;

}

.nw-search input,
.nw-search select{

height:48px;
padding:0 14px;
border:1px solid #ddd;
border-radius:12px;
font-size:15px;
background:#fff;

}

.nw-search button{

height:48px;
padding:0 20px;
border:none;
border-radius:12px;
background:#00a651;
color:#fff;
font-weight:700;
cursor:pointer;

}

/* =========================================
LETTERS
========================================= */

.nw-letters{

display:flex;
gap:10px;
overflow-x:auto;
padding-bottom:10px;
margin-bottom:30px;

}

.nw-letters a{

min-width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
background:#fff;
border:1px solid #eee;
font-weight:800;
color:#111;
flex-shrink:0;

}

.nw-letters a.active{

background:#00a651;
color:#fff;

}

/* =========================================
GRID
========================================= */

.nw-artists-grid{

display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:20px;

}

/* =========================================
ARTIST CARD
========================================= */

.nw-artist-card{

background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 4px 16px rgba(0,0,0,0.05);
transition:0.2s ease;
position:relative;

}

.nw-artist-card:hover{

transform:translateY(-4px);

}

.nw-artist-card a{

display:block;
height:100%;

}

.nw-artist-card img{

width:100%;
height:260px;
object-fit:cover;
display:block;

}

.nw-artist-content{

padding:16px;

}

.nw-artist-name{

font-size:22px;
font-weight:900;
line-height:1.2;
color:#111;
margin-bottom:10px;

}

.nw-artist-meta{

font-size:14px;
line-height:1.5;
color:#666;
margin-bottom:8px;

}

.nw-artist-song{

font-size:14px;
line-height:1.5;
font-weight:700;
color:#00a651;

display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;

}

/* =========================================
BADGES
========================================= */

.nw-badge{

position:absolute;
top:12px;
left:12px;
padding:8px 14px;
border-radius:999px;
background:#ff2d55;
color:#fff;
font-size:12px;
font-weight:800;
z-index:10;

}

.nw-verified{

position:absolute;
top:12px;
right:12px;
width:36px;
height:36px;
border-radius:50%;
background:#00a651;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:15px;
z-index:10;

}

/* =========================================
LOAD MORE
========================================= */

#loadMore{

margin:40px auto;
display:block;
padding:14px 28px;
border:none;
border-radius:999px;
background:#111;
color:#fff;
font-size:15px;
font-weight:700;
cursor:pointer;

}

/* =========================================
TABLET
========================================= */

@media(max-width:1024px){

.nw-main-wrap{

display:block;

}

.nw-artists-page,
.nw-sidebar{

width:100%;

}

.nw-sidebar{

position:relative;
top:auto;
margin-top:25px;

}

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

.nw-main-wrap{

padding:0 10px;

}

.nw-topbar{

display:block;

}

.nw-count{

margin-bottom:18px;

}

.nw-search{

flex-direction:column;

}

.nw-search input,
.nw-search select,
.nw-search button{

width:100%;
height:52px;

}

.nw-artists-grid{

gap:14px;

}

.nw-artist-card img{

height:150px;

}

.nw-artist-content{

padding:12px;

}

.nw-artist-name{

font-size:16px;

}

.nw-artist-meta{

font-size:11px;

}

.nw-artist-song{

font-size:12px;

}

#loadMore{

width:100%;

}

}