        /* 艺术家大卡片 */
        .artist-block {
            background: var(--color-white); border-radius: var(--border-radius-lg);
            overflow: hidden; box-shadow: var(--shadow-soft); margin-bottom: 40px;
            transition: var(--transition-smooth);
            display: flex; flex-wrap: wrap;
        }
        .artist-block:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
        .artist-block .artist-img {
            flex: 0 0 380px; min-height: 340px;
            background-size: cover; background-position: center;
            background-repeat: no-repeat; position: relative;
            display: flex; align-items: flex-end; padding: 20px;
        }
        .artist-block .artist-img::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(40,40,40,0.45) 0%, rgba(40,40,40,0.05) 50%, transparent 100%);
            z-index: 1;
        }
        .artist-block .artist-img .img-label {
            position: relative; z-index: 2;
            background: rgba(255,255,255,0.9); color: var(--color-dark);
            font-size: 0.75rem; letter-spacing: 0.06em; padding: 6px 14px;
            border-radius: 20px; font-weight: 500;
            backdrop-filter: blur(4px);
        }
        .artist-block .artist-info {
            flex: 1; padding: 36px 32px; display: flex; flex-direction: column; justify-content: center;
        }
        .artist-block .artist-info .artist-name {
            font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600;
            color: var(--color-dark); letter-spacing: 0.05em; margin-bottom: 6px;
        }
        .artist-block .artist-info .artist-bio {
            font-size: 0.85rem; color: var(--color-mid-dark); line-height: 1.7; margin-bottom: 16px;
        }
        .artist-block .artist-info .collab-theme {
            display: inline-block; background: var(--color-bg-lighter);
            color: var(--color-dark); font-size: 0.8rem; font-weight: 500;
            letter-spacing: 0.05em; padding: 5px 14px; border-radius: 20px;
            margin-bottom: 16px; border: 1px solid rgba(160,160,160,0.2);
        }
        .artist-block .artist-info .product-name {
            font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
            color: var(--color-mid-dark); letter-spacing: 0.04em; margin-bottom: 8px;
        }
        .artist-block .artist-info .product-concept {
            font-size: 0.88rem; color: var(--color-mid-dark); line-height: 1.7;
            margin-bottom: 14px;
        }
        .artist-block .artist-info .product-material-tags {
            display: flex; flex-wrap: wrap; gap: 8px;
        }
        .artist-block .artist-info .product-material-tags .tag {
            background: var(--color-bg-light);
            color: var(--color-dark); font-size: 0.73rem; font-weight: 500;
            letter-spacing: 0.03em; padding: 4px 12px; border-radius: 20px;
            border: 1px solid rgba(160,160,160,0.15);
        }
        @media (max-width: 991px) {
            .artist-block .artist-img { flex: 0 0 100%; min-height: 260px; }
            .artist-block .artist-info { padding: 24px 20px; }
        }

        /* 图片占位渐变（每位艺术家不同色调） */
        .img-fantao { background: linear-gradient(135deg, #f2e0d0 0%, #e6cbb8 30%, #d9b59e 60%, #ecd9c8 100%); }
        .img-chenman { background: linear-gradient(135deg, #d9e6e0 0%, #c0d5cc 30%, #a8c4b8 60%, #d0e2da 100%); }
        .img-linkunhao { background: linear-gradient(135deg, #e0d8f0 0%, #cfc4e6 30%, #beb0dc 60%, #d8ceee 100%); }
        .img-lucat { background: linear-gradient(135deg, #f2e8d0 0%, #e8d6ae 30%, #dec490 60%, #eee0c0 100%); }
        .img-zhaoxiaoli { background: linear-gradient(135deg, #f0d8d8 0%, #e6c0c0 30%, #dca8a8 60%, #ecd0d0 100%); }
        .img-takami { background: linear-gradient(135deg, #d8e8f0 0%, #c0d8e6 30%, #a8c8dc 60%, #d0e0ee 100%); }

        /* 艺术家照片区（文字表示） */
        .artist-img .artist-avatar-text {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            font-family: var(--font-heading); font-size: 2.5rem; color: rgba(255,255,255,0.7);
            z-index: 2; letter-spacing: 0.1em; font-weight: 600;
            text-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }