/* Nordic Art Artist Showcase Styles - Art Gallery Design */
.nordicart-artist-showcase {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin: 30px 0;
    padding: 28px 32px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
}

.nordicart-artist-image {
    flex-shrink: 0;
}

.nordicart-artist-image img {
    width: 90px;
    height: 90px;
    border-radius: 0;
    object-fit: cover;
    border: 1px solid #d0d0d0;
}

.nordicart-artist-info {
    flex: 1;
    min-width: 0;
}

.nordicart-artist-name {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nordicart-artist-description {
    margin: 0 0 14px 0;
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 14px;
    font-weight: 400;
}

.nordicart-artist-description p {
    margin: 0 0 8px 0;
}

.nordicart-artist-description p:last-child {
    margin-bottom: 0;
}

.nordicart-exclusive-badge {
    position: absolute;
    top: 32px;
    right: 34px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    color: #666;
    padding: 0;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
}

.nordicart-checkmark {
    font-size: 0;
    line-height: 1;
}

.nordicart-checkmark::before {
    content: "✦";
    font-size: 12px;
    color: #d4a853;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nordicart-artist-showcase {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 48px 20px 24px 20px;
        margin: 20px 0;
    }
    
    .nordicart-artist-image {
        align-self: center;
    }
    
    .nordicart-artist-name {
        font-size: 16px;
    }
    
    .nordicart-exclusive-badge {
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .nordicart-artist-showcase {
        padding: 20px 16px;
        margin: 15px 0;
    }
    
    .nordicart-artist-image img {
        width: 70px;
        height: 70px;
    }
    
    .nordicart-artist-name {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .nordicart-artist-description {
        font-size: 13px;
    }
}
