/* JeJe Artists - Clean Frontend Styles */
/* Main styles are inline in shortcode output for maximum specificity */

/* Single Artist Page Styles */
.jejeartists-single-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.jejeartists-single-page .artist-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.jejeartists-single-page .artist-image {
    flex: 0 0 350px;
    max-width: 350px;
}

.jejeartists-single-page .artist-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.jejeartists-single-page .artist-info {
    flex: 1;
    min-width: 300px;
}

.jejeartists-single-page .artist-name {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.jejeartists-single-page .artist-talent {
    font-size: 20px;
    color: #D4A84B;
    margin: 0 0 20px 0;
}

.jejeartists-single-page .artist-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.jejeartists-single-page .artist-category {
    background: #FEF3C7;
    color: #92400E;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.jejeartists-single-page .artist-location {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.jejeartists-single-page .artist-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.jejeartists-single-page .artist-social {
    display: flex;
    gap: 12px;
}

.jejeartists-single-page .artist-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.jejeartists-single-page .artist-social a:hover {
    background: #D4A84B;
    color: #fff;
}

.jejeartists-single-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 30px;
    transition: background 0.2s;
}

.jejeartists-single-page .back-link:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .jejeartists-single-page .artist-header {
        flex-direction: column;
    }
    .jejeartists-single-page .artist-image {
        flex: none;
        max-width: 100%;
    }
    .jejeartists-single-page .artist-name {
        font-size: 28px;
    }
}
