.featured-artists-wrapper {
    padding: 20px;
    background: white !important;
}

.featured-title {
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--featured-artists-bg, #000);
    color: #fff;
    margin-bottom: 25px;
}

.artists-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    background: white;
}

.artist-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    width: calc(20% - 16px);
    text-align: center;
    box-sizing: border-box;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
}

.badge {
    display: inline-block;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: #28a745;
    color: white;
    margin-bottom: 10px;
    width: fit-content;
}

.artist-name {
    font-weight: bold;
    margin-bottom: 4px;
}

.artist-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.followers {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.follow-btn, .stream-btn {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    flex-grow: 1;
}

.follow-btn {
    background-color: #007bff;
    color: white;
}

.follow-btn.followed {
    background-color: #6c757d;
    cursor: default;
}

.stream-btn {
    background-color: #f0ad4e;
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.stream-btn:hover {
    background-color: #ec9d1b;
}

/* Tablet View */
@media (max-width: 1024px) {
    .artist-card {
        width: calc(33.333% - 16px);
    }
    
    .follow-btn, .stream-btn {
        padding: 12px 16px;
        font-size: 15px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .artist-card {
        width: calc(50% - 16px);
    }
    
    .follow-btn, .stream-btn {
        padding: 14px 16px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .artist-card {
        width: 100%;
        padding: 25px;
    }
    
    .artist-card img {
        width: 100px;
        height: 100px;
    }
    
    .badge {
        font-size: 14px;
        padding: 5px 12px;
    }
    
    .artist-name {
        font-size: 18px;
    }
    
    .artist-title {
        font-size: 16px;
    }
    
    .followers {
        font-size: 15px;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .follow-btn, .stream-btn {
        padding: 16px;
        font-size: 16px;
        width: 100%;
    }
    
    .featured-title {
        font-size: 22px;
        width: 100%;
        text-align: center;
    }
}