/* ==========================================================================
   artist.css — Artist page styles
   Extracted from artist.html mockup
   ========================================================================== */

/* ==================== ARTIST HERO BANNER ==================== */
.artist-hero {
    margin-top: 0;
    background: linear-gradient(135deg, #0a0a0a, #0f0e17, #2b1c2e, #3d1a2e);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.artist-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 140%;
    background: radial-gradient(circle, rgba(230,57,70,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.artist-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero inner wrapper for proper padding + z-index */
.artist-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 24px;
    padding-bottom: 48px;
}

/* Override breadcrumb in hero context */
.artist-hero .breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
}
.artist-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.artist-hero .breadcrumb a:hover { color: #fff; }
.artist-hero .breadcrumb .sep { color: rgba(255,255,255,0.3); }

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.artist-avatar {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vermillion) 0%, #ff6b6b 50%, #ffa07a 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    color: white;
    border: 4px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(230,57,70,0.4), 0 0 80px rgba(230,57,70,0.15);
    object-fit: cover;
    object-position: top center;
}
/* When avatar is an <img> element */
img.artist-avatar {
    object-fit: cover;
    object-position: top center;
}

.hero-info { flex: 1; }
.hero-info h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 12px;
}

/* Genre pills */
.genre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.genre-pill {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
}
.hero-stat {
    text-align: left;
}
.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #ffffff;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Social links */
.social-links {
    display: flex;
    gap: 10px;
}
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.25s ease;
}
.social-link:hover {
    background: var(--vermillion);
    border-color: var(--vermillion);
}
.social-link svg { width: 16px; height: 16px; }

/* ==================== TWO-COLUMN LAYOUT ==================== */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding: 48px 0;
}
.main-col { min-width: 0; }
.sidebar-col { min-width: 0; }

/* ==================== SECTION TITLES (V1 mockup) ==================== */
.section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-title-row h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}
.section-title-row a {
    color: var(--vermillion);
    font-weight: 600;
    font-size: 0.9rem;
}
.section-title-row a:hover { text-decoration: underline; }

/* ==================== ABOUT / BIO SECTION ==================== */
.about-section {
    margin-bottom: 48px;
}
.bio-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
}
.bio-text p { margin-bottom: 1rem; }

/* Hide content beyond ~3 lines when collapsed (works with raw DB output) */
.bio-collapsed {
    max-height: 5.4em; /* ~3 lines at 1.8 line-height */
    overflow: hidden;
    position: relative;
}
.bio-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5em;
    background: linear-gradient(transparent, var(--bg-primary));
    pointer-events: none;
}
/* Also support explicit .bio-hidden wrapper from mockup */
.bio-collapsed .bio-hidden { display: none; }
/* When expanded via JS, remove constraints */
.bio-text:not(.bio-collapsed) {
    max-height: none;
    overflow: visible;
}
.bio-text:not(.bio-collapsed)::after {
    display: none;
}

.read-more-btn {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--vermillion);
    padding: 0.4rem 0;
    transition: opacity var(--transition);
    position: relative;
    z-index: 1;
}
.read-more-btn:hover { opacity: 0.7; }

/* ==================== POPULAR SONGS TABLE ==================== */
.songs-section { margin-bottom: 48px; }
.songs-list { display: flex; flex-direction: column; gap: 2px; }

.song-row {
    display: grid;
    grid-template-columns: 32px 44px 1fr auto auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}
.song-row:hover { background: var(--bg-secondary); }

.song-rank {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}
.song-row:nth-child(-n+3) .song-rank { color: var(--vermillion); }

.song-art {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    overflow: hidden;
}
.song-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.song-info { min-width: 0; }
.song-title {
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.song-title a:hover { color: var(--vermillion); }
.song-album {
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.song-views {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}
.song-trend {
    color: #22c55e;
    display: flex;
    align-items: center;
}
.song-trend svg { width: 16px; height: 16px; }

/* ==================== LATEST RELEASES ==================== */
.latest-section { margin-bottom: 48px; }
.releases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.release-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.release-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.release-art {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}
.release-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.release-info {
    padding: 1rem;
}
.release-title {
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 0.25rem;
}
.release-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.release-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--vermillion);
    transition: opacity var(--transition);
}
.release-link:hover { opacity: 0.7; }

/* ==================== ALBUMS (h-scroll) ==================== */
.albums-section { margin-bottom: 48px; }

.album-card {
    min-width: 180px;
    scroll-snap-align: start;
    flex-shrink: 0;
}
.album-art {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    margin-bottom: 0.6rem;
    overflow: hidden;
}
.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.album-title {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==================== DISCOGRAPHY ACCORDION ==================== */
.discography-section { margin-bottom: 48px; }

.disco-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: border-color var(--transition);
}
.disco-item:hover { border-color: var(--vermillion); }

.disco-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    cursor: pointer;
    user-select: none;
}
.disco-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.disco-year {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--vermillion);
    min-width: 40px;
}
.disco-name { font-weight: 600; font-size: 0.92rem; }
.disco-tracks-count {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.disco-chevron {
    color: var(--text-muted);
    transition: transform var(--transition);
}
.disco-item.expanded .disco-chevron { transform: rotate(180deg); }

.disco-tracklist {
    display: none;
    padding: 0 1rem 1rem;
    border-top: 1px solid var(--border-color);
}
.disco-item.expanded .disco-tracklist { display: block; }

.disco-track {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.disco-track:hover { color: var(--vermillion); }
.disco-track-num {
    font-size: 0.78rem;
    color: var(--text-muted);
    min-width: 20px;
}

/* ==================== Q&A ACCORDION ==================== */
.tribe-faq-section { margin-bottom: 48px; }

.tribe-faq {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    overflow: hidden;
}
/* FAQ uses native <details><summary> — no JS needed, SEO-crawlable, accessible */
/* Hide default triangle — duplicated from app.css for specificity */
details.tribe-faq > summary { list-style-type: none; }
details.tribe-faq > summary::-webkit-details-marker { display: none !important; }
details.tribe-faq > summary::marker { display: none !important; content: '' !important; font-size: 0; }

details.tribe-faq {
    border: 1px solid var(--border-color, #e5e5e5);
    border-radius: var(--radius-sm, 8px);
    margin-bottom: 0.5rem;
    overflow: hidden;
    background: var(--bg-secondary, #f9f9f6);
}
details.tribe-faq[open] {
    background: var(--bg-primary, #ffffff);
}
summary.tribe-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.92rem;
    user-select: none;
    transition: color var(--transition);
    list-style: none;
    list-style-type: none;
}
summary.tribe-faq-q:hover { color: var(--vermillion); }
.qa-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
details.tribe-faq[open] .qa-icon { transform: rotate(45deg); }
.qa-answer {
    padding: 0 1.15rem 1.15rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
/* Legacy support: div-based tribe-faqs still work with .expanded class */
div.tribe-faq .qa-answer { display: none; }
div.tribe-faq.expanded .qa-answer { display: block; }
div.tribe-faq.expanded .qa-icon { transform: rotate(45deg); }

/* ==================== RELATED ARTISTS (h-scroll) ==================== */
.related-section { margin-bottom: 48px; }

.artist-circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 110px;
    scroll-snap-align: start;
    flex-shrink: 0;
    text-align: center;
}
.artist-circle-card .artist-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.artist-circle-card .artist-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.artist-circle-card:hover .artist-circle {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(230,57,70,0.2);
}
.artist-circle-name {
    font-weight: 600;
    font-size: 0.82rem;
}

/* ==================== NEWS CARDS ==================== */
.news-section { margin-bottom: 48px; }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.news-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
}
.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-body {
    padding: 1rem;
}
.news-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}
.news-title {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}
.news-title:hover { color: var(--vermillion); }

/* ==================== SIDEBAR ==================== */
.sidebar-col .sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-col .sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-secondary);
    font-size: 0.88rem;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text-muted); }
.info-value { font-weight: 500; text-align: right; color: var(--text-primary); }
.age-badge { display: inline-block; font-size: 0.85em; color: var(--text-muted); font-weight: 400; margin-left: 0.25rem; }

.sidebar-songs { display: flex; flex-direction: column; gap: 0; }
.sidebar-song {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-secondary);
    transition: color var(--transition);
}
.sidebar-song:last-child { border-bottom: none; }
.sidebar-song:hover { color: var(--vermillion); }
.sidebar-song-num {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--vermillion);
    width: 20px;
}
.sidebar-song-title {
    font-size: 0.88rem;
    font-weight: 500;
    font-weight: 500;
}

/* ==========================================================================
   ARTISTS INDEX PAGE — Card Grid Layout (V1)
   ========================================================================== */

/* ---- Hero Banner ---- */
.artists-index-hero {
    background: linear-gradient(120deg, #0f0e17 0%, #2b1c2e 50%, #3d1a2e 100%);
    padding: 3rem 0 2.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.artists-index-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.artists-index-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.artists-index-hero h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.artists-index-hero p {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* ---- Hero Search ---- */
.hero-search-wrap {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-search-wrap input {
    width: 100%;
    padding: 0.85rem 1.25rem 0.85rem 3rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: rgba(255,255,255,0.12);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    outline: none;
    transition: background var(--transition);
}
.hero-search-wrap input::placeholder { color: rgba(255,255,255,0.5); }
.hero-search-wrap input:focus { background: rgba(255,255,255,0.18); }
.hero-search-wrap .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    pointer-events: none;
}

/* ---- A-Z Bar (Index Page) ---- */
.az-bar--page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1.5rem;
    padding: 0.75rem 0 1.25rem;
    border-bottom: 1px solid var(--border-color);
}
.az-bar--page a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    transition: all var(--transition);
}
.az-bar--page a:hover,
.az-bar--page a.active {
    background: var(--vermillion);
    color: #fff;
}

/* ---- Two-Column Layout: Content + Sidebar ---- */
.artists-index-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}
.artists-index-layout--empty {
    grid-template-columns: 1fr;
}
.artists-index-layout--empty .artists-index-sidebar {
    display: none;
}
.artists-index-main {
    min-width: 0;
}
.artists-index-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

/* ---- Card Grid (4 cols to fit narrower content) ---- */
.artists-index-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ---- In-feed ad row ---- */
.infeed-ad-row {
    grid-column: 1 / -1;
    padding: 0.25rem 0;
}

/* ---- Individual Card ---- */
.artist-card {
    background: var(--bg-card, var(--bg-primary));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: block;
}
.artist-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    border-color: var(--vermillion);
}

/* ---- Card Image ---- */
.artist-card-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}
.artist-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}
.artist-card:hover .artist-card-img img {
    transform: scale(1.08);
}
/* Gradient overlay on hover */
.artist-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}
.artist-card:hover .artist-card-img::after {
    opacity: 1;
}

/* ---- Song Count Badge ---- */
.song-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: var(--vermillion);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 2;
}
.artist-card:hover .song-badge {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Card Info ---- */
.artist-card-info {
    padding: 0.85rem 1rem;
}
.artist-card-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.artist-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---- Placeholder Avatar (no image) ---- */
.artist-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    color: #fff;
    font-size: 2.5rem;
    border-radius: 0;
}

/* ---- "No results" state ---- */
.artists-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .main-layout { grid-template-columns: 1fr; }
    .sidebar-col { order: -1; }
    .sidebar-sticky { position: static; }
    .ad-300x600 { display: none; }
    .sidebar-col .sidebar-card:not(:first-child) { display: none; }
    .sidebar-col .sidebar-card:first-child {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .sidebar-col .sidebar-card:first-child h3 { grid-column: 1 / -1; }
    /* Index grid */
    .artists-index-layout { grid-template-columns: 1fr; }
    .artists-index-sidebar { display: none; }
    .artists-index-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .hero-info h1 { font-size: 2.2rem; }
    .genre-pills { justify-content: center; }
    .hero-stats { justify-content: center; }
    .social-links { justify-content: center; }
    .artist-avatar { width: 200px; height: 200px; font-size: 3rem; }
    .releases-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .song-row {
        grid-template-columns: 28px 40px 1fr auto;
    }
    .song-views { display: none; }
    .sidebar-col .sidebar-card:first-child { display: block; }
    .main-layout { gap: 2rem; padding: 2rem 0; }
    /* Index page */
    .artists-index-grid { grid-template-columns: repeat(3, 1fr); }
    .artists-index-hero h1 { font-size: 1.75rem; }
    .artists-index-hero { padding: 2rem 0; }
}

@media (max-width: 480px) {
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .hero-stat-value { font-size: 1.2rem; }
    .hero-info h1 { font-size: 1.8rem; }
    .releases-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .song-row { gap: 0.5rem; padding: 0.5rem 0.5rem; }
    .song-art { width: 36px; height: 36px; }
    .song-row { grid-template-columns: 24px 36px 1fr auto; }
    .artist-avatar { width: 200px; height: 200px; font-size: 2.5rem; }
    .ad-728x90 { height: 50px; }
    /* Index page */
    .artists-index-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .artists-index-hero { padding: 1.5rem 1rem; }
    .artists-index-hero h1 { font-size: 1.5rem; }
    .hero-search-wrap input { font-size: 0.85rem; padding: 0.7rem 1rem 0.7rem 2.5rem; }
}

@media (min-width: 1440px) {
    .hero-info h1 { font-size: 3.2rem; }
    .main-layout { gap: 3rem; }
    .releases-grid { grid-template-columns: repeat(4, 1fr); }
    .news-grid { grid-template-columns: repeat(3, 1fr); }
    /* Index page */
    .artists-index-grid { grid-template-columns: repeat(5, 1fr); }
    .artists-index-hero h1 { font-size: 3rem; }
}
