/* Artist Page Layout Redesign */

.artist-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-bg-secondary);
    /* Fallback */
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.artist-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-bg-primary) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.artist-name {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.artist-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meta-label {
    font-size: 0.8em;
    opacity: 0.7;
}

.meta-value {
    font-weight: bold;
    color: var(--color-text-primary);
}

/* Sections */
.content-section {
    margin-bottom: var(--space-4xl);
    text-align: center;
    /* Center headings */
}

.section-heading {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: var(--space-xl);
    position: relative;
    display: inline-block;
}

/* Add decorative dashes if desired, or keep generic */
/* .section-heading::before, .section-heading::after { content: '-'; ... } */

.text-content {
    text-align: right;
    /* Text usually right aligned in Hebrew */
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.video-card {
    background: transparent;
    border: none;
}

.audio-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}