/* ==========================================================
   SINGLE ARTIST PAGE - LUXURY LAYOUT
   ========================================================== */
.ls-artist-wrapper {
    padding: 140px 0 80px 0;
    line-height: 1.7;
}

.ls-artist-hero {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.ls-artist-portrait {
    position: sticky;
    top: 120px;
}

.ls-artist-portrait img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ls-placeholder-portrait {
    aspect-ratio: 3 / 4;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ls-text-secondary);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.ls-artist-name {
    font-size: 3rem;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.ls-artist-statement {
    display: flex;
    gap: 20px;
    background: rgba(201, 169, 110, 0.05);
    /* Accent tint */
    border-left: 3px solid var(--ls-accent);
    padding: 30px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
}

.ls-quote-mark {
    font-family: var(--ls-font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--ls-accent);
    opacity: 0.5;
    margin-top: -10px;
}

.ls-statement-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ls-text-primary);
}

.ls-statement-text p:last-child {
    margin-bottom: 0;
}

.ls-artist-content {
    font-size: 1.1rem;
    color: var(--ls-text-secondary);
    margin-bottom: 40px;
}

/* History Section */
.ls-artist-history {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ls-history-block .ls-section-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--ls-accent);
}

.ls-history-content {
    color: var(--ls-text-secondary);
}

.ls-history-content ul {
    padding-left: 20px;
    list-style-type: square;
}

.ls-history-content li {
    margin-bottom: 12px;
}

/* Awards Repeater List */
.ls-award-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ls-award-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.ls-award-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--ls-accent);
}

.ls-award-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.ls-award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ls-placeholder-medal {
    font-size: 24px;
}

.ls-award-title {
    font-size: 1.1rem;
    color: var(--ls-text-primary);
    font-weight: 500;
}

.ls-award-year {
    font-size: 0.9rem;
    color: var(--ls-accent);
    margin-top: 4px;
}

/* Artworks Grid */
.ls-artist-artworks {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ls-artist-artworks .ls-section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--ls-accent);
}

@media (max-width: 992px) {
    .ls-artist-hero {
        grid-template-columns: 1fr;
    }

    .ls-artist-portrait {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

    .ls-artist-history {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}