/* Nordic Art Artist Showcase Styles */
.nordicart-artist-showcase {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.nordicart-artist-showcase:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nordicart-artist-image {
    flex-shrink: 0;
}

.nordicart-artist-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.nordicart-artist-showcase:hover .nordicart-artist-image img {
    border-color: #ddd;
}

.nordicart-artist-info {
    flex: 1;
    min-width: 0;
}

.nordicart-artist-name {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.nordicart-artist-description {
    margin: 0 0 15px 0;
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 14px;
}

.nordicart-artist-description p {
    margin: 0 0 10px 0;
}

.nordicart-artist-description p:last-child {
    margin-bottom: 0;
}

.nordicart-exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    color: #2e7d2e;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #d4edda;
    transition: all 0.3s ease;
}

.nordicart-exclusive-badge:hover {
    background: linear-gradient(135deg, #d4edda 0%, #e8f5e8 100%);
    transform: translateY(-1px);
}

.nordicart-checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nordicart-artist-showcase {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
        margin: 20px 0;
    }
    
    .nordicart-artist-image {
        align-self: center;
    }
    
    .nordicart-artist-name {
        font-size: 18px;
    }
    
    .nordicart-exclusive-badge {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .nordicart-artist-showcase {
        padding: 15px;
        margin: 15px 0;
    }
    
    .nordicart-artist-image img {
        width: 60px;
        height: 60px;
    }
    
    .nordicart-artist-name {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .nordicart-artist-description {
        font-size: 13px;
    }
}

/* Dark theme compatibility */
@media (prefers-color-scheme: dark) {
    .nordicart-artist-showcase {
        background: #1a1a1a;
        border-color: #333;
        color: #e0e0e0;
    }
    
    .nordicart-artist-name {
        color: #ffffff;
    }
    
    .nordicart-artist-description {
        color: #b0b0b0;
    }
    
    .nordicart-artist-image img {
        border-color: #444;
    }
    
    .nordicart-artist-showcase:hover .nordicart-artist-image img {
        border-color: #666;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .nordicart-artist-showcase {
        border: 2px solid #000;
    }
    
    .nordicart-exclusive-badge {
        border: 2px solid #2e7d2e;
    }
} 